diff --git a/HISTORY.rst b/HISTORY.rst index c3bb21f3..7b1e7fe9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ SDK Release History =================== +8.0.0 (2020-06-15) +------------------ + +* Update to match latest Python SDK taking associated breaking changes. + 7.0.0 (2019-08-20) ------------------ diff --git a/azext/batch/_file_utils.py b/azext/batch/_file_utils.py index e8a96dc8..6975cbeb 100644 --- a/azext/batch/_file_utils.py +++ b/azext/batch/_file_utils.py @@ -344,11 +344,7 @@ def resolve_resource_file(self, resource_file): blobs = self.list_container_contents(resource_file.source, container, storage_client) return convert_blobs_to_resource_files(blobs, resource_file) if resource_file.source.container_url: - # Input data storage in arbitrary container - uri = urlsplit(resource_file.source.container_url) - container = uri.pathname.split('/')[1] - blobs = self.list_container_contents(resource_file.source, container, storage_client) - return convert_blobs_to_resource_files(blobs, resource_file) + return resource_file.source.container_url if resource_file.source.url: # TODO: Input data from an arbitrary HTTP GET source raise ValueError('Not implemented') diff --git a/azext/batch/version.py b/azext/batch/version.py index 2cfac962..143112f8 100644 --- a/azext/batch/version.py +++ b/azext/batch/version.py @@ -3,4 +3,4 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -VERSION = "7.0.0" +VERSION = "8.0.0" diff --git a/batch-cli-extensions/HISTORY.rst b/batch-cli-extensions/HISTORY.rst index 5a33119c..f3222546 100644 --- a/batch-cli-extensions/HISTORY.rst +++ b/batch-cli-extensions/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +6.0.0 (2020-06-15) +------------------ + +* Update SDK dependency to get latest models and defaults + 5.0.1 (2019-08-20) ------------------ diff --git a/batch-cli-extensions/azext_batch/_params.py b/batch-cli-extensions/azext_batch/_params.py index 5a435403..7c2655b2 100644 --- a/batch-cli-extensions/azext_batch/_params.py +++ b/batch-cli-extensions/azext_batch/_params.py @@ -29,6 +29,9 @@ def load_arguments(self, _): c.argument('start_task_wait_for_success', arg_group='Pool: Start Task', action='store_true', help='Whether the Batch service should wait for the start task to complete successfully (that is, to exit with exit code 0) before scheduling any tasks on the compute node. If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and scheduling error detail. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is false. True if flag present.') c.argument('os_family', arg_group="Pool: Cloud Service Configuration", help='The Azure Guest OS family to be installed on the virtual machines in the pool. Possible values are: 2 - OS Family 2, equivalent to Windows Server 2008 R2 SP1. 3 - OS Family 3, equivalent to Windows Server 2012. 4 - OS Family 4, equivalent to Windows Server 2012 R2. 5 - OS Family 5, equivalent to Windows Server 2016. For more information, see Azure Guest OS Releases (https://azure.microsoft.com/documentation/articles/cloud-services-guestos-update-matrix/#releases). Allowed values: 2, 3, 4, 5.') + c.extra('disk_encryption_targets', + arg_group="Pool: Virtual Machine Configuration", + help='A space seperated list of DiskEncryptionTargets. current possible values include OsDisk and TemporaryDisk.') c.argument('node_agent_sku_id', arg_group="Pool: Virtual Machine Configuration", help='The SKU of the Batch node agent to be provisioned on compute nodes in the pool. The Batch node agent is a program that runs on each node in the pool, and provides the command-and-control interface between the node and the Batch service. There are different implementations of the node agent, known as SKUs, for different operating systems. You must specify a node agent SKU which matches the selected image reference. To get the list of supported node agent SKUs along with their list of verified image references, see the \'List supported node agent SKUs\' operation.') c.argument('image', completer=load_supported_images, arg_group="Pool: Virtual Machine Configuration", help="OS image reference. This can be either 'publisher:offer:sku[:version]' format, or a fully qualified ARM image id of the form '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName}'. If 'publisher:offer:sku[:version]' format, version is optional and if omitted latest will be used. Valid values can be retrieved via 'az batch pool node-agent-skus list'. For example: 'MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:latest'") diff --git a/batch-cli-extensions/azext_batch/azext_metadata.json b/batch-cli-extensions/azext_batch/azext_metadata.json index dd5cf752..dc8d29d0 100644 --- a/batch-cli-extensions/azext_batch/azext_metadata.json +++ b/batch-cli-extensions/azext_batch/azext_metadata.json @@ -1,4 +1,4 @@ { - "azext.minCliCoreVersion": "2.0.73", + "azext.minCliCoreVersion": "2.0.74", "azext.maxCliCoreVersion": "3.0.0" } \ No newline at end of file diff --git a/batch-cli-extensions/azext_batch/custom.py b/batch-cli-extensions/azext_batch/custom.py index ad3dd109..05be9d5e 100644 --- a/batch-cli-extensions/azext_batch/custom.py +++ b/batch-cli-extensions/azext_batch/custom.py @@ -18,9 +18,20 @@ # pylint: disable=redefined-builtin +def disk_encryption_target_format(value): + """Space seperated target disks to be encrypted. Values can either be OsDisk or TemporaryDisk""" + from azext.batch.models import DiskEncryptionTarget + if value == 'OsDisk': + return DiskEncryptionTarget.os_disk + if value == 'TemporaryDisk': + return DiskEncryptionTarget.temporary_disk + message = 'Argument {} is not a valid disk_encryption_target' + raise ValueError(message.format(value)) + + def create_pool(client, template=None, parameters=None, json_file=None, id=None, vm_size=None, # pylint:disable=too-many-arguments, too-many-locals target_dedicated_nodes=None, target_low_priority_nodes=None, auto_scale_formula=None, # pylint: disable=redefined-builtin - enable_inter_node_communication=False, os_family=None, image=None, + enable_inter_node_communication=False, os_family=None, image=None, disk_encryption_targets=None, node_agent_sku_id=None, resize_timeout=None, start_task_command_line=None, start_task_resource_files=None, start_task_wait_for_success=False, application_licenses=None, certificate_references=None, application_package_references=None, metadata=None): @@ -28,7 +39,8 @@ def create_pool(client, template=None, parameters=None, json_file=None, id=None, from azext.batch.errors import MissingParameterValue from azext.batch.models import ( PoolAddOptions, StartTask, ImageReference, - CloudServiceConfiguration, VirtualMachineConfiguration) + CloudServiceConfiguration, VirtualMachineConfiguration, + DiskEncryptionConfiguration) if template or json_file: if template: json_obj = None @@ -81,6 +93,13 @@ def create_pool(client, template=None, parameters=None, json_file=None, id=None, pool.virtual_machine_configuration = VirtualMachineConfiguration( image_reference=ImageReference(publisher=publisher, offer=offer, sku=sku, version=version), node_agent_sku_id=node_agent_sku_id) + if disk_encryption_targets: + targets = disk_encryption_targets.split(' ') + parsed_targets = [] + for target in targets: + parsed_targets.append( + disk_encryption_target_format(target)) + pool.virtual_machine_configuration.disk_configuration = DiskEncryptionConfiguration(targets=parsed_targets) except ValueError: if '/' not in image: message = ("Incorrect format for VM image. Should be in the format: \n" diff --git a/batch-cli-extensions/azext_batch/version.py b/batch-cli-extensions/azext_batch/version.py index 8cfc2434..5ac82d6e 100644 --- a/batch-cli-extensions/azext_batch/version.py +++ b/batch-cli-extensions/azext_batch/version.py @@ -3,4 +3,4 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -VERSION = "5.0.2" +VERSION = "6.0.0" diff --git a/batch-cli-extensions/setup.py b/batch-cli-extensions/setup.py index 1f7fa1bf..c7c24424 100644 --- a/batch-cli-extensions/setup.py +++ b/batch-cli-extensions/setup.py @@ -27,7 +27,7 @@ ] DEPENDENCIES = [ - 'azure-batch-extensions>=7.0.0,<7.1', + 'azure-batch-extensions>=8.0.0,<8.1', 'pycparser==2.18' ] diff --git a/setup.py b/setup.py index a5af7224..3fa7e908 100644 --- a/setup.py +++ b/setup.py @@ -28,8 +28,8 @@ DEPENDENCIES = [ 'msrestazure>=0.4.14,<1', - 'azure-batch>=8.0,<9', - 'azure-mgmt-batch>=7.0,<8', + 'azure-batch>=9.0,<10', + 'azure-mgmt-batch>=9.0,<10', 'azure-storage-blob>=1.1.0,<2', 'azure-mgmt-storage>=2.0,<3' ] diff --git a/tests/recordings/test_batch_extensions_live.yaml b/tests/recordings/test_batch_extensions_live.yaml index b227363d..8089d375 100644 --- a/tests/recordings/test_batch_extensions_live.yaml +++ b/tests/recordings/test_batch_extensions_live.yaml @@ -8,7 +8,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17,13 +17,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "69f4c414-c371-11e9-ba9b-44032c851686" + "45962dd2-af32-11ea-9aff-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:39:08 GMT" + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:pXWwZGjW0/MuBWjndgsKTje23wxfE9TQolEFG4GDHWY=" + "SharedKey sdkteststore2:06bv+i11nqkwyXByi80KwZUA5HiuHx0efafvvy3BmYs=" ] } }, @@ -33,171 +33,132 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Type": [ + "application/xml" + ], "Transfer-Encoding": [ "chunked" ], - "Date": [ - "Tue, 20 Aug 2019 17:39:08 GMT" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeff" + "string": "\ufefffileuploaderr.txtThu, 09 Apr 2020 22:21:25 GMT0x8D7DCD4576667FF0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtThu, 09 Apr 2020 22:21:25 GMT0x8D7DCD4576815FE519application/octet-streamKVX/Xc9yFohWngk//saO1Q==BlockBlobHottrueunlockedavailabletruestderr.txtThu, 09 Apr 2020 22:21:25 GMT0x8D7DCD4576A39420application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtThu, 09 Apr 2020 22:21:25 GMT0x8D7DCD4576BE73D4application/octet-streamCY9rzUYh03PK3k6DJie09g==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/fileuploaderr.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "6a1c4ef0-c371-11e9-9fa5-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "45b2ddb4-af32-11ea-baca-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:01:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:WP1bPW3/llJrplS1jWd98aIJgVitv/mizr9fuEg/Qj0=" + "SharedKey sdkteststore2:NWCDQhU3KE6OQiG//UOvrw+CLzKcWaJXHicT3e8wULU=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "e141e677-28f7-4d23-b862-46609acd0138" + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\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 },\"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 },\"verificationType\":\"verified\",\"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 },\"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 },\"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-5\",\"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-6\",\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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 },\"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 \"publisher\":\"microsoft-dsvm\",\"offer\":\"dsvm-windows\",\"sku\":\"server-2016\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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 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 },\"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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"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 },\"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-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 },\"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\":\"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 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 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 },\"verificationType\":\"verified\",\"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.6\",\"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 },\"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 7\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" + "string": "" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0", - "body": "{\"id\": \"ncj-ubuntu1604\", \"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"canonical\", \"offer\": \"ubuntuserver\", \"sku\": \"16.04-lts\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1}", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/fileuploadout.txt", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "client-request-id": [ - "6a476624-c371-11e9-a683-44032c851686" - ], - "accept-language": [ - "en-US" + "x-ms-version": [ + "2017-07-29" ], - "Content-Length": [ - "248" + "x-ms-client-request-id": [ + "45baf3f6-af32-11ea-b1bc-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:01:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:DKyBEpswRRv3z4JvQkK9rJwAGfeJ2nZ9yEvbHPBJK5U=" + "SharedKey sdkteststore2:adoWvp1eITfTDIXyQYNwz6Eba5qIGe7xrmqv2NhD0ik=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 202, + "message": "Accepted" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604" - ], "Date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "request-id": [ - "ae0a2072-8478-41f3-9281-23c72c3046aa" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -207,160 +168,124 @@ }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/stderr.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "6a836c86-c371-11e9-b6a4-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "45c15d2e-af32-11ea-9f93-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:01:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:gwbzkWoEQL4KjRlWZy0bGiwPcRO5gPsK7RDlg0KzKjM=" + "SharedKey sdkteststore2:VioOyDxE/dTBAzzp75UCHP7dYw2n0ciA7FEhN3SpRg0=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "d6bbca3d-edff-4cac-b2cc-1117359a8892" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/stdout.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "6c56765a-c371-11e9-a076-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "45c7bc90-af32-11ea-99ad-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:12 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:01:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:HsHtu0noEtsf+H9AMbqZ9rhdA2ZdfduWeiG1sLYLECk=" + "SharedKey sdkteststore2:eAg2VBWgkdSsR5e3rpTs/WxcIkeUW5Ym8mder4P1Lxg=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:39:12 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "9f1ef8a6-681b-420e-8fe6-efa0087c5f6b" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -372,16 +297,16 @@ "keep-alive" ], "client-request-id": [ - "6e2a3a64-c371-11e9-a8f0-44032c851686" + "45d0d742-af32-11ea-a75c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:15 GMT" + "Mon, 15 Jun 2020 18:01:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:04NVwiSjN834FL2Pi17YFtgdY8AWEIU4D79jpNL314A=" + "SharedKey sdktest2:/rxFGC0hR5BIiKpPwvB4wDmBrF7MmxZ9I2mS+VytE1Q=" ] } }, @@ -391,50 +316,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:15 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725954EB17F5F" + "request-id": [ + "56ef207e-304a-430a-95ed-91bb85ce7379" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "50a6969b-7d7c-468e-ab60-36bd2103ef7d" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04-lts\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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.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\",\"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\",\"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\":\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-5\",\"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-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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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\":\"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 ],\"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 ],\"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\":\"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\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\"\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 18.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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-1903-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows 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 ],\"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\",\"sku\":\"8_1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.1\",\"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.3\",\"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.4\",\"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\":\"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.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\":\"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 \"imageReference\":{\r\n \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"81\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0", + "body": "{\"id\": \"ncj-ubuntu1604\", \"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"canonical\", \"offer\": \"ubuntuserver\", \"sku\": \"16.04-lts\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -445,70 +364,79 @@ "Connection": [ "keep-alive" ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "6ffccfb6-c371-11e9-8e66-44032c851686" + "52824622-af32-11ea-893e-44032c851686" ], "accept-language": [ "en-US" ], + "Content-Length": [ + "248" + ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:18 GMT" + "Mon, 15 Jun 2020 18:02:05 GMT" ], "Authorization": [ - "SharedKey sdktest2:IQ4V/su9VwoeJVu9PEjB1LKhtRgXBVivo5qB5359LWQ=" + "SharedKey sdktest2:STooEpqP6uzDXPuogjq/U3wgfH7huV4kF68VK3T4EL4=" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 201, + "message": "Created" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:18 GMT" + "request-id": [ + "d1b83535-3b59-477f-97c4-ce61e57b800a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "08d7c6a8-af15-4b69-941b-359c9cf26a1e" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "Transfer-Encoding": [ - "chunked" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -520,16 +448,16 @@ "keep-alive" ], "client-request-id": [ - "71cf76a4-c371-11e9-b531-44032c851686" + "52ba3502-af32-11ea-b4cc-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:21 GMT" + "Mon, 15 Jun 2020 18:02:05 GMT" ], "Authorization": [ - "SharedKey sdktest2:qFgi4+BaOY7Crv/YqrpjP/rHviBjyZYMkjpuexVj0h0=" + "SharedKey sdktest2:APGYXplH8xNbdNvpR2aLAXjuyHG8JCc8/p97JK6Y2Kc=" ] } }, @@ -539,50 +467,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:21 GMT" + "request-id": [ + "64396b07-93f0-468a-a2d5-b0c95e204400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "26b8cdf3-f6b2-492f-a916-582e9cbfb1ad" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -594,16 +522,16 @@ "keep-alive" ], "client-request-id": [ - "73a0a066-c371-11e9-9cce-44032c851686" + "548dd828-af32-11ea-9c87-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:25 GMT" + "Mon, 15 Jun 2020 18:02:09 GMT" ], "Authorization": [ - "SharedKey sdktest2:F1NG1Ttx3RRWNK3kD4uFirndy3TA061PoWsptK2jyt4=" + "SharedKey sdktest2:cvKPdGaZdDFSkZepKSvrpBizYYlTj95wC2TaG/1WHB4=" ] } }, @@ -613,50 +541,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:24 GMT" + "request-id": [ + "3c236c8a-2d49-4ca3-8d67-7c67e9ec58ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "28be9f29-41ef-4c76-af64-5d4e81f1b58f" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -668,16 +596,16 @@ "keep-alive" ], "client-request-id": [ - "7572307a-c371-11e9-98e1-44032c851686" + "565f576c-af32-11ea-9547-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:28 GMT" + "Mon, 15 Jun 2020 18:02:12 GMT" ], "Authorization": [ - "SharedKey sdktest2:dqDhH0zhCYtqpFAnGV6avNjbbieLNEaMXeJ+LP+zBmQ=" + "SharedKey sdktest2:vyyIJFkSNlJ/Jwf/SBMpyQ1goxgdQe7lRaqy4pvQEFA=" ] } }, @@ -687,50 +615,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:27 GMT" + "request-id": [ + "ad131a53-6a90-4dd4-a674-0e7f0c3c4eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "fe57710d-fc75-4288-9e72-0433c64c905b" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -742,16 +670,16 @@ "keep-alive" ], "client-request-id": [ - "7744d77a-c371-11e9-ad1d-44032c851686" + "583142e4-af32-11ea-993c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:31 GMT" + "Mon, 15 Jun 2020 18:02:15 GMT" ], "Authorization": [ - "SharedKey sdktest2:lPK36U22cmvdmbHGAyw18O+lXAZsXuZeaeRm3EM+HGI=" + "SharedKey sdktest2:+4IztlXjzQMPazLfBIn0nWAftrJQLZO5pmABtyCjBc8=" ] } }, @@ -761,50 +689,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:31 GMT" + "request-id": [ + "69891ee4-1c36-4d1f-9103-bbe6314dd4e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "20b1590c-3e41-46fd-90e2-02010d62e865" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -816,16 +744,16 @@ "keep-alive" ], "client-request-id": [ - "79183ae2-c371-11e9-a371-44032c851686" + "5a068f80-af32-11ea-9c31-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:34 GMT" + "Mon, 15 Jun 2020 18:02:18 GMT" ], "Authorization": [ - "SharedKey sdktest2:yvF1588cOs686ruw2Frp2hZe6TFcV3u2Zh27DAZFsJ8=" + "SharedKey sdktest2:DezTe8LenNCqy0v5Rh1khkrVXwZGzoGdr/fIMlpMTD4=" ] } }, @@ -835,50 +763,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:33 GMT" + "request-id": [ + "84f56adf-b353-4fd0-9a32-369a45641e84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "67878375-15a0-46f9-b62a-9f796c1e27da" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -890,16 +818,16 @@ "keep-alive" ], "client-request-id": [ - "7aea4e2c-c371-11e9-b29b-44032c851686" + "5bd7fedc-af32-11ea-8991-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:37 GMT" + "Mon, 15 Jun 2020 18:02:21 GMT" ], "Authorization": [ - "SharedKey sdktest2:EqJhKiYtsOv0ahYOfSKgdH611VBn45UyYkcj6wVesck=" + "SharedKey sdktest2:gDcKvnkvnE2XbIr5qcz5sARomh7dmhGqNvJxl3iClg0=" ] } }, @@ -909,50 +837,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:37 GMT" + "request-id": [ + "9629c04a-4aca-45d2-bb59-d1e79038a225" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "a8e774a0-1cb8-405b-8cd0-6c92b161c35b" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -964,16 +892,16 @@ "keep-alive" ], "client-request-id": [ - "7cbda8ec-c371-11e9-89e9-44032c851686" + "5da9dbda-af32-11ea-a405-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:40 GMT" + "Mon, 15 Jun 2020 18:02:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:3woEiTsctogm5pLGhmcRf1hUCplsNxnTpuTlVtvewME=" + "SharedKey sdktest2:PqKaFvBek24fDuxOdSOwPziYyAv10COmIPAx1NsCjkM=" ] } }, @@ -983,50 +911,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:39 GMT" + "request-id": [ + "93f1f9e4-54db-419f-bb12-cda89c87c36e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "bbbf381b-5a23-449e-8e2f-19b576987977" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1038,16 +966,16 @@ "keep-alive" ], "client-request-id": [ - "7e91b5ac-c371-11e9-be98-44032c851686" + "5f7ca05a-af32-11ea-8206-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:43 GMT" + "Mon, 15 Jun 2020 18:02:27 GMT" ], "Authorization": [ - "SharedKey sdktest2:yl+t9V8tczYabu1yejzgay56VSBwNZO4jNBS18RG9lo=" + "SharedKey sdktest2:jtJWp1bQRSGVgws8j8M79ffRI8rhzVsGMOQsQ0LIgEs=" ] } }, @@ -1057,50 +985,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:42 GMT" + "request-id": [ + "3d23e6e8-4038-4010-837d-6370db79e45a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "71eb7b07-b600-4b86-9f1d-4deae7fcd282" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1112,16 +1040,16 @@ "keep-alive" ], "client-request-id": [ - "806402fa-c371-11e9-8e1d-44032c851686" + "614e2342-af32-11ea-a98a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:46 GMT" + "Mon, 15 Jun 2020 18:02:30 GMT" ], "Authorization": [ - "SharedKey sdktest2:KgD8HVmlEPFXQ20c0YhzsYFJb7VT41m4CWC6aqidAq8=" + "SharedKey sdktest2:fvyjThdMZPneJFFri4pC9pofQUgqUnQ9rVO+0zXBEqk=" ] } }, @@ -1131,50 +1059,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:45 GMT" + "request-id": [ + "343568b9-6ae7-42e0-9a68-a7a97c8ee7e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "c494789c-c5fb-4c77-afb3-46435646e75b" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1186,16 +1114,16 @@ "keep-alive" ], "client-request-id": [ - "823558a4-c371-11e9-b956-44032c851686" + "631febc0-af32-11ea-965f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:49 GMT" + "Mon, 15 Jun 2020 18:02:33 GMT" ], "Authorization": [ - "SharedKey sdktest2:tKakqhaHp6+4oiK4zo4bNgALetFvIpGwOacU7d/booY=" + "SharedKey sdktest2:cHJGDVQwcdTiTtUiNVHXhELJPIcyxmWRyLJkjVCy+us=" ] } }, @@ -1205,50 +1133,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:49 GMT" + "request-id": [ + "a5b0a478-32bc-40c5-a7af-d59ee62762e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "04e1c128-4d0c-4255-9da0-e9c09bc89526" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1260,16 +1188,16 @@ "keep-alive" ], "client-request-id": [ - "840725dc-c371-11e9-81e6-44032c851686" + "64f39386-af32-11ea-ad15-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:52 GMT" + "Mon, 15 Jun 2020 18:02:36 GMT" ], "Authorization": [ - "SharedKey sdktest2:0cLpUfaoIx0mGlaIoMYUi6OBTkMwWG8X7lSHTQcyPJ8=" + "SharedKey sdktest2:ICAf2bvD5OHPrwdtjMo0+K9JFxrm6T/mZlYeR/QM+ZI=" ] } }, @@ -1279,50 +1207,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:52 GMT" + "request-id": [ + "786f175c-c8ab-4f76-9483-7900ed157537" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "09d528f0-ac98-436f-b6f5-b1052e6fed6d" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1334,16 +1262,16 @@ "keep-alive" ], "client-request-id": [ - "85d8d354-c371-11e9-ab8b-44032c851686" + "66c62a42-af32-11ea-a246-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:55 GMT" + "Mon, 15 Jun 2020 18:02:39 GMT" ], "Authorization": [ - "SharedKey sdktest2:GPPtmRYUL2K5iPBf01lyRZI1BcpfPZvhX0FqZvd2OMs=" + "SharedKey sdktest2:U1UdCIrbKoujqWYM60EpX1gpIB5ujfL5IishFwS1hTk=" ] } }, @@ -1353,50 +1281,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:55 GMT" + "request-id": [ + "2e4469d7-db8f-4253-94c6-34555c253309" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "94868be8-cae4-4f0e-bc00-1ac2ef00d4b4" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1408,16 +1336,16 @@ "keep-alive" ], "client-request-id": [ - "87ae0c68-c371-11e9-8cbb-44032c851686" + "68975e30-af32-11ea-9ae0-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:58 GMT" + "Mon, 15 Jun 2020 18:02:42 GMT" ], "Authorization": [ - "SharedKey sdktest2:+AV3jMin2QM7857gYUEHzZoW5+v+E9lD0mogrIj1hb4=" + "SharedKey sdktest2:abxGmQFmdvG0zs04iOOnud1HJhHsaTA7u52uLenwOgs=" ] } }, @@ -1427,50 +1355,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:58 GMT" + "request-id": [ + "88988cf8-fabd-4c80-8284-df5e1e7bee5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "51374efa-79cd-43bd-8827-4d333b2ee720" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1482,16 +1410,16 @@ "keep-alive" ], "client-request-id": [ - "898098f6-c371-11e9-b57d-44032c851686" + "6a693712-af32-11ea-a48d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:01 GMT" + "Mon, 15 Jun 2020 18:02:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:jw91ur/OHkSoRNTBvQaT3fWdBKVcA+3+su9Hfq//ShQ=" + "SharedKey sdktest2:wH2mck/6hxXcxqhUA7oltwl7C9xL/radvOBVnnYvRH0=" ] } }, @@ -1501,50 +1429,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:01 GMT" + "request-id": [ + "d549bb1a-f615-4d82-8c82-ca9395e08aa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "772dfeb5-eea1-438b-b917-dc621af48cc3" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1556,16 +1484,16 @@ "keep-alive" ], "client-request-id": [ - "8b51f440-c371-11e9-b5d5-44032c851686" + "6c3aadca-af32-11ea-b30d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:04 GMT" + "Mon, 15 Jun 2020 18:02:48 GMT" ], "Authorization": [ - "SharedKey sdktest2:jJxFpvl6x5NiCsndQ04U9cSBcIyx3hm6uZy7v198o8E=" + "SharedKey sdktest2:FVkoZJvVoWMFE9Sc55UiH31GkrZTLWEntuSuokTnhuk=" ] } }, @@ -1575,50 +1503,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:04 GMT" + "request-id": [ + "fba1c4ed-85d0-4504-b0b3-230343a60379" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "0e05282a-7754-4eb7-b137-54dd56bcbaba" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1630,16 +1558,16 @@ "keep-alive" ], "client-request-id": [ - "8d251b9c-c371-11e9-9a9c-44032c851686" + "6e0c3a74-af32-11ea-a1e9-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:07 GMT" + "Mon, 15 Jun 2020 18:02:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:ZjgpVQ86BRAp9WwEsZU8yO7EW5ArWrALvrn1hvcY8rg=" + "SharedKey sdktest2:2h8sJzFGDZLH8BtZXkZVFM/1pmgnF+WwNIyI2BO0gp8=" ] } }, @@ -1649,50 +1577,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:06 GMT" + "request-id": [ + "eac5f00b-8ebb-40ce-8ed3-a3f5247f68a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "bc9590e8-9c15-4d5a-87c5-3baff66c7bda" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1704,16 +1632,16 @@ "keep-alive" ], "client-request-id": [ - "8ef6e464-c371-11e9-af6d-44032c851686" + "6fde29c8-af32-11ea-856a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:10 GMT" + "Mon, 15 Jun 2020 18:02:54 GMT" ], "Authorization": [ - "SharedKey sdktest2:/dEsBQxi/Om3fd2t9nwBslsnOUHYK/t8sHR+qMPzzOQ=" + "SharedKey sdktest2:j+H0hklCuRzD6wE+Dg0L9Cyno+B2oHkifQJXB2d4RD8=" ] } }, @@ -1723,50 +1651,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:10 GMT" + "request-id": [ + "6b57176c-8778-479c-b990-0f3a23c76c8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "7419094a-aa16-489e-92aa-36c86b3e2ed5" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1778,16 +1706,16 @@ "keep-alive" ], "client-request-id": [ - "90c8de68-c371-11e9-8b58-44032c851686" + "71afa300-af32-11ea-aaff-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:13 GMT" + "Mon, 15 Jun 2020 18:02:57 GMT" ], "Authorization": [ - "SharedKey sdktest2:29iih/nrq2CFY490bMOnMWMxubgZlf2dMRshBaGkPbs=" + "SharedKey sdktest2:mJeXqbK3CqyDtSs+pWd70Hdn8rqdXQkj4rQNQL6alRI=" ] } }, @@ -1797,50 +1725,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:13 GMT" + "request-id": [ + "3e08217e-b180-46c4-bfe8-d437d65e343d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:02:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "f686e463-37a3-4e90-ab6f-6de57e64e59f" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1852,16 +1780,16 @@ "keep-alive" ], "client-request-id": [ - "929ccd2c-c371-11e9-a581-44032c851686" + "7382ad94-af32-11ea-a485-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:16 GMT" + "Mon, 15 Jun 2020 18:03:00 GMT" ], "Authorization": [ - "SharedKey sdktest2:uyyC2lyKkdCfEdYJuvl+qIYkJYi1imssW72mYWT1h6M=" + "SharedKey sdktest2:nY8qk8peTjqnjPqE9uktJ+odVHrMVSBz69/er0FG0us=" ] } }, @@ -1871,50 +1799,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:16 GMT" + "request-id": [ + "0e6d4b28-9283-49c9-9f02-568087e82274" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "2482022e-332b-48c5-891b-cbf8710588f9" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:16.1469849Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1926,16 +1854,16 @@ "keep-alive" ], "client-request-id": [ - "92a44834-c371-11e9-ba58-44032c851686" + "7554537a-af32-11ea-ad46-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:17 GMT" + "Mon, 15 Jun 2020 18:03:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:a4AEkGOpd45ojqsfIPZFGGmTvAteV5OaBfPe3f8vymI=" + "SharedKey sdktest2:V4wMtR0H/b0BaZhxXKH30vM5A+QdNREvWG1MfMdrEw4=" ] } }, @@ -1945,44 +1873,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:16 GMT" + "request-id": [ + "bc29584f-c234-4b00-884b-15fade61bf31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "05c650bd-4bf7-48ea-8d4b-a2c128667859" + "ETag": [ + "0x8D8115636BF138F" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:40:16.0922226Z\",\"allocationTime\":\"2019-08-20T17:40:15.2984459Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.16.171\",\"publicFQDN\":\"dns07c600ce-fa0e-4d8b-8d1f-948d1d69b8c7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -1994,16 +1928,16 @@ "keep-alive" ], "client-request-id": [ - "9475a2ae-c371-11e9-8dd2-44032c851686" + "77266e6e-af32-11ea-a875-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:20 GMT" + "Mon, 15 Jun 2020 18:03:07 GMT" ], "Authorization": [ - "SharedKey sdktest2:KmtmNyWC9j5zNTZ113ABvQlg4E7KEuHbY+K9PQx9EAg=" + "SharedKey sdktest2:mq1B1nBRToBIyUBsqyGGUdym//y8WMdkv5HH3wHYRAA=" ] } }, @@ -2013,44 +1947,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:20 GMT" + "request-id": [ + "88acf59a-a423-491a-b85a-01c4ace2dbea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "d96567fb-a088-4460-a4e9-dc2b2e87dea8" + "ETag": [ + "0x8D8115636BF138F" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:40:16.0922226Z\",\"allocationTime\":\"2019-08-20T17:40:15.2984459Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.16.171\",\"publicFQDN\":\"dns07c600ce-fa0e-4d8b-8d1f-948d1d69b8c7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2062,16 +2002,16 @@ "keep-alive" ], "client-request-id": [ - "9648e4ba-c371-11e9-9bf4-44032c851686" + "78f8ccf6-af32-11ea-a371-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:23 GMT" + "Mon, 15 Jun 2020 18:03:10 GMT" ], "Authorization": [ - "SharedKey sdktest2:5/8Qj4tu0VTvu2Hh9AcnMWoe/QnDLmnIuyYlOSOkUkQ=" + "SharedKey sdktest2:OuDQF0CX2woq2wH0zzjCbUm9ZnGS0eaok+rOqcUXI6E=" ] } }, @@ -2081,44 +2021,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:23 GMT" + "request-id": [ + "bd402271-15b9-405b-bced-bd089e7fb55f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "684a0487-829c-48da-b957-ae593c06357d" + "ETag": [ + "0x8D8115636BF138F" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:40:21.296399Z\",\"lastBootTime\":\"2019-08-20T17:40:21.194161Z\",\"allocationTime\":\"2019-08-20T17:40:15.2984459Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"vmSize\":\"standard_d1_v2\",\"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.16.171\",\"publicFQDN\":\"dns07c600ce-fa0e-4d8b-8d1f-948d1d69b8c7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-20T17:40:21.194161Z\",\"version\":\"1.6.4\"\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0&timeout=30", - "body": "{\"id\": \"ncj-ubuntu1604\", \"poolInfo\": {\"poolId\": \"ncj-ubuntu1604\"}}", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2129,79 +2075,70 @@ "Connection": [ "keep-alive" ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], "client-request-id": [ - "96aafb54-c371-11e9-b133-44032c851686" + "7aca707a-af32-11ea-8dcc-44032c851686" ], "accept-language": [ "en-US" ], - "return-client-request-id": [ - "false" + "ocp-date": [ + "Mon, 15 Jun 2020 18:03:13 GMT" ], - "Content-Length": [ - "66" + "Authorization": [ + "SharedKey sdktest2:4FDofvBvtBVOfOcrIZ4ML1aaJmGylH4/TlR6NMwCVSg=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" + "request-id": [ + "ffe24bf2-6d73-4241-9691-bc0e0ed75188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "ETag": [ + "0x8D8115636BF138F" + ], "X-Content-Type-Options": [ "nosniff" ], - "ETag": [ - "0x8D725957B414460" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:24 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:03:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "request-id": [ - "0b00045c-89d5-4083-8403-ce95fed68953" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/addtaskcollection?api-version=2019-08-01.10.0", - "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"/bin/bash -c \\\"echo test\\\"\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2212,20 +2149,17 @@ "Connection": [ "keep-alive" ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], "client-request-id": [ - "970fc98a-c371-11e9-9e75-44032c851686" + "7c9c2eb6-af32-11ea-9d57-44032c851686" ], "accept-language": [ "en-US" ], - "Content-Length": [ - "475" + "ocp-date": [ + "Mon, 15 Jun 2020 18:03:16 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:NAmXLoHtaV3FgBeVAv8Sdp2pTGmacnbfmmd6hqEayaw=" ] } }, @@ -2235,44 +2169,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" + "request-id": [ + "599e7e88-0a51-47ff-b388-f9c8c24acc4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "3192f38a-2fca-4a50-aae5-8e6f63d89d69" + "ETag": [ + "0x8D8115636BF138F" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D725957BB9A33F\",\"lastModified\":\"2019-08-20T17:40:25.2332863Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\"\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2284,16 +2224,16 @@ "keep-alive" ], "client-request-id": [ - "9788badc-c371-11e9-a8f9-44032c851686" + "7e6e85de-af32-11ea-a562-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:25 GMT" + "Mon, 15 Jun 2020 18:03:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:3KTXlKFP3YAcXsdqP5TmifPeUTey8Y1cdLzFORFTfYM=" + "SharedKey sdktest2:qYs7DC9CepH3FLV5okVF6pbOQSRfh02XUWY7W1g4mgs=" ] } }, @@ -2303,50 +2243,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" + "request-id": [ + "da272d0b-a6fe-46a2-8d14-b7645f218664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957B414460" + "0x8D8115636BF138F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:24 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "7a6a6ffd-0c46-4bc7-8b2f-884173b7092f" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604\",\"eTag\":\"0x8D725957B414460\",\"lastModified\":\"2019-08-20T17:40:24.4444256Z\",\"creationTime\":\"2019-08-20T17:40:24.4307198Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:24.4444256Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-ubuntu1604\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:40:24.4444256Z\",\"poolId\":\"ncj-ubuntu1604\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2358,16 +2298,16 @@ "keep-alive" ], "client-request-id": [ - "9791539a-c371-11e9-9189-44032c851686" + "8040836e-af32-11ea-a435-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:25 GMT" + "Mon, 15 Jun 2020 18:03:22 GMT" ], "Authorization": [ - "SharedKey sdktest2:1Q8WdxtUeHtCsWjon6xIDaCjvDplImTwYK7Hu9hQd78=" + "SharedKey sdktest2:NAlb+Qid0tWBbsW0wwTHDTsLRdm/FBn1T2bkKYaWOVw=" ] } }, @@ -2377,44 +2317,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" + "request-id": [ + "8ffb42ff-e44d-4f66-b365-bda2b0c5cdd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "cb70c097-c58f-4ba5-971d-908574325587" + "ETag": [ + "0x8D8115636BF138F" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D725957BB9A33F\",\"creationTime\":\"2019-08-20T17:40:25.2332863Z\",\"lastModified\":\"2019-08-20T17:40:25.2332863Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:25.2332863Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-06-15T18:03:19.0579494Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2426,16 +2372,16 @@ "keep-alive" ], "client-request-id": [ - "99652236-c371-11e9-b2ed-44032c851686" + "8047b426-af32-11ea-980a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Mon, 15 Jun 2020 18:03:22 GMT" ], "Authorization": [ - "SharedKey sdktest2:f5M9JAiNFf7w2EN5SpgyyCQyoVty/f9fuOM7oIJIzgI=" + "SharedKey sdktest2:NHJ5TKjdblN+mlydvfLTKEnOqe5Dzv1K60dySRvnUDQ=" ] } }, @@ -2445,44 +2391,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:27 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "3c348f00-c2da-4885-bedc-960375b3943e" + "ec396997-460d-4f3b-8ee2-e9a78cc52363" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D725957BB9A33F\",\"creationTime\":\"2019-08-20T17:40:25.2332863Z\",\"lastModified\":\"2019-08-20T17:40:25.2332863Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:40:26.353947Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:40:25.735322Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:40:25.735322Z\",\"endTime\":\"2019-08-20T17:40:26.353947Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d/files/workitems/ncj-ubuntu1604/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:03:18.9547622Z\",\"allocationTime\":\"2020-06-15T18:03:18.609852Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.133\",\"publicFQDN\":\"dns032f5454-5463-487b-8732-ff5454a17b44-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2494,16 +2440,16 @@ "keep-alive" ], "client-request-id": [ - "996e12a4-c371-11e9-9283-44032c851686" + "82198a36-af32-11ea-af27-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Mon, 15 Jun 2020 18:03:25 GMT" ], "Authorization": [ - "SharedKey sdktest2:kjz4cnyJqmQyihVdFcYxvlJ6weYutUggc+GbppWvBZk=" + "SharedKey sdktest2:4tpPmEIc8uTvrWPOY6FcZ1kPl3AhEVCdOK+qanhAnRo=" ] } }, @@ -2513,103 +2459,127 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:27 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725957BB9A33F" + "request-id": [ + "dc3f0375-35fc-4c1e-a9e8-3c38e44c593f" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:25 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "5fbfe903-c7e6-4fd6-b494-7c6b581dbfbd" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D725957BB9A33F\",\"creationTime\":\"2019-08-20T17:40:25.2332863Z\",\"lastModified\":\"2019-08-20T17:40:25.2332863Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:40:26.353947Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:40:25.735322Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:40:25.735322Z\",\"endTime\":\"2019-08-20T17:40:26.353947Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d/files/workitems/ncj-ubuntu1604/job-1/myTask\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:03:25.168484Z\",\"lastBootTime\":\"2020-06-15T18:03:25.09435Z\",\"allocationTime\":\"2020-06-15T18:03:18.609852Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"vmSize\":\"standard_d1_v2\",\"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.153.154.133\",\"publicFQDN\":\"dns032f5454-5463-487b-8732-ff5454a17b44-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-06-15T18:03:25.09435Z\",\"version\":\"1.8.2\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer?restype=container&comp=list", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0&timeout=30", + "body": "{\"id\": \"ncj-ubuntu1604\", \"poolInfo\": {\"poolId\": \"ncj-ubuntu1604\"}}", "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0MzkwNSwibmJmIjoxNTkyMjQzOTA1LCJleHAiOjE1OTIzMzA2MDUsImFpbyI6IjQyZGdZRGoyenJ2MVVXRG9SclBRSlllTjNkc25BZ0E9IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJzMmhLZWluQi1FeXEzYjJ4RFYwQkFBIiwidmVyIjoiMS4wIn0.jHR2gSjyDqmOhu5zSoaSs807RvWp98H6tCyNsM2Ga_C_8S8SYrjGa8L_QbahT0Wd49GQqYZnF6DdTh3jlX31RYxOfjl8m5SRDnCJ563CJSXB_A9vBbsGWjzQtJnXgS4aQz4ju1S2KdHvI9WZeLgIxnUz8YBqOmBxSIGHOT2kEfNJtChKmfog71aVmpp6_NAqsS18tb2WEQHx80QxB0T_EDnJ7aJEOEkDoiCCtDN8a8UcGv7r-KycnyJQWc_k6XDToG-t3RRU2tZRV3KyCNUvRGlHQN8tKYylydVIsaFmqj_6BnR3iDg57zeOsTKyl1kSEL7B72iycWZXg0a-H_MdKg" ], - "x-ms-client-request-id": [ - "99764ab4-c371-11e9-abe7-44032c851686" + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "client-request-id": [ + "8246238a-af32-11ea-ab40-44032c851686" ], - "Authorization": [ - "SharedKey sdkteststore2:OdeQVi6+xPhT8YGyuiEPEuDbSyHX7JmyZbN8wIPjoKw=" + "accept-language": [ + "en-US" + ], + "return-client-request-id": [ + "false" + ], + "Content-Length": [ + "66" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 201, + "message": "Created" }, "headers": { - "Content-Type": [ - "application/xml" + "request-id": [ + "2fcda4da-9ccb-415f-9027-b0e4f418d2ec" ], - "x-ms-version": [ - "2017-07-29" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "ETag": [ + "0x8D811567359E571" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:03:46 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" + ], + "Last-Modified": [ + "Mon, 15 Jun 2020 18:03:47 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "DataServiceVersion": [ + "3.0" ], "Transfer-Encoding": [ "chunked" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:27 GMT" ] }, "body": { - "string": "\ufefffileuploaderr.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C5D6B230application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C4DFF0C506application/octet-streamJep6Lf8xO8ufndlZJO8P8A==BlockBlobHottrueunlockedavailabletruestderr.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C541AA10application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C5BE4415application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" + "string": "" } } }, { "request": { - "method": "DELETE", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/addtaskcollection?api-version=2020-03-01.11.0", + "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"/bin/bash -c \\\"echo test\\\"\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2620,79 +2590,88 @@ "Connection": [ "keep-alive" ], + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0MzkyNywibmJmIjoxNTkyMjQzOTI3LCJleHAiOjE1OTIzMzA2MjcsImFpbyI6IjQyZGdZRGoyenJ2MVVXRG9SclBRSlllTjNkc25BZ0E9IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiIxZjk1SG4yVkIwQ0hlSUk4RE5vQkFBIiwidmVyIjoiMS4wIn0.GRH4SAcaL-rAMsusmzyItmmJIyOnPqv7ZX8OwtzjAyhO_CwiPJ6MFZQWz70kTbh66448BZK2w15686MeXjmiqh9j-0SMfgqp6NxFczqyWoKxXBFrjy4T3PDPLbCA4j4lMyHUPO20czQ2604CrqtJAI7PYolb-KqT2j1lDvohRELvCtjevgYfTHvj3-jARTLN_uKe7et0uQSM7CG1ypUVOJUYEqEiCyCOgvOX6kI73z61XWZPWv4h_yA6P934vxfxsF-vzT-ixjQI5LDc6EBo7RQdsNluBHIsZxIF6LqmsR7XYgJLrIy5wcRtOgbC5x2ITGZgkNECRsGHrNrZKef5rQ" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "9981707a-c371-11e9-bcf8-44032c851686" + "8f507930-af32-11ea-831e-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "0" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:5687sZHEC7H80334YTvh+1WSSh5p6g7tNjrfFvLnA8k=" + "477" ] } }, "response": { "status": { - "code": 202, - "message": "Accepted" + "code": 200, + "message": "OK" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:27 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "2bd4fe3b-909c-4617-91c7-adc65b11c304" + "9f6a0e2a-24e7-4c3b-a4f1-b7984ab95cb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D81156808DED65\",\"lastModified\":\"2020-06-15T18:04:09.4569829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\"\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer?restype=container&comp=list", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "client-request-id": [ + "9c88ba2e-af32-11ea-877b-44032c851686" ], - "x-ms-client-request-id": [ - "99897dfe-c371-11e9-80a1-44032c851686" + "accept-language": [ + "en-US" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "ocp-date": [ + "Mon, 15 Jun 2020 18:04:09 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:X0g/G2R0yz7yZlccdKrWMZlebmbnM28c0x+eH/bQRLg=" + "SharedKey sdktest2:Ec4gvmljiz1izcGKgfVE2mTS8YWtXuDVAU5dqYQNiIc=" ] } }, @@ -2702,259 +2681,322 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" + "request-id": [ + "e00765d7-062e-4422-a6a5-ac9ffd4eda5b" ], - "x-ms-version": [ - "2017-07-29" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "ETag": [ + "0x8D811567359E571" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:08 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" + ], + "Last-Modified": [ + "Mon, 15 Jun 2020 18:03:47 GMT" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" ], "Transfer-Encoding": [ "chunked" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" ] }, "body": { - "string": "\ufefffileuploaderr.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C5D6B230application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C4DFF0C506application/octet-streamJep6Lf8xO8ufndlZJO8P8A==BlockBlobHottrueunlockedavailabletruestderr.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C541AA10application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtTue, 20 Aug 2019 17:40:26 GMT0x8D725957C5BE4415application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604\",\"eTag\":\"0x8D811567359E571\",\"lastModified\":\"2020-06-15T18:03:47.3056113Z\",\"creationTime\":\"2020-06-15T18:03:47.2684577Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:03:47.3056113Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-ubuntu1604\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:03:47.3056113Z\",\"poolId\":\"ncj-ubuntu1604\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } } }, { "request": { - "method": "DELETE", - "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/fileuploaderr.txt", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "client-request-id": [ + "9c91279e-af32-11ea-a58e-44032c851686" ], - "x-ms-client-request-id": [ - "99941f9c-c371-11e9-8eb4-44032c851686" + "accept-language": [ + "en-US" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "ocp-date": [ + "Mon, 15 Jun 2020 18:04:09 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:uouaMWiladXCm7Fm9hHRBgfgecPEKF/yUmgwQY3MLfE=" - ], - "Content-Length": [ - "0" + "SharedKey sdktest2:arK+hE+qccuyJHL8Q6hZWc8N5gYrV8r+Th8Arsy7uTo=" ] } }, "response": { "status": { - "code": 202, - "message": "Accepted" + "code": 200, + "message": "OK" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "request-id": [ + "f16c0bac-72de-4932-9f52-dccdcc9633c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:08 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" ], - "x-ms-delete-type-permanent": [ - "true" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], - "Content-Length": [ - "0" + "DataServiceVersion": [ + "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D81156808DED65\",\"creationTime\":\"2020-06-15T18:04:09.4569829Z\",\"lastModified\":\"2020-06-15T18:04:09.4569829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:09.4569829Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "DELETE", - "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/fileuploadout.txt", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "client-request-id": [ + "9e671bde-af32-11ea-ac58-44032c851686" ], - "x-ms-client-request-id": [ - "999ae210-c371-11e9-813e-44032c851686" + "accept-language": [ + "en-US" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "ocp-date": [ + "Mon, 15 Jun 2020 18:04:12 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:/LsUUYhaMdhrREEgPAWpioJyQcHdFXQrAnnxx+hiUbM=" - ], - "Content-Length": [ - "0" + "SharedKey sdktest2:4AiJNizKBA/v1vH1oxJVdOXH/j32IVwMA+TGcSZP0EI=" ] } }, "response": { "status": { - "code": 202, - "message": "Accepted" + "code": 200, + "message": "OK" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "request-id": [ + "2493d1df-75d0-4a45-8978-73996b751ed9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:12 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" ], - "x-ms-delete-type-permanent": [ - "true" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], - "Content-Length": [ - "0" + "DataServiceVersion": [ + "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D81156808DED65\",\"creationTime\":\"2020-06-15T18:04:09.4569829Z\",\"lastModified\":\"2020-06-15T18:04:09.4569829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:09.4569829Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "DELETE", - "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/stderr.txt", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "client-request-id": [ + "a03a4b98-af32-11ea-9b28-44032c851686" ], - "x-ms-client-request-id": [ - "99a2c3a8-c371-11e9-9c6e-44032c851686" + "accept-language": [ + "en-US" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "ocp-date": [ + "Mon, 15 Jun 2020 18:04:15 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:3QYhqVl9rZO0TEZLAMuamNpL83PakIF/m9S0qy1GFDQ=" - ], - "Content-Length": [ - "0" + "SharedKey sdktest2:8xpeYH2BY7v+7sEIOxyem4qkSgTv2EToQMXXNKxRJqw=" ] } }, "response": { "status": { - "code": 202, - "message": "Accepted" + "code": 200, + "message": "OK" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "request-id": [ + "bba0d71f-a7a6-4493-94ed-a220f1c29d75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:14 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" ], - "x-ms-delete-type-permanent": [ - "true" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], - "Content-Length": [ - "0" + "DataServiceVersion": [ + "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D81156808DED65\",\"creationTime\":\"2020-06-15T18:04:09.4569829Z\",\"lastModified\":\"2020-06-15T18:04:09.4569829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:09.4569829Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "DELETE", - "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/stdout.txt", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "client-request-id": [ + "a20c55c0-af32-11ea-9510-44032c851686" ], - "x-ms-client-request-id": [ - "99a9f3f4-c371-11e9-a965-44032c851686" + "accept-language": [ + "en-US" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "ocp-date": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:jQNFIhbu4L+M5OQEmeY3aW5mCvW/WfmRYK33Du50oY0=" - ], - "Content-Length": [ - "0" + "SharedKey sdktest2:y+jIZCHqZpK/rJszYTc9QnoEtKkur66HUfgb4HU9lNg=" ] } }, "response": { "status": { - "code": 202, - "message": "Accepted" + "code": 200, + "message": "OK" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "request-id": [ + "77d7c41d-de3d-420b-8fe4-7768758cc20a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:17 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" ], - "x-ms-delete-type-permanent": [ - "true" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], - "Content-Length": [ - "0" + "DataServiceVersion": [ + "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D81156808DED65\",\"creationTime\":\"2020-06-15T18:04:09.4569829Z\",\"lastModified\":\"2020-06-15T18:04:09.4569829Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:04:16.364908Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:04:15.884986Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:04:15.936548Z\",\"endTime\":\"2020-06-15T18:04:16.364908Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d/files/workitems/ncj-ubuntu1604/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2966,16 +3008,16 @@ "keep-alive" ], "client-request-id": [ - "99b0d606-c371-11e9-a8db-44032c851686" + "a2152242-af32-11ea-9397-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:5Lbd2U04jG1knPmswGpVcJ75QCxFDrqTXWU2mAvcFcM=" + "SharedKey sdktest2:lQyXhPF4G5Qk0m9mDcL1SIzV+glNJFLSmPvm8P/fgQc=" ] } }, @@ -2985,127 +3027,103 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "request-id": [ + "d9c2d65e-7af7-4224-b2e7-ac5e83a9995a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "1fdefa5d-9bb9-4e03-b255-5118ce132010" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" + "ETag": [ + "0x8D81156808DED65" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 15 Jun 2020 18:04:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:09 GMT" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\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 },\"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 },\"verificationType\":\"verified\",\"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 },\"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 },\"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-5\",\"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-6\",\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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 },\"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 \"publisher\":\"microsoft-dsvm\",\"offer\":\"dsvm-windows\",\"sku\":\"server-2016\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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 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 },\"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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"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 },\"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-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 },\"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\":\"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 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 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 },\"verificationType\":\"verified\",\"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.6\",\"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 },\"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 7\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D81156808DED65\",\"creationTime\":\"2020-06-15T18:04:09.4569829Z\",\"lastModified\":\"2020-06-15T18:04:09.4569829Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:04:16.364908Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:04:15.884986Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:04:15.936548Z\",\"endTime\":\"2020-06-15T18:04:16.364908Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d/files/workitems/ncj-ubuntu1604/job-1/myTask\"\r\n }\r\n}" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0", - "body": "{\"id\": \"ncj-windows-2012-r2\", \"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"microsoftwindowsserver\", \"offer\": \"windowsserver\", \"sku\": \"2012-r2-datacenter\"}, \"nodeAgentSKUId\": \"batch.node.windows amd64\"}, \"targetDedicatedNodes\": 1}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer?restype=container&comp=list", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "client-request-id": [ - "99ba509e-c371-11e9-a532-44032c851686" - ], - "accept-language": [ - "en-US" + "x-ms-version": [ + "2017-07-29" ], - "Content-Length": [ - "277" + "x-ms-client-request-id": [ + "a21dc6f6-af32-11ea-826e-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:F2ymTkGpnEg0xP9IR60qQmr3OHGlhTiSq0Hnp3bsT9U=" + "SharedKey sdkteststore2:i4QfdmASaLH8qOeViXaA8p50dfaEqwBUkGtPEMAmXsA=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2" - ], "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D725957DFB0158" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2" + "Content-Type": [ + "application/xml" ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "d9ad6909-02b7-45e0-a10e-d638b2cbae0c" - ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufefffileuploaderr.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A3A7ED0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A7A043506application/octet-streamkAd+7s6WvBYh5/1Q78AXGw==BlockBlobHottrueunlockedavailabletruestderr.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A0E8540application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A5A4185application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3117,90 +3135,78 @@ "keep-alive" ], "client-request-id": [ - "99ccccb4-c371-11e9-a38a-44032c851686" + "a228dbe2-af32-11ea-b805-44032c851686" ], "accept-language": [ "en-US" ], + "Content-Length": [ + "0" + ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:R00scbBql3EXY3jDxoF3lh6htFokFsduKojkwub7P/4=" + "SharedKey sdktest2:oV9o1oeLg+MwaLn8Ogq81yqE2POdY7B7fnwsFQhvbiM=" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725957DFB0158" + "request-id": [ + "dd4148e3-fdfc-4000-b08d-07012e7fc443" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "c0cc9e32-83d6-451e-a0e6-8eab51181ea9" + "DataServiceVersion": [ + "3.0" ], "Transfer-Encoding": [ "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer?restype=container&comp=list", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "9b9e8422-c371-11e9-9593-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "a23349ae-af32-11ea-bf5a-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:32 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:gA6yzFz+4vzX3/TIb/ejzicawcAL2hbI9G6BhiyjCQE=" + "SharedKey sdkteststore2:obtCmAktFehHF06xVY5Vykolk82I4Nlu6fypEDDi5Dc=" ] } }, @@ -3210,272 +3216,259 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:40:32 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725957DFB0158" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "046d06a5-d922-4e6d-8c21-46072582c220" + "Content-Type": [ + "application/xml" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "\ufefffileuploaderr.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A3A7ED0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A7A043506application/octet-streamkAd+7s6WvBYh5/1Q78AXGw==BlockBlobHottrueunlockedavailabletruestderr.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A0E8540application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtMon, 15 Jun 2020 18:04:16 GMT0x8D8115684A5A4185application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/fileuploaderr.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "9d71e2b6-c371-11e9-9baa-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "a23f76e6-af32-11ea-b536-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:35 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:7ziKU0DiAti+aHDYLd0p+cEWe4GZ3wrEvvH73YyDzOk=" + "SharedKey sdkteststore2:tergCm045RaUhClDjvgkrlA2jgAY41nKSCphpkZ+v84=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:40:35 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725957DFB0158" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "4f4220ac-ad45-438c-a420-517dc2f9ba1c" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/fileuploadout.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "9f44241e-c371-11e9-909f-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "a24697d2-af32-11ea-9f65-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:38 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:XCV60+Ux6Oo7VWaESbxLAw6mZPbjDwki3LrJd9BQrVw=" + "SharedKey sdkteststore2:HV2yD85dsxvHWwNHm973p1j2GIcx2zZmAOlUPMIDyw8=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:40:38 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725957DFB0158" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "17d9f944-6b96-437f-bc60-8fb7444ae06b" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/stderr.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "a11605b0-c371-11e9-9927-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "a24d5588-af32-11ea-b028-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:41 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:SORMvNF/GI3yMNUU+gOjpwpEh531Ad+dDj6+peJCpCw=" - ] + "SharedKey sdkteststore2:vsokpqQMdMFddEO3qk00LB1FLToLzuUADegNJ6U94e4=" + ], + "Content-Length": [ + "0" + ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:40:40 GMT" + "Mon, 15 Jun 2020 18:04:18 GMT" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D725957DFB0158" + "Content-Length": [ + "0" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "x-ms-delete-type-permanent": [ + "true" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-version": [ + "2017-07-29" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer/stdout.txt", + "body": null, + "headers": { + "User-Agent": [ + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], - "request-id": [ - "bd1c5c9d-167d-40c7-af1e-67c298dde726" + "Connection": [ + "keep-alive" ], - "Transfer-Encoding": [ - "chunked" + "x-ms-version": [ + "2017-07-29" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-client-request-id": [ + "a254d258-af32-11ea-af40-44032c851686" ], - "DataServiceVersion": [ - "3.0" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:04:19 GMT" + ], + "Authorization": [ + "SharedKey sdkteststore2:44dgiaOcsZ1UhnWVK3InnfbYCzRxVmPuo4U0krTPIv0=" + ], + "Content-Length": [ + "0" + ] + } + }, + "response": { + "status": { + "code": 202, + "message": "Accepted" + }, + "headers": { + "Date": [ + "Mon, 15 Jun 2020 18:04:18 GMT" + ], + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + ], + "Content-Length": [ + "0" + ], + "x-ms-delete-type-permanent": [ + "true" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3487,16 +3480,16 @@ "keep-alive" ], "client-request-id": [ - "a2e895f6-c371-11e9-87f9-44032c851686" + "a25c4d7e-af32-11ea-834f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:44 GMT" + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:SKcM0NMj/S082YpsWV+zwMIOUw34ff/ytLXPS5XCwu4=" + "SharedKey sdktest2:sysmFfXFbzwTdkk3JBuQ2W2EVuALNcoT8oZmjAfHzP4=" ] } }, @@ -3506,50 +3499,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:43 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725957DFB0158" + "request-id": [ + "c3a785df-2082-42e0-a948-51c0ebdd1896" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "186223c8-11b2-4ff8-a83b-81b46eab7984" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04-lts\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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.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\",\"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\",\"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\":\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-5\",\"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-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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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\":\"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 ],\"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 ],\"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\":\"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\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\"\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 18.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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-1903-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows 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 ],\"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\",\"sku\":\"8_1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.1\",\"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.3\",\"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.4\",\"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\":\"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.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\":\"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 \"imageReference\":{\r\n \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"81\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0", + "body": "{\"id\": \"ncj-windows-2012-r2\", \"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"microsoftwindowsserver\", \"offer\": \"windowsserver\", \"sku\": \"2012-r2-datacenter\"}, \"nodeAgentSKUId\": \"batch.node.windows amd64\"}, \"targetDedicatedNodes\": 1}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3560,70 +3547,79 @@ "Connection": [ "keep-alive" ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "a4badde8-c371-11e9-b572-44032c851686" + "a26a9d76-af32-11ea-ba2d-44032c851686" ], "accept-language": [ "en-US" ], + "Content-Length": [ + "277" + ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:47 GMT" + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:s3mqw1QmcaimPPz3n6jzL2LqRZpVeNsgbDarKokmrJs=" + "SharedKey sdktest2:VzROQlUFXG97l40v1YFeGp1aYuzRIvUGfnViRPi0lYo=" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 201, + "message": "Created" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:46 GMT" + "request-id": [ + "3fb05ddd-0eb1-43ad-b1c1-1a3319316afa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "0282ad5c-454e-407f-937b-f8b99f3b1b0b" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "Transfer-Encoding": [ - "chunked" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3635,16 +3631,16 @@ "keep-alive" ], "client-request-id": [ - "a68d5130-c371-11e9-9a2c-44032c851686" + "a2837ab0-af32-11ea-a97c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:50 GMT" + "Mon, 15 Jun 2020 18:04:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:2zqiLk5lBq1WJkCSIqGtnWA6+xtGMqSUgIIp5+fXmBI=" + "SharedKey sdktest2:8K4ZBRJmYIu2YutpgTOnmrVIjilCP5auUk1e7E2q0oU=" ] } }, @@ -3654,50 +3650,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:49 GMT" + "request-id": [ + "09eeb3de-c3a7-4d80-8e48-f7fdf86b41c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "53a9a57b-cb96-4c96-bd40-544ad12caf6a" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3709,16 +3705,16 @@ "keep-alive" ], "client-request-id": [ - "a85f19ac-c371-11e9-8914-44032c851686" + "a454d546-af32-11ea-bf5d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:53 GMT" + "Mon, 15 Jun 2020 18:04:22 GMT" ], "Authorization": [ - "SharedKey sdktest2:haRpSaUADnkH2ZE8hT9Kh50FNvdiItTI/0jYfJ4m4J8=" + "SharedKey sdktest2:AdfbtI177bgWeBeLJFO39+c+V0BBB7o+UPL4d2yCvow=" ] } }, @@ -3728,50 +3724,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:53 GMT" + "request-id": [ + "2b12b7f1-103a-4caf-89c2-b6463eb1113f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "41e77d90-86fb-4ce1-842b-8c173c2145b3" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3783,16 +3779,16 @@ "keep-alive" ], "client-request-id": [ - "aa31141e-c371-11e9-ae6a-44032c851686" + "a6298212-af32-11ea-b550-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:56 GMT" + "Mon, 15 Jun 2020 18:04:25 GMT" ], "Authorization": [ - "SharedKey sdktest2:uhFAl0PA2H7QUMGnOC6fshsKusxLv28QtuwV60CJn6w=" + "SharedKey sdktest2:7ayeTcBwq0l3T0ZpdzzsjurUs7/rnun7TZKgg2JN8cs=" ] } }, @@ -3802,50 +3798,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:55 GMT" + "request-id": [ + "c8b13996-ee26-40d3-9ca5-bfd367290d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "3ca06436-ec0d-4ccf-aca9-d63e9b4321e1" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3857,16 +3853,16 @@ "keep-alive" ], "client-request-id": [ - "ac033188-c371-11e9-abe8-44032c851686" + "a7fb4a46-af32-11ea-91ec-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:59 GMT" + "Mon, 15 Jun 2020 18:04:28 GMT" ], "Authorization": [ - "SharedKey sdktest2:OvCMjgcpdtrevjpNm2wjfboeoKyTNY9wY94av3hTBJ0=" + "SharedKey sdktest2:V3eLKn8JGqMeen9YPXIW+0TZVu+SF50pYohzUJ6c/ck=" ] } }, @@ -3876,50 +3872,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:58 GMT" + "request-id": [ + "bded2741-315d-4639-a7f8-dcc940737181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "fa79a053-365c-4cf0-9b3f-b807135b400a" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3931,16 +3927,16 @@ "keep-alive" ], "client-request-id": [ - "add5aacc-c371-11e9-9996-44032c851686" + "a9cd6eb6-af32-11ea-a836-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:02 GMT" + "Mon, 15 Jun 2020 18:04:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:RWLCsz78rGj2S6B+WoPXM1ANQ2PugH2hDiMMTW2bzYU=" + "SharedKey sdktest2:zjj58b3EjgaXvf/7EJJqmldNUV8ubW7x1RsauT7HWPQ=" ] } }, @@ -3950,50 +3946,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:01 GMT" + "request-id": [ + "80794bbc-addd-4db8-be08-cea3b735370d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "350223fe-105c-4b54-b1d8-3263b4d7ab1f" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4005,16 +4001,16 @@ "keep-alive" ], "client-request-id": [ - "afa848b0-c371-11e9-9df4-44032c851686" + "ab9f3606-af32-11ea-9908-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:05 GMT" + "Mon, 15 Jun 2020 18:04:35 GMT" ], "Authorization": [ - "SharedKey sdktest2:8b5fQGpGdv+TwR/FMpfCxHupug9LV2Ky4Dz9N4ssp8Y=" + "SharedKey sdktest2:QgfydYTKt3F/m1oM1VOnUbaiUJlIOvV69NvYj7S5kPw=" ] } }, @@ -4024,50 +4020,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:05 GMT" + "request-id": [ + "c1809fe4-6d44-42b5-ae8a-4db80461d58a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "31977adb-2654-4d25-be0d-caeab0036d85" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4079,16 +4075,16 @@ "keep-alive" ], "client-request-id": [ - "b17aeefa-c371-11e9-8729-44032c851686" + "ad731b9c-af32-11ea-b5b8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:08 GMT" + "Mon, 15 Jun 2020 18:04:38 GMT" ], "Authorization": [ - "SharedKey sdktest2:z93KVdbtdc8lLVmy07XPrrfRcapXplsAzckOVwWo8fU=" + "SharedKey sdktest2:zrgpqWzQd/zNuCVE0CHMlNQg1qO1zZTLUPr5hRyYNcM=" ] } }, @@ -4098,50 +4094,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:08 GMT" + "request-id": [ + "6251bb18-b334-4757-8dfc-43f348955f92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "7c012e5f-4403-4200-93ec-666197061a49" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4153,16 +4149,16 @@ "keep-alive" ], "client-request-id": [ - "b34cc8b0-c371-11e9-9988-44032c851686" + "af45939e-af32-11ea-8425-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:11 GMT" + "Mon, 15 Jun 2020 18:04:41 GMT" ], "Authorization": [ - "SharedKey sdktest2:WmBXsObj794YpGObTmNVSfPqQ8x/YwQ3dbHxbqvswgs=" + "SharedKey sdktest2:Gz51vSNBXtbdMI/tb8R1exelyMZGJWTSnVgKSL3C5Sc=" ] } }, @@ -4172,50 +4168,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:11 GMT" + "request-id": [ + "d228ca0e-e12b-4e92-9e1a-8c53c478c882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "611ad7ee-232f-49b8-98a2-5a652149f5b9" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4227,16 +4223,16 @@ "keep-alive" ], "client-request-id": [ - "b51fb57a-c371-11e9-b5df-44032c851686" + "b119272e-af32-11ea-adf4-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:14 GMT" + "Mon, 15 Jun 2020 18:04:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:1R5+vgztVsSDSvk7v68O64407eB4wqwaQd70+2gjey0=" + "SharedKey sdktest2:Jdy9jmbATdCRqrA2PRDjNc4e3hFUeEoui5o697L51Aw=" ] } }, @@ -4246,50 +4242,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:14 GMT" + "request-id": [ + "7a5d0d88-b754-4a90-ba74-d082de1ddb39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "6de937d7-3197-464b-8f41-d99e0602d363" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4301,16 +4297,16 @@ "keep-alive" ], "client-request-id": [ - "b6f5dbd8-c371-11e9-9ce9-44032c851686" + "b2efbc6c-af32-11ea-b516-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:17 GMT" + "Mon, 15 Jun 2020 18:04:47 GMT" ], "Authorization": [ - "SharedKey sdktest2:Iz2lo03+ENzJP5UG9/g1jRfjY/lWrKBePa/mlCaGfG4=" + "SharedKey sdktest2:wT+rCMvZolkAzJzsQBGfdE35rNJbd+1f4VBUItzlP+M=" ] } }, @@ -4320,50 +4316,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:17 GMT" + "request-id": [ + "bb6c2e94-316c-4394-8015-42aa8b5e98cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "243526a3-292b-4bdb-9494-5dae867f7625" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4375,16 +4371,16 @@ "keep-alive" ], "client-request-id": [ - "b8c790d4-c371-11e9-810b-44032c851686" + "b4c1a052-af32-11ea-a10c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:21 GMT" + "Mon, 15 Jun 2020 18:04:50 GMT" ], "Authorization": [ - "SharedKey sdktest2:JBfCCTq7ByHvfQ/R/D8kz5l1CmOKMq0btOzw1SFntKU=" + "SharedKey sdktest2:uTHQ84yG9KBSJ6tKvU/AGhP+FKA2MBKQkfUaCpuB6Yk=" ] } }, @@ -4394,50 +4390,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:20 GMT" + "request-id": [ + "1cbddd80-a064-4f0d-921e-f50eea4ccf41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "2dcae9dc-7872-4ebe-aa7b-84d2be0c1561" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4449,16 +4445,16 @@ "keep-alive" ], "client-request-id": [ - "ba9cfcf4-c371-11e9-9112-44032c851686" + "b693522e-af32-11ea-8ee4-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:24 GMT" + "Mon, 15 Jun 2020 18:04:53 GMT" ], "Authorization": [ - "SharedKey sdktest2:8n9E9x4oXO2p4gLFbTS0dAsaW8dMCPZGJ5TieVHlBgY=" + "SharedKey sdktest2:oGvce+Iv9XN5WNBpL654iJNl+tos3T07QUp8Hitf4o4=" ] } }, @@ -4468,50 +4464,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:24 GMT" + "request-id": [ + "e71af71d-2ec1-448e-8877-7743f11b1b8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "1cf02d2e-5a03-4848-98a1-530a95c9dad8" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4523,16 +4519,16 @@ "keep-alive" ], "client-request-id": [ - "bc70f946-c371-11e9-8b40-44032c851686" + "b864bdc6-af32-11ea-9877-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:27 GMT" + "Mon, 15 Jun 2020 18:04:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:7Zbbp0teBjb0tpn5+UZ++UhAkSV7e2Ua5+P7PI+GRM8=" + "SharedKey sdktest2:IXlDNd8+2Faqd/oeOIIJfUIQ8ESAJZZBsjGsjJv7b2o=" ] } }, @@ -4542,50 +4538,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:27 GMT" + "request-id": [ + "336070d0-bc27-4c85-85e0-4634fbbfdea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "816c02da-cd4b-4548-97d0-df8209ea7112" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4597,16 +4593,16 @@ "keep-alive" ], "client-request-id": [ - "be4620ca-c371-11e9-a342-44032c851686" + "ba36f81c-af32-11ea-b5f1-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:30 GMT" + "Mon, 15 Jun 2020 18:04:59 GMT" ], "Authorization": [ - "SharedKey sdktest2:vNBjYK+BfJgQynp0+N8rkhD5uFpnlQ+4t7WhSxy5Grs=" + "SharedKey sdktest2:l2mNga0tf4mNDaIb1aTR+kk+TmcivtoxiLa3K4Bw67s=" ] } }, @@ -4616,50 +4612,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:30 GMT" + "request-id": [ + "12c760a3-b2a7-4592-8285-6048ccaf0e1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:04:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "6eb5e6fa-2893-44dd-bf0b-ee8de06b1873" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4671,16 +4667,16 @@ "keep-alive" ], "client-request-id": [ - "c0193368-c371-11e9-be82-44032c851686" + "bc087414-af32-11ea-bc9f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:33 GMT" + "Mon, 15 Jun 2020 18:05:02 GMT" ], "Authorization": [ - "SharedKey sdktest2:gEsfvJbcFeWb89NAhIFJ1X4I9eW1SBENctg+t70Ye0k=" + "SharedKey sdktest2:JA1vKuvaNHiTI9qXH/273niLrEZ4zueN+O164NElCCM=" ] } }, @@ -4690,50 +4686,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:32 GMT" + "request-id": [ + "c5d4f7f6-454c-4cfc-b0ad-aaaf05bf01fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "e45fab0c-8bff-418d-a697-42157072a3fc" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4745,16 +4741,16 @@ "keep-alive" ], "client-request-id": [ - "c1ed4f62-c371-11e9-8e3d-44032c851686" + "bdda986e-af32-11ea-a05b-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:36 GMT" + "Mon, 15 Jun 2020 18:05:05 GMT" ], "Authorization": [ - "SharedKey sdktest2:0cJQ1tfCuB2w5oNHZv5t7KJbhsr0/ZwGpNAnEWhTcRk=" + "SharedKey sdktest2:We8qsFapdHgSIGkfyyN/tAhUtv0pPt88+DqsbvJnmNI=" ] } }, @@ -4764,50 +4760,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:36 GMT" + "request-id": [ + "05bc6659-9a06-4389-8881-385a13ca4e22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "b4c0dfbd-d542-4d79-89d9-803f64a513bc" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4819,16 +4815,16 @@ "keep-alive" ], "client-request-id": [ - "c3bfe57a-c371-11e9-b983-44032c851686" + "bfad3f10-af32-11ea-aacb-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:39 GMT" + "Mon, 15 Jun 2020 18:05:08 GMT" ], "Authorization": [ - "SharedKey sdktest2:e/pNhD4XDiulkSl6qTWw6rgh1mOTWzpZcFPAPR5XQCA=" + "SharedKey sdktest2:2eX0mZnuxRvAgK8RwSih98G1oZ7BqX7/6LD8sk9XQ+g=" ] } }, @@ -4838,50 +4834,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:39 GMT" + "request-id": [ + "f2512439-d341-4b71-88f3-0d5be76bd8e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "82577bc2-8abe-4d7b-b2bb-3e049cab69b1" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" ], "Transfer-Encoding": [ "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4893,16 +4889,16 @@ "keep-alive" ], "client-request-id": [ - "c5919390-c371-11e9-8d44-44032c851686" + "c17f8cc6-af32-11ea-b750-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:42 GMT" + "Mon, 15 Jun 2020 18:05:11 GMT" ], "Authorization": [ - "SharedKey sdktest2:eM2sMOfGcdYtJA7EThdh1/31ZMh1Gt4OW45TnHH66pU=" + "SharedKey sdktest2:ra4lBOeoPb/EIBPLICwRh8QpKbrXQrAqvnziHAbYe6o=" ] } }, @@ -4912,50 +4908,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:42 GMT" + "request-id": [ + "95dbfa24-a537-4c57-966d-c186d8ef1e33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "3f67631a-11f5-4171-8a0b-1a4f26048467" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4967,16 +4963,16 @@ "keep-alive" ], "client-request-id": [ - "c768463e-c371-11e9-9cfb-44032c851686" + "c352c090-af32-11ea-9742-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" + "Mon, 15 Jun 2020 18:05:14 GMT" ], "Authorization": [ - "SharedKey sdktest2:oVfK3RBatFluF1vNt2IwNLyqnuIDtPYs4lAyQBdOqw4=" + "SharedKey sdktest2:YhIsZ0JXxmdnWk8+nbV1ERlTOmxBYJz/ym2LJMB9tJ4=" ] } }, @@ -4986,50 +4982,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" + "request-id": [ + "f7d5fdef-e68c-4547-9c85-2780e5b169f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "37d8d050-7610-4a30-b790-9c4927f5489f" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-20T17:41:45.3536086Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5041,16 +5037,16 @@ "keep-alive" ], "client-request-id": [ - "c76f61c2-c371-11e9-b91f-44032c851686" + "c5251cc8-af32-11ea-8836-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" + "Mon, 15 Jun 2020 18:05:17 GMT" ], "Authorization": [ - "SharedKey sdktest2:LC0+Dq9RuXAI0CY9GuFbKa0YabG6WD7mVs04Pjwc1xI=" + "SharedKey sdktest2:qWeFDS/kvWDr4HgFlfsgZ6ZnStZfECApXpCOQBo+d9A=" ] } }, @@ -5060,44 +5056,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" + "request-id": [ + "1c7283f6-8b24-4560-a385-8f7c476f41de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "40da48b2-bf61-46fa-8dd1-6728fa331767" + "ETag": [ + "0x8D811568686AD5A" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5109,16 +5111,16 @@ "keep-alive" ], "client-request-id": [ - "c9422358-c371-11e9-a019-44032c851686" + "c6f742f4-af32-11ea-b87b-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:48 GMT" + "Mon, 15 Jun 2020 18:05:20 GMT" ], "Authorization": [ - "SharedKey sdktest2:CdBCg3Yjq02xBZeBuTMVoAPvZNTzVyREmRfVdY+Iyt8=" + "SharedKey sdktest2:iLShxnEBs9/ZVWUx8J1flsW1ldiZ5aPwwLe7xu+BFp8=" ] } }, @@ -5128,44 +5130,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:48 GMT" + "request-id": [ + "b7ade8c2-6b74-4cbf-a98c-53fb973b5f4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "931d13ee-227b-40e3-be69-99a7cd69b345" + "ETag": [ + "0x8D811568686AD5A" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5177,16 +5185,16 @@ "keep-alive" ], "client-request-id": [ - "cb15e3a6-c371-11e9-a2f9-44032c851686" + "c8c93fd2-af32-11ea-b632-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:51 GMT" + "Mon, 15 Jun 2020 18:05:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:6AEffiDAb2MKwMfr5qgqB8tDjXt6y0B6Ozsi7ZEuMfc=" + "SharedKey sdktest2:1Wif5EvkdKnUc9/fos64MpHrsI1YsiElHVdW1cjcjCA=" ] } }, @@ -5196,44 +5204,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:51 GMT" + "request-id": [ + "2d8ef554-47bc-45fa-9b1c-3b022c1a7257" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "b9e3cf22-37a5-41be-b4bb-f9a0595f9808" + "ETag": [ + "0x8D811568686AD5A" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-06-15T18:05:22.1292509Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5245,16 +5259,16 @@ "keep-alive" ], "client-request-id": [ - "cce855fe-c371-11e9-a609-44032c851686" + "c8d0d92c-af32-11ea-9463-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:54 GMT" + "Mon, 15 Jun 2020 18:05:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:ZTmM0rwEtOjhIDjPT5x2AUeAEnciG/eyRgMzXHIV1Sw=" + "SharedKey sdktest2:NUZc6kSGpoIyYubb/AluAYM4uZ/fjsyQuMhiw8rxxKk=" ] } }, @@ -5264,44 +5278,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:54 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "dae9c1a8-baac-4cef-af2a-2c8e13124f71" + "df3e2c8c-678d-4bd6-a233-dd8f77eef990" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5313,16 +5327,16 @@ "keep-alive" ], "client-request-id": [ - "cebbae40-c371-11e9-9eae-44032c851686" + "caa2e04a-af32-11ea-9436-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:57 GMT" + "Mon, 15 Jun 2020 18:05:27 GMT" ], "Authorization": [ - "SharedKey sdktest2:+6RnyXkoqecDvSIBc5j0JOp/l8ZdyaRnsVY3gsTX4F8=" + "SharedKey sdktest2:uvbe33YaT6t5vDGxoPr3K/wBlcH7lmvY50n9xfddbuk=" ] } }, @@ -5332,44 +5346,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:41:57 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "16ed8b4b-d7bb-4244-980c-7fa935bdd260" + "16c318a7-a72a-46b9-bdc6-a72e759d7736" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5381,16 +5395,16 @@ "keep-alive" ], "client-request-id": [ - "d08eb23a-c371-11e9-bfe7-44032c851686" + "cc761340-af32-11ea-a342-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:00 GMT" + "Mon, 15 Jun 2020 18:05:30 GMT" ], "Authorization": [ - "SharedKey sdktest2:hgI5TueDMWPo3wnpTU6DsEHYAmV0+lqfRYySYn6j3jc=" + "SharedKey sdktest2:3mMytd5Tswpv+a75UHs1cMMlJX5LA9OXkZ50ZgwhZk8=" ] } }, @@ -5400,44 +5414,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:00 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "cc5e8a18-34b0-4f76-8e3c-e88c4e0b2187" + "22ce26ef-fc6d-4af3-a493-fe69afce283a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5449,16 +5463,16 @@ "keep-alive" ], "client-request-id": [ - "d260f88a-c371-11e9-a64d-44032c851686" + "ce48cc4c-af32-11ea-894d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:03 GMT" + "Mon, 15 Jun 2020 18:05:33 GMT" ], "Authorization": [ - "SharedKey sdktest2:fy9kcRWAiCXjZBlcSLfwX0DiKq6YBYYnAC8Geh82eKo=" + "SharedKey sdktest2:qbfvHy6YXYvkrpBlp91llT02WNZQ54vp/Xn6H0G7GNM=" ] } }, @@ -5468,44 +5482,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:04 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "3f58417b-80a2-49ce-9f55-d2afbcbfc791" + "10fd3d87-93f3-40e0-b3f3-94ba4ff3b279" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5517,16 +5531,16 @@ "keep-alive" ], "client-request-id": [ - "d43535be-c371-11e9-ab4a-44032c851686" + "d01b04fe-af32-11ea-8a65-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:07 GMT" + "Mon, 15 Jun 2020 18:05:36 GMT" ], "Authorization": [ - "SharedKey sdktest2:wzATs8D3P/s3GF8d8ETf6vm3R6Pobt0JJ8xqATNHAQs=" + "SharedKey sdktest2:L0gSKtxAlmukaMQCi7ZwCMz6/M91rAj7OsEDKapaxmY=" ] } }, @@ -5536,44 +5550,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:06 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "8f008fbb-1105-4863-a50d-2130b3a639be" + "10eebe64-142e-4dde-aefd-f3019e1a9260" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5585,16 +5599,16 @@ "keep-alive" ], "client-request-id": [ - "d607ebe4-c371-11e9-b8d7-44032c851686" + "d1f637e2-af32-11ea-9e86-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:10 GMT" + "Mon, 15 Jun 2020 18:05:39 GMT" ], "Authorization": [ - "SharedKey sdktest2:zmqG5SVF/72FVIdjAN5hPPvzwqsnziv0KOgMtGo3wrA=" + "SharedKey sdktest2:YwLvAbD2DmGD9W4ikDSRZLeQ6RHbeQB1nCBCFCZO2Zs=" ] } }, @@ -5604,44 +5618,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:10 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "c171ef60-7d9a-45b9-8605-15bfe87b52e1" + "8179fac8-da87-474c-9acd-bd310dcb7bbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5653,16 +5667,16 @@ "keep-alive" ], "client-request-id": [ - "d7dbaf38-c371-11e9-8fac-44032c851686" + "d3c8d580-af32-11ea-8de8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:13 GMT" + "Mon, 15 Jun 2020 18:05:42 GMT" ], "Authorization": [ - "SharedKey sdktest2:b631qD+KlnzNeRly0Qqw3RB7kSw+zr3vje/R5DqaPKY=" + "SharedKey sdktest2:vSm9Dr/067E42FH2Kzlv0cC++KqrbTnGvuFEQvY+QAg=" ] } }, @@ -5672,44 +5686,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:13 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "177a9bc0-cf1b-48e2-b3e2-7885ccc5e8d7" + "915d3d72-67fb-488b-a606-a370f63b1ea4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5721,16 +5735,16 @@ "keep-alive" ], "client-request-id": [ - "d9b033f4-c371-11e9-bbfa-44032c851686" + "d59c37be-af32-11ea-b7da-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:16 GMT" + "Mon, 15 Jun 2020 18:05:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:QHfDCJdqEkwftyj3x+yVr7ZmzfcDCS72pPTROYrYclo=" + "SharedKey sdktest2:G/5NdAgFJPDce1MwdCLDZqejk8K+LlHOaxEdB2y32jA=" ] } }, @@ -5740,44 +5754,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:16 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "344ef1d0-fb3f-4f2f-89ae-6e4b93f38f63" + "f9a801a6-5ab6-474b-8e80-4b46ba475414" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5789,16 +5803,16 @@ "keep-alive" ], "client-request-id": [ - "db8400be-c371-11e9-940f-44032c851686" + "d76e9342-af32-11ea-99f1-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:19 GMT" + "Mon, 15 Jun 2020 18:05:48 GMT" ], "Authorization": [ - "SharedKey sdktest2:czuUt7wZd9K4zZsGgesxjhPzm84pIN2920tMcSYhTE4=" + "SharedKey sdktest2:ysQtoQ9qbigT+FVW+qoWQUvl9oT4VspIfQhTHiIPgLM=" ] } }, @@ -5808,44 +5822,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:18 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "e7729d35-44dd-40ce-b896-34e474cd0062" + "46aeae89-cc3e-4be6-b653-74b4be1bbdae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5857,16 +5871,16 @@ "keep-alive" ], "client-request-id": [ - "dd57d13e-c371-11e9-944a-44032c851686" + "d940b33a-af32-11ea-b52d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:22 GMT" + "Mon, 15 Jun 2020 18:05:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:tJGY6VJxAXbxLNrfxVcPLj5lQK56aUep72p1dAQvxaQ=" + "SharedKey sdktest2:8SBaYLARx3tLYIv1d7uoR/UINjRzRp+n33xlUWjTQzg=" ] } }, @@ -5876,44 +5890,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:22 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "3a7db32f-38ed-4e29-a7c8-faa2cf38f1d3" + "89fd4b4a-ce32-4643-ac9b-98bb4ab0eeb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5925,16 +5939,16 @@ "keep-alive" ], "client-request-id": [ - "df2a3dac-c371-11e9-8874-44032c851686" + "db1275d2-af32-11ea-9639-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:25 GMT" + "Mon, 15 Jun 2020 18:05:54 GMT" ], "Authorization": [ - "SharedKey sdktest2:n6DYbf3giEHgKp15R64ktuO3zqOPMGr6Apk/dMYDVs8=" + "SharedKey sdktest2:sevmnoyAgnMb0qLbd59nHtbFNTBt7WYGDstRMNU/J58=" ] } }, @@ -5944,44 +5958,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:24 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "102f2791-7f22-4435-97b3-3c36cf69b952" + "17f33f1d-3058-4074-8c82-f06a568690de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5993,16 +6007,16 @@ "keep-alive" ], "client-request-id": [ - "e0fd0b70-c371-11e9-888d-44032c851686" + "dce51378-af32-11ea-a51d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:28 GMT" + "Mon, 15 Jun 2020 18:05:57 GMT" ], "Authorization": [ - "SharedKey sdktest2:5muWSggKs0Fic7NUjHA8AHXwkEvSJkzpOtU+ZtZTNkA=" + "SharedKey sdktest2:gcs+vK4d6yBUJK/Esj1fs073gDXYliLFzO8TwTkmHZw=" ] } }, @@ -6012,44 +6026,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:27 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "527db8df-4cc9-4e79-b862-64a9e7b0715a" + "a015bf09-fda8-44ad-8d8d-42ed2d843a6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6061,16 +6075,16 @@ "keep-alive" ], "client-request-id": [ - "e2d11080-c371-11e9-ab3d-44032c851686" + "deb74ee8-af32-11ea-a302-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:31 GMT" + "Mon, 15 Jun 2020 18:06:00 GMT" ], "Authorization": [ - "SharedKey sdktest2:TRWXJy3jd0hefXfPMlF7GzvbyDLk5N5mrm4KpSMOjpw=" + "SharedKey sdktest2:R9r1ofJcTdLXZlIZe+cXXz9d1DTZHQCe1Khyv7SmLcg=" ] } }, @@ -6080,44 +6094,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:30 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "52dfe9d3-2042-4def-8d4f-a5efe27a525b" + "35f4756a-a81d-4577-9082-34e2f8a7dae5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:05:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6129,16 +6143,16 @@ "keep-alive" ], "client-request-id": [ - "e4a48f0a-c371-11e9-aee1-44032c851686" + "e08953a8-af32-11ea-a969-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:34 GMT" + "Mon, 15 Jun 2020 18:06:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:2TcBiFnrIQWV3BCk6wzZlzL14ZM5BYOt9/hl+IfyihA=" + "SharedKey sdktest2:RL5auJN3Z5J4KcQD9AQeXY+CkX4wzWdicXtA1LqF8RE=" ] } }, @@ -6148,44 +6162,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:34 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "1379cd55-e2d2-4b95-b1f7-a8d2937ba403" + "99b6514b-5ccd-4aae-ac5a-1095c898a4ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6197,16 +6211,16 @@ "keep-alive" ], "client-request-id": [ - "e677ae08-c371-11e9-9b32-44032c851686" + "e25be888-af32-11ea-8afc-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:37 GMT" + "Mon, 15 Jun 2020 18:06:06 GMT" ], "Authorization": [ - "SharedKey sdktest2:cFlPgsCv6Z1zk9uR3EGx54hWYAfUIAVeyZlDv9U4vLY=" + "SharedKey sdktest2:WypM755SQLcZM8/b6NAkzt/7JrARpmRVm6xs6unmLPM=" ] } }, @@ -6216,44 +6230,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:37 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "e2db0c84-967b-439c-a4a9-bd7112c6b6fb" + "be211066-33b8-4643-9db4-3b35f9968760" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6265,16 +6279,16 @@ "keep-alive" ], "client-request-id": [ - "e84a1cae-c371-11e9-8048-44032c851686" + "e42dea58-af32-11ea-8a3c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:40 GMT" + "Mon, 15 Jun 2020 18:06:09 GMT" ], "Authorization": [ - "SharedKey sdktest2:eUMDdOBJ701z5jDsRl3OKTr9Lx5ABFCWExnMTAt7up8=" + "SharedKey sdktest2:HlB3z6LId+76m4oyCsaLv+FOIgVW4gDpEEJjpl7U3Ww=" ] } }, @@ -6284,44 +6298,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:40 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "ccc04524-db84-406d-972e-9e99228aaa59" + "9a35c059-c4c7-4355-b827-9f1904e821c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6333,16 +6347,16 @@ "keep-alive" ], "client-request-id": [ - "ea1c46ee-c371-11e9-8268-44032c851686" + "e6005240-af32-11ea-8030-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:43 GMT" + "Mon, 15 Jun 2020 18:06:13 GMT" ], "Authorization": [ - "SharedKey sdktest2:we7/a3isIFKApsLnCbIllEWmjZ2gRksnq9zfDtwkJVY=" + "SharedKey sdktest2:PfqWDHyCvFnQqg8oFek0LRzGQDa9Y3HOJwKN7pT7mAA=" ] } }, @@ -6352,44 +6366,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:43 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "0738a939-3ca9-4e42-8d81-f50dca417b49" + "693941fd-82d7-43cf-813b-5648b09404e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6401,16 +6415,16 @@ "keep-alive" ], "client-request-id": [ - "ebef1988-c371-11e9-a55b-44032c851686" + "e7d368f8-af32-11ea-84f4-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:46 GMT" + "Mon, 15 Jun 2020 18:06:16 GMT" ], "Authorization": [ - "SharedKey sdktest2:HkIIPzsNmyEXS/w2ne6HQjn6Xb6m/nSuAn92GAVw2cY=" + "SharedKey sdktest2:XDakqd9EFGOwQLV0otpq1d484U45EVAhBKHRSPS9EYU=" ] } }, @@ -6420,44 +6434,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:46 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "c8c56492-3800-43a1-b2b7-3e502dad8a8c" + "10692bb8-6734-4f91-aae9-cb6def06c7d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6469,16 +6483,16 @@ "keep-alive" ], "client-request-id": [ - "edc15dc6-c371-11e9-b809-44032c851686" + "e9a62122-af32-11ea-b554-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:49 GMT" + "Mon, 15 Jun 2020 18:06:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:Hfdn/yPCwk/uhZOKAlM53CzH2r2hDidUBp66SucCXhE=" + "SharedKey sdktest2:9jIGoqOlauno+D86QAHc4/SD1EJeRS0goZOdbQez8PM=" ] } }, @@ -6488,44 +6502,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:49 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "c341a0d6-c654-4eb1-9f53-04036bfe66b8" + "1ac047ff-6a5a-4d83-af68-eb7a8c09c5f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6537,16 +6551,16 @@ "keep-alive" ], "client-request-id": [ - "ef945d98-c371-11e9-b2b6-44032c851686" + "eb7d5680-af32-11ea-b4e7-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:52 GMT" + "Mon, 15 Jun 2020 18:06:22 GMT" ], "Authorization": [ - "SharedKey sdktest2:1JM/HfLaOGq4cvkqgQRkBm7NIX0ksrZHDz3PivPW0lo=" + "SharedKey sdktest2:yaUikjgY/xpYAcIXnqxd6sjJz1ajvBVt+/UWo9ytWdc=" ] } }, @@ -6556,44 +6570,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:53 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "59fcf763-f82b-4d83-aaee-ac5ad6e3cf4c" + "be6157f5-a375-4664-90e1-77fee14289d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], "Transfer-Encoding": [ "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6605,16 +6619,16 @@ "keep-alive" ], "client-request-id": [ - "f1672450-c371-11e9-b063-44032c851686" + "ed4f3e36-af32-11ea-b6b2-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:56 GMT" + "Mon, 15 Jun 2020 18:06:25 GMT" ], "Authorization": [ - "SharedKey sdktest2:cq125RybWWMRJfNLUcMX46KtwB93My8nxem4rvH0Wgw=" + "SharedKey sdktest2:RymaxragShj8/7twhFZwLo6WY1lKpaHkZNipSp7u48U=" ] } }, @@ -6624,44 +6638,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:56 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "1e06e582-caa1-4ee5-a815-9498ae7fc446" + "2f701c07-ba86-4e63-96f7-b971461d399f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6673,16 +6687,16 @@ "keep-alive" ], "client-request-id": [ - "f33a9df6-c371-11e9-b0b3-44032c851686" + "ef21c99a-af32-11ea-8e5a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:59 GMT" + "Mon, 15 Jun 2020 18:06:28 GMT" ], "Authorization": [ - "SharedKey sdktest2:OJ1VOG8/H+J9MXg4DHluInpY6WeRygZa9tBHFyQolA8=" + "SharedKey sdktest2:eC0xtHzr8Dh7I9OD+6VtBFACy4Z1O7g9wcQKFFgMb4M=" ] } }, @@ -6692,44 +6706,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:42:59 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "f0bae67d-de0c-4ec6-8381-3bd693c5aeae" + "84b88280-8cc5-45ab-93a5-65049872d0b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6741,16 +6755,16 @@ "keep-alive" ], "client-request-id": [ - "f5117d22-c371-11e9-bf41-44032c851686" + "f0f3ff5c-af32-11ea-a83f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:02 GMT" + "Mon, 15 Jun 2020 18:06:31 GMT" ], "Authorization": [ - "SharedKey sdktest2:KfV0Ryl3d77YVYXjyS6tqiQkMHXln0UZWsYJ79z6NJE=" + "SharedKey sdktest2:c7YW/t3IsuGbi1yivxCZay+3OPMpTWH3a/YiXaik09E=" ] } }, @@ -6760,44 +6774,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:01 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "165a8916-dc36-4988-86d9-c33274820fb8" + "fc49b25e-71df-4e43-96ef-13218fcfc27d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6809,16 +6823,16 @@ "keep-alive" ], "client-request-id": [ - "f6e49c36-c371-11e9-9e67-44032c851686" + "f2c708a4-af32-11ea-940e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:05 GMT" + "Mon, 15 Jun 2020 18:06:34 GMT" ], "Authorization": [ - "SharedKey sdktest2:w4+G0iajCf8AM2Y6eDL0KQ3FTpjQbAuytH+xfr2WOmU=" + "SharedKey sdktest2:86A5senkvA8AUuaFhBxzZNAjW9RC4PqKneQtf0EjRjs=" ] } }, @@ -6828,44 +6842,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:05 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "eff0dc42-fc78-41ea-8414-fd5a01d7baed" + "e1b2322a-fc2d-414e-8bfc-64a0aa454341" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6877,16 +6891,16 @@ "keep-alive" ], "client-request-id": [ - "f8b7cc00-c371-11e9-970b-44032c851686" + "f49a8fec-af32-11ea-9a72-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:08 GMT" + "Mon, 15 Jun 2020 18:06:37 GMT" ], "Authorization": [ - "SharedKey sdktest2:deswNwPf5Iqwtnkmu4DPpjsVD3MYy9eEysIDYNGUSMY=" + "SharedKey sdktest2:XZ7N8bDX25AVyiNPcmVD1qiUgC3FcnMggh0sZco875A=" ] } }, @@ -6896,44 +6910,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:07 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "ee0a7c77-b789-480b-b01e-01ccb469c48f" + "e38ff7d4-638d-45b0-99b5-46bb01e35305" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6945,16 +6959,16 @@ "keep-alive" ], "client-request-id": [ - "fa8a304a-c371-11e9-8fdb-44032c851686" + "f66d7846-af32-11ea-9234-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:11 GMT" + "Mon, 15 Jun 2020 18:06:40 GMT" ], "Authorization": [ - "SharedKey sdktest2:A5gcpOL45VaxZo0kTYTwzPyPsnUfQiSEd/X1/8lIPtE=" + "SharedKey sdktest2:6GNmrk4JghR106qjiETjvN7ybGG8/BEKlfhpO9Bh8ig=" ] } }, @@ -6964,44 +6978,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:10 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "2b44011f-5547-4eb8-a88c-17bb67c4d72a" + "1a33e1b9-19cd-408f-8ed8-9dc7bd281cf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7013,16 +7027,16 @@ "keep-alive" ], "client-request-id": [ - "fc5d991c-c371-11e9-940e-44032c851686" + "f83f9f7a-af32-11ea-bd31-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:14 GMT" + "Mon, 15 Jun 2020 18:06:43 GMT" ], "Authorization": [ - "SharedKey sdktest2:LDlEHWCoIUL7cV16//NzDzUadkoPhV9suleSPV5Qo2E=" + "SharedKey sdktest2:8Ekf+sc8p2gd+r8f5FMRnybvfthncs5Fm0LhWwstYBU=" ] } }, @@ -7032,44 +7046,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:13 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "0a083b2f-c4ea-4857-b63e-3f0fc1d2b878" + "3defc251-2859-4d56-8f82-28b4363ebb14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7081,16 +7095,16 @@ "keep-alive" ], "client-request-id": [ - "fe3075b4-c371-11e9-8c68-44032c851686" + "fa1371e4-af32-11ea-902d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:17 GMT" + "Mon, 15 Jun 2020 18:06:46 GMT" ], "Authorization": [ - "SharedKey sdktest2:MiV6TED3WJsA1bSI4ILvaZ6b5CURXbFIUYrlTeYzz2I=" + "SharedKey sdktest2:ZgsOLWFb/Y6RdZZTaRKptOg0l0HX29mPEShHZ4mvOeY=" ] } }, @@ -7100,44 +7114,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:16 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "0ede8f38-087c-4f09-bfd0-d22a9226c3d2" + "a8e69b7b-4688-4aba-8d27-19d60f2d21b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7149,16 +7163,16 @@ "keep-alive" ], "client-request-id": [ - "0002f8ec-c372-11e9-9bc6-44032c851686" + "fbe58fc6-af32-11ea-a1b5-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:20 GMT" + "Mon, 15 Jun 2020 18:06:49 GMT" ], "Authorization": [ - "SharedKey sdktest2:A0IRJdHRCA9PlG5r+hjl1BWEjxrudg1SPLlERpTf3po=" + "SharedKey sdktest2:x80viQrRmerxjAe7TUIBztNM64LcYSeEd2eRkvTX81g=" ] } }, @@ -7168,44 +7182,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:20 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "100b2c6b-7136-4b53-aade-ee5f621a6a90" + "730ba84d-82cf-41d2-a645-f6139c782c9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7217,16 +7231,16 @@ "keep-alive" ], "client-request-id": [ - "01d654fa-c372-11e9-b7f1-44032c851686" + "fdb7d590-af32-11ea-ba75-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:23 GMT" + "Mon, 15 Jun 2020 18:06:52 GMT" ], "Authorization": [ - "SharedKey sdktest2:6ZcO/H5QTo0CKUOphAGD1KA05AE2B6Px8QBbT/uTp3A=" + "SharedKey sdktest2:XszfkN5LNNzV4NdjrAPi297HZ4AuMzFd4aFTfpOAZ3M=" ] } }, @@ -7236,44 +7250,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:22 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "ed4ae2d1-93d2-451d-af62-4de9837a532e" + "f0336bf6-136c-4a10-93b2-b7d1e2acbe49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7285,16 +7299,16 @@ "keep-alive" ], "client-request-id": [ - "03a92858-c372-11e9-ad53-44032c851686" + "ff8a0162-af32-11ea-9a25-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:26 GMT" + "Mon, 15 Jun 2020 18:06:55 GMT" ], "Authorization": [ - "SharedKey sdktest2:anHrO7CpfrRhBS59HfD89cGFFRDgMegNTmhTmVkfI68=" + "SharedKey sdktest2:ZFz+64K2bvFc/D9RRsJlawxbjmjlFefbMLrxwjtc9TI=" ] } }, @@ -7304,44 +7318,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:25 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "647f2d86-17cc-4e84-8052-c23938111b67" + "589a3866-7c29-412b-9b45-c3014f75796b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7353,16 +7367,16 @@ "keep-alive" ], "client-request-id": [ - "057bde12-c372-11e9-a7bf-44032c851686" + "015bfada-af33-11ea-84e7-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:29 GMT" + "Mon, 15 Jun 2020 18:06:58 GMT" ], "Authorization": [ - "SharedKey sdktest2:43Tx8vGzumrFvGvjMm+uy9KAEGVd3uij1n7FhoWRsYs=" + "SharedKey sdktest2:yete5uKd3hfNtLxxDI6yOAgT0ZRn1q80j2181eV5rMY=" ] } }, @@ -7372,44 +7386,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:29 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "95c63292-9a3e-4ceb-804f-2999166b7f90" + "8e0d839b-90ac-42b8-9d05-8a028f4bf2cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:06:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7421,16 +7435,16 @@ "keep-alive" ], "client-request-id": [ - "074e515e-c372-11e9-bbf4-44032c851686" + "032e2710-af33-11ea-8de6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:32 GMT" + "Mon, 15 Jun 2020 18:07:01 GMT" ], "Authorization": [ - "SharedKey sdktest2:2swh41u8OCgVnZDv0Gj6O8pNEpl0rr7BZVzdxef4GaU=" + "SharedKey sdktest2:oqhMN4pP9BKiB7tMuD3li3hUru9JfYbxzb6Y21LuhPc=" ] } }, @@ -7440,44 +7454,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:32 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "27e2d0b4-acf1-4058-bd34-827961039d79" + "92cd694c-3eea-4375-9376-3f4b9d7d349f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7489,16 +7503,16 @@ "keep-alive" ], "client-request-id": [ - "092118f6-c372-11e9-bc3b-44032c851686" + "05007324-af33-11ea-bdad-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:35 GMT" + "Mon, 15 Jun 2020 18:07:05 GMT" ], "Authorization": [ - "SharedKey sdktest2:3/5JG2BYPUfPhILvOv7uRm+jNFGesppGVi5pa2REH8g=" + "SharedKey sdktest2:V/dUQ12NRm2RXyQIHbd1Ed4dqjVt7e26cHNkcR92Ik4=" ] } }, @@ -7508,44 +7522,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:35 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "b41df8cc-2aa7-4239-8f19-432b08418d3b" + "d4e8a540-fc21-47cd-b3a4-6c0dc749f267" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7557,16 +7571,16 @@ "keep-alive" ], "client-request-id": [ - "0af451ee-c372-11e9-af1e-44032c851686" + "06d29d28-af33-11ea-acfd-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:38 GMT" + "Mon, 15 Jun 2020 18:07:08 GMT" ], "Authorization": [ - "SharedKey sdktest2:aWO1kxKH8KpJx05kbnptjFm0dzRggkVX387YOOICJsc=" + "SharedKey sdktest2:VH5C+MOSiAEZq7uo1UFV9ltorxLyClEjhsxZsO22XCg=" ] } }, @@ -7576,44 +7590,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:38 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "956ea9cc-439b-4941-bb13-36b760afad06" + "4724baa5-b34b-4016-868b-7e768499d30b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7625,16 +7639,16 @@ "keep-alive" ], "client-request-id": [ - "0cc69070-c372-11e9-9710-44032c851686" + "08a5244a-af33-11ea-bc82-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:41 GMT" + "Mon, 15 Jun 2020 18:07:11 GMT" ], "Authorization": [ - "SharedKey sdktest2:Lkr1pQLJEVtiPEmdcsX0q8gK0qS9oUw6Vt2O7GjPWeo=" + "SharedKey sdktest2:1n8Yl5w4Hf5Qm2pQSlWToq3xcjrS92ZrzkWG+QJHXy8=" ] } }, @@ -7644,44 +7658,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:41 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "2bf64980-c5ad-4985-95b6-e44c5ffac385" + "75ad86bc-cdfe-452d-944a-bbfbff140565" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7693,16 +7707,16 @@ "keep-alive" ], "client-request-id": [ - "0e9916c0-c372-11e9-a288-44032c851686" + "0a7823ec-af33-11ea-b9f6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:45 GMT" + "Mon, 15 Jun 2020 18:07:14 GMT" ], "Authorization": [ - "SharedKey sdktest2:5t9mY1x+JCtteK2lWfBQEx+6uDLVwuQxp0a1SQsKjY8=" + "SharedKey sdktest2:OSJPjruGjRAOAmLhpZ+aR2lPaWnxiY/io5rbsKf/6as=" ] } }, @@ -7712,44 +7726,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:44 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "185daa7e-e4ff-439e-b1a5-0f3719673f46" + "e03e1fdb-454d-4d1c-b14c-0b1f05cc6265" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7761,16 +7775,16 @@ "keep-alive" ], "client-request-id": [ - "106db0cc-c372-11e9-a6d7-44032c851686" + "0c4ba458-af33-11ea-b72a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:48 GMT" + "Mon, 15 Jun 2020 18:07:17 GMT" ], "Authorization": [ - "SharedKey sdktest2:kZ3/kI3PK+0B8N3EhkbbMI/0lWQz0LUlGIp8JKL69hA=" + "SharedKey sdktest2:BqSn2OLr1Wrigwjt+4At7lh3PeXKMoBdrQq4DB72m84=" ] } }, @@ -7780,44 +7794,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:48 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "59355773-648e-4506-bc30-5cef790f6289" + "45c283ef-0d4f-487f-84c1-281c3cbbf4c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7829,16 +7843,16 @@ "keep-alive" ], "client-request-id": [ - "1240f50c-c372-11e9-9d81-44032c851686" + "0e1e00dc-af33-11ea-8b03-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:51 GMT" + "Mon, 15 Jun 2020 18:07:20 GMT" ], "Authorization": [ - "SharedKey sdktest2:9XudOJxRe/5xKato7GWEhlN25a8IXxJFucvBDgfJliA=" + "SharedKey sdktest2:2E3MkZk2amO9BXa+mA4wA0obYNFLC5ypdBc5SmXe4Sk=" ] } }, @@ -7848,44 +7862,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:50 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "0cabbac9-aa98-4ffc-9a39-4c81d3b4fdf5" + "3f1ead5d-109c-46d7-ae55-51453ebde45d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7897,16 +7911,16 @@ "keep-alive" ], "client-request-id": [ - "141331fa-c372-11e9-9fbd-44032c851686" + "0ff0bab8-af33-11ea-9ebd-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:54 GMT" + "Mon, 15 Jun 2020 18:07:23 GMT" ], "Authorization": [ - "SharedKey sdktest2:TghPHMFKOq2juoGk+h4Ppl3LwZ2b4yYtEocD7J4LDnE=" + "SharedKey sdktest2:v4w4vkjIqozi5MugtxL2p6BS1p+ON1dubAm/IhPaaEA=" ] } }, @@ -7916,44 +7930,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:53 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "0aded115-b4d6-4501-86d6-c883b783a4ff" + "ca95a68d-5fce-4cb2-9da9-fc1b2d99adbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7965,16 +7979,16 @@ "keep-alive" ], "client-request-id": [ - "15e69224-c372-11e9-9db9-44032c851686" + "11c2a3f0-af33-11ea-b2e5-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:57 GMT" + "Mon, 15 Jun 2020 18:07:26 GMT" ], "Authorization": [ - "SharedKey sdktest2:zSRaxLFDrdwST//Qk9efueZBuz3rR7IGRQWhsGy7+jc=" + "SharedKey sdktest2:N9g0uzAdWoFjcq4vDitd3SrNYbiYwBwkkxALSVzSAaI=" ] } }, @@ -7984,44 +7998,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:43:56 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "7e1ea6dc-15a2-4454-890a-b7fd25cb792c" + "e2a2dfd6-a174-4184-b675-8eebb05bad8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8033,16 +8047,16 @@ "keep-alive" ], "client-request-id": [ - "17bdfecc-c372-11e9-b290-44032c851686" + "1397a8a4-af33-11ea-825d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:00 GMT" + "Mon, 15 Jun 2020 18:07:29 GMT" ], "Authorization": [ - "SharedKey sdktest2:s6ZRmzJD7IMeZRsmuU6OG2Xr+orU0B/dtMFoHi0Un50=" + "SharedKey sdktest2:XbPz7gLd8ksZXRl5/hnQVBtAqaKabYRl0v0rd4kEDN4=" ] } }, @@ -8052,44 +8066,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:00 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "de879a37-4872-4470-9588-a82935ccddf1" + "e9550ee4-64c6-4ceb-86d3-116a7eef5ac5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8101,16 +8115,16 @@ "keep-alive" ], "client-request-id": [ - "199081c6-c372-11e9-9f92-44032c851686" + "1569cefe-af33-11ea-a5eb-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:03 GMT" + "Mon, 15 Jun 2020 18:07:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:p84B27l9Y254IxDSWLlQ1H6ITDvjvM/uHCkx34FM0Hk=" + "SharedKey sdktest2:BfdWBIGZFxkA8iknJN3+SeEUfkuUoSvCL+/rwaajm4c=" ] } }, @@ -8120,44 +8134,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:03 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "c6b1096b-b29b-44ca-8d59-7445640165ad" + "a1c6b068-efda-4981-8014-3235d63ca9fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8169,16 +8183,16 @@ "keep-alive" ], "client-request-id": [ - "1b63f190-c372-11e9-bc6c-44032c851686" + "173c8c12-af33-11ea-ba9f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:06 GMT" + "Mon, 15 Jun 2020 18:07:35 GMT" ], "Authorization": [ - "SharedKey sdktest2:76qFMzDtMbnjeLaFnNq/9aHs615SjdFn9CUANtSPfpA=" + "SharedKey sdktest2:nEMIo/9Bq8oUQXS3jwQpTnE38oHumq7prowG2Wm4sLw=" ] } }, @@ -8188,44 +8202,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:05 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "6c0dc042-2079-487a-8701-462d1d80dc1f" + "ab0025f5-e656-493e-8012-4edeee61a309" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8237,16 +8251,16 @@ "keep-alive" ], "client-request-id": [ - "1d35e510-c372-11e9-b346-44032c851686" + "190e6d48-af33-11ea-886d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:09 GMT" + "Mon, 15 Jun 2020 18:07:38 GMT" ], "Authorization": [ - "SharedKey sdktest2:UkG9ARtwQmP3qx9+lGNnfNXuCOVh/UIAYzycPnCYeSo=" + "SharedKey sdktest2:iKo9YhqJs1w3DZ61HzKne2GJX5NJN2nZJLZOEJwR2+I=" ] } }, @@ -8256,44 +8270,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:09 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "0bd89020-51f2-410c-871b-a6b90012c000" + "e9caabce-833a-4cb3-ab53-28e08ab9a765" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8305,16 +8319,16 @@ "keep-alive" ], "client-request-id": [ - "1f080276-c372-11e9-a864-44032c851686" + "1ae072cc-af33-11ea-8749-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:12 GMT" + "Mon, 15 Jun 2020 18:07:41 GMT" ], "Authorization": [ - "SharedKey sdktest2:pMXET6AZ26rD7hR6SYbzzUD/VIY8PkiyOSmKojdKfDA=" + "SharedKey sdktest2:OZL3Kf1XyZcFDLf3YUkEYXa9hzxORu8zw3CXDBEpXEw=" ] } }, @@ -8324,44 +8338,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:11 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "175ec19a-31df-4ff5-8c0e-c9128fe1e2da" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" + "f659bc91-966b-4b55-8d13-e8f00c6bae3c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 15 Jun 2020 18:07:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8373,16 +8387,16 @@ "keep-alive" ], "client-request-id": [ - "20db7c8c-c372-11e9-a64d-44032c851686" + "1cb2c386-af33-11ea-9a28-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:15 GMT" + "Mon, 15 Jun 2020 18:07:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:BdUHaC1rvH8Grk8Dy/yePosRiM3Oy9tTtHtsya02QM4=" + "SharedKey sdktest2:u69nWiXg8FOaeWLkIUwSfJ0ye7yeF/RC0eclI25MCmI=" ] } }, @@ -8392,44 +8406,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:15 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "e87104e8-42fd-437a-bcc4-b0b1e339368d" + "1e6b905f-20e9-447e-8b3b-7d7ef15269a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8441,16 +8455,16 @@ "keep-alive" ], "client-request-id": [ - "22af0a52-c372-11e9-9b9c-44032c851686" + "1e85c51a-af33-11ea-9bc9-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:18 GMT" + "Mon, 15 Jun 2020 18:07:47 GMT" ], "Authorization": [ - "SharedKey sdktest2:e3ycw+PeF3KgtdFitwGde3LFK+7eiAO8tUlKTJNvxaE=" + "SharedKey sdktest2:libZy3Wge6AxRzSi8BynpMFe3zvWXY+ElKcjK7Bk2lc=" ] } }, @@ -8460,44 +8474,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:18 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "0d3fd65b-1c07-47f6-95c4-efb48b2bcb1b" + "eacc7966-426b-47ab-bdd6-7a71994e9e3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8509,16 +8523,16 @@ "keep-alive" ], "client-request-id": [ - "2481aa1c-c372-11e9-9d21-44032c851686" + "2059e122-af33-11ea-989f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:21 GMT" + "Mon, 15 Jun 2020 18:07:50 GMT" ], "Authorization": [ - "SharedKey sdktest2:IcQDc1P9G1Q5kXdiilOyEfuvTTO4i8aH58WljRw98qU=" + "SharedKey sdktest2:4V3ABIIKULj4SUXBrWoTwIY+SK4Sgm+1fIRWNG/4Uo4=" ] } }, @@ -8528,44 +8542,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:21 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "9f18a63c-33de-40b9-9708-fa4fb04ac92c" + "8959a9ae-c878-4671-9faf-9262fdc3f304" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8577,16 +8591,16 @@ "keep-alive" ], "client-request-id": [ - "26542408-c372-11e9-8794-44032c851686" + "222bed10-af33-11ea-b800-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:24 GMT" + "Mon, 15 Jun 2020 18:07:53 GMT" ], "Authorization": [ - "SharedKey sdktest2:ovPEZPTLdNSV4zgo82RzUPdBlr31+RSCApNDQerzB7s=" + "SharedKey sdktest2:bGIN4lm56GSyUfnESv6gC4xkhDfRPdeLwj9ioktlWBo=" ] } }, @@ -8596,44 +8610,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:24 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "98577927-d844-46c2-9b8b-6855ee1cafe3" + "8e451698-4ee5-4104-bcd0-8dfd31a7fde5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8645,16 +8659,16 @@ "keep-alive" ], "client-request-id": [ - "28267dd4-c372-11e9-9f41-44032c851686" + "23fe565a-af33-11ea-b153-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:27 GMT" + "Mon, 15 Jun 2020 18:07:57 GMT" ], "Authorization": [ - "SharedKey sdktest2:ED8tzvugMXqaK9XURD1uFMXtV4U9sgHLBtUh32z1Dvc=" + "SharedKey sdktest2:ze++EBPIVRF/v+jw+SqLUbAm1W285KxuLIare4t5vt8=" ] } }, @@ -8664,44 +8678,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:27 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "9363001d-6450-4d30-929e-538cedf7ce3a" + "141d1ddb-c01a-49c4-be14-fb01a331c5f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:05:22.0941002Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8713,16 +8727,16 @@ "keep-alive" ], "client-request-id": [ - "29f8974c-c372-11e9-af48-44032c851686" + "25d02ee2-af33-11ea-8ac8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:30 GMT" + "Mon, 15 Jun 2020 18:08:00 GMT" ], "Authorization": [ - "SharedKey sdktest2:0k5sxVHU+GypTf04ZBW9qSx5098jDY9Xi/Rw6yzjt1k=" + "SharedKey sdktest2:u6Ah/CUPYPIORSzmVkVzChzuBkTvCu6CN0ZDG8ImWCk=" ] } }, @@ -8732,44 +8746,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:30 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "5a0145fc-2a95-458e-8841-d2ca5a239e88" + "421d2e46-a7a6-41f4-9cef-0c8b144683d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:07:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:07:57.837066Z\",\"lastBootTime\":\"2020-06-15T18:07:57.195247Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"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.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-06-15T18:07:57.195247Z\",\"version\":\"1.8.2\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0&timeout=30", + "body": "{\"id\": \"ncj-windows-2012-r2\", \"poolInfo\": {\"poolId\": \"ncj-windows-2012-r2\"}}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8780,64 +8794,79 @@ "Connection": [ "keep-alive" ], + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDE4MCwibmJmIjoxNTkyMjQ0MTgwLCJleHAiOjE1OTIzMzA4ODAsImFpbyI6IjQyZGdZTGpMS25wRzV2dnMxb1BYYW4xbjd2aDVCQUE9IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiIwOGxUWlNDczVFS2ktVWxGRFVZQkFBIiwidmVyIjoiMS4wIn0.U87QFNiFEIj5h8NnoVaQKTLaqKwIXFVNZMEyxUhZZnTBSwqqewU-GExB95ioB9Ezgu_v-AlZdjIpri2RF0SVujavSCV35vOE9i5LiTeXyNLGlsC6Ph8f_MjZE3MZU96YM6nO0rxOuPz_NZbGI_DHIg9X2VZs3Saf3Ul5uO6wztHPLLoIPJekvUTG73xn3Hla8aJowlInehxIh_6wNH5z-zNBH7x9OdNZempeKzvw_ixDHEsXD5IwUipnGASH4T2ECbaxH2-d2qP-QCjA3_DcfGWuO5NnBuMSyZTMvoCu4WPdgNYlAUlQqrobPIz_vNy3YEofbLvMrwUSEqcOzlrOsw" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "2bcb65d8-c372-11e9-b273-44032c851686" + "26048f40-af33-11ea-919c-44032c851686" ], "accept-language": [ "en-US" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:33 GMT" + "return-client-request-id": [ + "false" ], - "Authorization": [ - "SharedKey sdktest2:6J7JmPDTeHUCTVu7JJPCulYAuudpJFv2tEXpU1MICXE=" + "Content-Length": [ + "76" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 201, + "message": "Created" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:33 GMT" + "request-id": [ + "358208d0-0240-42a6-ad31-21de771fde06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "22f54385-26f6-40b3-aa2d-7c7d04d13ab3" + "ETag": [ + "0x8D81157175CF39E" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:08:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:08:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/addtaskcollection?api-version=2020-03-01.11.0", + "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"cmd /c echo | set /p dummy=test\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8848,17 +8877,20 @@ "Connection": [ "keep-alive" ], + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDIwMiwibmJmIjoxNTkyMjQ0MjAyLCJleHAiOjE1OTIzMzA5MDIsImFpbyI6IjQyZGdZRGl3OE55U21pKzZGMUppZnliTDNybDBGQUE9IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJLN3VrX0hPX09FcTU1NXVpYTUwQkFBIiwidmVyIjoiMS4wIn0.VW9g_ZePzvX-jWqylRqiAWIj-8rVBICh6YNXYvpaUGZ6G7s8NfaQAknxSfpUYky7eDQeHIZa9ck4HfsuyhrktPqSpu56WUGPNQQIYB1xrxglCQzzUV6HA4wIDXydQRY6kj9e4jc40ikpdBeJaHaDluStbSunIo3sErxYiKvWY_aUFKYgWFGkE8mCqhERYwBWQneKySYIiL1G_J6AuBxlaZVJrFWJiSUskPJbYyWt_9HATGa3mrrkR5-WxMWpcSOtwbFoJmi72_WQObB7lL56ROlEcOFz90BydWW4ZI3PPkQCUzh51HMpM9uqDwLSGCV11RX18Wgp6xr6MaD9IBEpZg" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "2d9edc6e-c372-11e9-894b-44032c851686" + "33532834-af33-11ea-85f4-44032c851686" ], "accept-language": [ "en-US" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:37 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:hsFSDU/94pWmsN6Keg2CKpQirP2laesTYB6xzPX8yTE=" + "Content-Length": [ + "482" ] } }, @@ -8868,44 +8900,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:37 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "7ba7b751-fe55-411f-8cbc-5e99b648a5e8" + "759ae424-a0bf-47f0-b610-901b31d53335" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:08:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D811572471E083\",\"lastModified\":\"2020-06-15T18:08:44.4194947Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\"\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8917,16 +8949,16 @@ "keep-alive" ], "client-request-id": [ - "2f718f36-c372-11e9-818f-44032c851686" + "406e0aae-af33-11ea-a744-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:40 GMT" + "Mon, 15 Jun 2020 18:08:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:D0olf8xEQUQGNjZy1ND64MVgHogC/a44N9ahKfYWUos=" + "SharedKey sdktest2:kAleCItjnAikAL2htdmhJf13pAZpLg+w6nKJ/m5pRis=" ] } }, @@ -8936,44 +8968,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:40 GMT" + "request-id": [ + "c50de2e5-ac68-447f-b746-e1a18bb95c32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "49fcd5e7-5f25-4195-ac9e-c8e2686bf616" + "ETag": [ + "0x8D81157175CF39E" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:08:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:08:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2\",\"eTag\":\"0x8D81157175CF39E\",\"lastModified\":\"2020-06-15T18:08:22.4719774Z\",\"creationTime\":\"2020-06-15T18:08:22.4561131Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:08:22.4719774Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-windows-2012-r2\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:08:22.4719774Z\",\"poolId\":\"ncj-windows-2012-r2\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8985,16 +9023,16 @@ "keep-alive" ], "client-request-id": [ - "314494e6-c372-11e9-97b7-44032c851686" + "40784346-af33-11ea-acc2-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:43 GMT" + "Mon, 15 Jun 2020 18:08:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:w35GmR8i0d25XonEMb5qzQXKgc7YCp6p7BSIOfw32n4=" + "SharedKey sdktest2:q148BWNqqhtgQXsOEsUAvS9vwNEVeNVrLH5GqIE84eg=" ] } }, @@ -9004,44 +9042,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:42 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "cd6fe55f-c903-40ea-8611-b119d4de239d" + "1f730050-5cd2-42fa-b923-2fe39ce23e58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:08:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"eTag\":\"0x8D811572471E083\",\"creationTime\":\"2020-06-15T18:08:44.4194947Z\",\"lastModified\":\"2020-06-15T18:08:44.4194947Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:08:44.4194947Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9053,16 +9091,16 @@ "keep-alive" ], "client-request-id": [ - "3316fba2-c372-11e9-9735-44032c851686" + "424b5c18-af33-11ea-8b31-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:46 GMT" + "Mon, 15 Jun 2020 18:08:47 GMT" ], "Authorization": [ - "SharedKey sdktest2:qv7VwP4MkjXCyv6NXCOf4xbRRQYSBRrNlx9rJ5FrWKA=" + "SharedKey sdktest2:8pvmq2CIplhH2WFXN+TOCHkWPI6El1iu6NBR6JUEtqM=" ] } }, @@ -9072,44 +9110,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:45 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "82aa06ab-98df-4869-85ee-dac2a5298275" + "93eeaa9e-e0cc-41d1-9f51-fa267d7631dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:08:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:41:45.3034248Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"eTag\":\"0x8D811572471E083\",\"creationTime\":\"2020-06-15T18:08:44.4194947Z\",\"lastModified\":\"2020-06-15T18:08:44.4194947Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:08:45.822361Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:08:45.132338Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:08:45.194856Z\",\"endTime\":\"2020-06-15T18:08:45.822361Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d/files/workitems/ncj-windows-2012-r2/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9121,16 +9159,16 @@ "keep-alive" ], "client-request-id": [ - "34ea90d4-c372-11e9-a91e-44032c851686" + "4255bdac-af33-11ea-b874-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:49 GMT" + "Mon, 15 Jun 2020 18:08:47 GMT" ], "Authorization": [ - "SharedKey sdktest2:1HgGOzTvkHP8UP1TWcx8R0jL6xK3zIPmhV3TgI9Q0Sk=" + "SharedKey sdktest2:+avIROC0ASNiKruI9NzelN705eZYaqRgiGQ2yjObRVA=" ] } }, @@ -9140,127 +9178,103 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:49 GMT" + "request-id": [ + "e69bfec2-3fb8-465c-8c44-59ccb976669d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "ed7fb884-05be-43cb-bb46-1ac1b6756194" + "ETag": [ + "0x8D811572471E083" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:08:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:08:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:44:48.0148Z\",\"lastBootTime\":\"2019-08-20T17:44:47.433702Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"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.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-20T17:44:47.433702Z\",\"version\":\"1.6.4\"\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"eTag\":\"0x8D811572471E083\",\"creationTime\":\"2020-06-15T18:08:44.4194947Z\",\"lastModified\":\"2020-06-15T18:08:44.4194947Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:08:45.822361Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:08:45.132338Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2020-06-15T18%3A01%3A43Z&se=2020-06-16T18%3A01%3A43Z&sp=rw&sv=2017-07-29&sr=c&sig=l/FN2Z0x0xmXPeNBzdLgdgRBY4zcBeULzi%2BZnKsOXVo%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:08:45.194856Z\",\"endTime\":\"2020-06-15T18:08:45.822361Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d/files/workitems/ncj-windows-2012-r2/job-1/myTask\"\r\n }\r\n}" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0&timeout=30", - "body": "{\"id\": \"ncj-windows-2012-r2\", \"poolInfo\": {\"poolId\": \"ncj-windows-2012-r2\"}}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer?restype=container&comp=list", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "client-request-id": [ - "3518a5a6-c372-11e9-b6fb-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "425eba4c-af33-11ea-80bb-44032c851686" ], - "return-client-request-id": [ - "false" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], - "Content-Length": [ - "76" + "Authorization": [ + "SharedKey sdkteststore2:9Hg0nA1Of7JBY6pNdhlyJ8V535DDblIazRRYgNjNXuM=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], "Date": [ - "Tue, 20 Aug 2019 17:44:49 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D7259619F1E38A" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:44:50 GMT" + "Mon, 15 Jun 2020 18:09:02 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "Content-Type": [ + "application/xml" ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "6f413b44-c0e2-41ba-8426-851dcaf3d109" - ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufefffileuploaderr.txtMon, 15 Jun 2020 18:08:45 GMT0x8D81157253D439A0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtMon, 15 Jun 2020 18:08:45 GMT0x8D8115725402A53519application/octet-streamdDUW+vOV25T56JnsdoBaAg==BlockBlobHottrueunlockedavailabletruestderr.txtMon, 15 Jun 2020 18:08:45 GMT0x8D811572541B1410application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtMon, 15 Jun 2020 18:08:45 GMT0x8D81157254311084application/octet-streamCY9rzUYh03PK3k6DJie09g==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/addtaskcollection?api-version=2019-08-01.10.0", - "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"cmd /c echo | set /p dummy=test\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", + "method": "DELETE", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2?api-version=2020-03-01.11.0", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9271,88 +9285,79 @@ "Connection": [ "keep-alive" ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], "client-request-id": [ - "35c02a80-c372-11e9-8b22-44032c851686" + "4baeeeba-af33-11ea-aa48-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "480" + "0" + ], + "ocp-date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:9ET8YjirDqnycyIXvL3dLyZiY4VSJYnf8x/j+0zBJew=" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:50 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "f4364c5e-0770-4b56-977b-fbf898085125" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" + "19d8fc81-186b-4294-95ca-8bdb07c01529" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D725961A19321F\",\"lastModified\":\"2019-08-20T17:44:50.9395487Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\"\r\n }\r\n ]\r\n}" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output?restype=container&comp=list", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "35f88f76-c372-11e9-8423-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "4bb73bc6-af33-11ea-82ed-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:51 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:c3SjP2Z5TDuoAdLqkK4VgaV/UEbwHoTfp8M+/KtfBuQ=" + "SharedKey sdkteststore2:hLdbCNUEg3jl/0rc3aJmUJh1SLmCLgog59I5hSPDOI8=" ] } }, @@ -9362,260 +9367,203 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:44:50 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D7259619F1E38A" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:44:50 GMT" + "Mon, 15 Jun 2020 18:09:02 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "cdc71dc7-4c99-4967-9c34-961ced37c9bd" + "Content-Type": [ + "application/xml" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2\",\"eTag\":\"0x8D7259619F1E38A\",\"lastModified\":\"2019-08-20T17:44:50.6819466Z\",\"creationTime\":\"2019-08-20T17:44:50.6418336Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:44:50.6819466Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-windows-2012-r2\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:44:50.6819466Z\",\"poolId\":\"ncj-windows-2012-r2\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "string": "\ufefffileuploaderr.txtThu, 09 Apr 2020 22:21:56 GMT0x8D7DCD469D425570application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtThu, 09 Apr 2020 22:21:56 GMT0x8D7DCD469D5AC37525application/octet-streamkwvDYPNahnsRoWEXArlbbA==BlockBlobHottrueunlockedavailabletruestderr.txtThu, 09 Apr 2020 22:21:56 GMT0x8D7DCD469D7814D0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtThu, 09 Apr 2020 22:21:56 GMT0x8D7DCD469D92F504application/octet-streamCY9rzUYh03PK3k6DJie09g==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output/fileuploaderr.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "3601b72e-c372-11e9-bd4a-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "4bc2bc64-af33-11ea-80cd-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:51 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:09u9b/SvpMgiDeZ82VI2GtFwOVJ1mDtYF3+Tjtr1OWk=" + "SharedKey sdkteststore2:4iGMupt2NqsdPlf7q06pZjmuZqaJFIe2l0yc7BO/WH8=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:44:50 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "14bc663a-faaa-4f17-a258-feeaf6ee0d65" + "Mon, 15 Jun 2020 18:09:02 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"eTag\":\"0x8D725961A19321F\",\"creationTime\":\"2019-08-20T17:44:50.9395487Z\",\"lastModified\":\"2019-08-20T17:44:50.9395487Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:44:50.9395487Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output/fileuploadout.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "37d61308-c372-11e9-be6c-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "4bca1db0-af33-11ea-91ad-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:54 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:U+uIjZHLFPXiaQX+7zZ8qLhKX4I1mgueAHi7HVdX0UA=" + "SharedKey sdkteststore2:KdQt3pI2jRfhygLKFGh/e8pEPhMW8NuG8rOXmpmaZ78=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:44:54 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "a2446cd3-6853-4a16-8c22-2c94a2754ed0" + "Mon, 15 Jun 2020 18:09:02 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"eTag\":\"0x8D725961A19321F\",\"creationTime\":\"2019-08-20T17:44:50.9395487Z\",\"lastModified\":\"2019-08-20T17:44:50.9395487Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:44:53.967174Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:44:53.042985Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:44:53.042985Z\",\"endTime\":\"2019-08-20T17:44:53.967174Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d/files/workitems/ncj-windows-2012-r2/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output/stderr.txt", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "client-request-id": [ - "37dfa68c-c372-11e9-be46-44032c851686" + "x-ms-version": [ + "2017-07-29" ], - "accept-language": [ - "en-US" + "x-ms-client-request-id": [ + "4bd17b4c-af33-11ea-b257-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:54 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:/lu9QFjAcSU+lFPy0P3jVesFnmo9JrkhN3MnZO2agpo=" + "SharedKey sdkteststore2:1z3PDMAMn77LPpbnevvSBhmaEuZfGZw9dNiUkiUY8U0=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:44:54 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725961A19321F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:44:50 GMT" + "Mon, 15 Jun 2020 18:09:02 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "c81c4b07-4d0d-4704-9e34-c7f0300fe57e" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-delete-type-permanent": [ + "true" ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"eTag\":\"0x8D725961A19321F\",\"creationTime\":\"2019-08-20T17:44:50.9395487Z\",\"lastModified\":\"2019-08-20T17:44:50.9395487Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:44:53.967174Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:44:53.042985Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/aaatestcontainer?st=2019-08-20T17%3A39%3A08Z&se=2019-08-21T17%3A39%3A08Z&sp=rw&sv=2017-07-29&sr=c&sig=6MqdvD/tVrcMqBh/xoltuDEmtGg79s3sE1V3lcoFaoM%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:44:53.042985Z\",\"endTime\":\"2019-08-20T17:44:53.967174Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d/files/workitems/ncj-windows-2012-r2/job-1/myTask\"\r\n }\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/aaatestcontainer?restype=container&comp=list", + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output/stdout.txt", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -9624,51 +9572,54 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "37e93302-c372-11e9-9ff3-44032c851686" + "4bd8cf2e-af33-11ea-8972-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:07 GMT" + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:vFjgezCgXYwB9gBneM83XvFTiAcR6wfhkLB4D3acIwA=" + "SharedKey sdkteststore2:PSEnQddQ7I5UWqsBh9lFhEoJh/4WQoeOhHMfdf7FHYY=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:09:02 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Content-Length": [ + "0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:07 GMT" + "x-ms-delete-type-permanent": [ + "true" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufefffileuploaderr.txtTue, 20 Aug 2019 17:44:53 GMT0x8D725961BCE810E0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtTue, 20 Aug 2019 17:44:53 GMT0x8D725961BDE1438519application/octet-streamaWSSlhRJYQiJLliho4L66A==BlockBlobHottrueunlockedavailabletruestderr.txtTue, 20 Aug 2019 17:44:53 GMT0x8D725961BDFC2360application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtTue, 20 Aug 2019 17:44:53 GMT0x8D725961BE122054application/octet-streamCY9rzUYh03PK3k6DJie09g==BlockBlobHottrueunlockedavailabletrue" + "string": "" } } }, { "request": { - "method": "DELETE", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9680,119 +9631,137 @@ "keep-alive" ], "client-request-id": [ - "401cc3c2-c372-11e9-9d78-44032c851686" + "4be040ec-af33-11ea-939c-44032c851686" ], "accept-language": [ "en-US" ], - "Content-Length": [ - "0" - ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:4uT8P6RATBgsBNFtHK4NIV0Orr1jLHjxnPcoa6IcoOg=" + "SharedKey sdktest2:C8L2Vw+FpveEpFrzckvKSCGxDM8vzxklKr/KucrKvJA=" ] } }, "response": { "status": { - "code": 202, - "message": "Accepted" + "code": 200, + "message": "OK" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "3b3de2bd-485d-40a1-ac3b-6dc3fb7ff8ab" + "ebedf82d-ff4f-4aa5-892e-0f51226708f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04-lts\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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.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\",\"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\",\"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\":\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-5\",\"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-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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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\":\"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 ],\"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 ],\"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\":\"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\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\"\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 18.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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-1903-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows 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 ],\"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\",\"sku\":\"8_1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.1\",\"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.3\",\"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.4\",\"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\":\"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.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\":\"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 \"imageReference\":{\r\n \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"81\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output?restype=container&comp=list", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0", + "body": "{\"id\": \"ncj-ubuntu1604\", \"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"canonical\", \"offer\": \"ubuntuserver\", \"sku\": \"16.04-lts\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1}", "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" ], - "x-ms-client-request-id": [ - "40264dda-c372-11e9-94f7-44032c851686" + "client-request-id": [ + "4bed6590-af33-11ea-902e-44032c851686" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "accept-language": [ + "en-US" + ], + "Content-Length": [ + "248" + ], + "ocp-date": [ + "Mon, 15 Jun 2020 18:09:04 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:3ne9gnvYTa8u9jFGyrPNH5iRKISz4XROeO8l5K7s4IY=" + "SharedKey sdktest2:18+O7sV/8tj9D+TUVSYRsFkoumaK2bwBe9az3gjVkZg=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified container does not exist." + "code": 409, + "message": "The specified pool already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerNotFound" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "request-id": [ + "2886465a-20c4-4559-a033-0ff8487fc745" ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 20 Aug 2019 17:45:07 GMT" + "Mon, 15 Jun 2020 18:09:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Content-Length": [ - "225" + "334" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" ] }, "body": { - "string": "\ufeffContainerNotFoundThe specified container does not exist.\nRequestId:7774310e-c01e-001c-0a7f-57bc17000000\nTime:2019-08-20T17:45:08.1858842Z" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolExists\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool already exists.\\nRequestId:2886465a-20c4-4559-a033-0ff8487fc745\\nTime:2020-06-15T18:09:03.8075786Z\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9804,16 +9773,16 @@ "keep-alive" ], "client-request-id": [ - "402ed95c-c372-11e9-ac69-44032c851686" + "4bf6d21c-af33-11ea-a109-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Mon, 15 Jun 2020 18:09:04 GMT" ], "Authorization": [ - "SharedKey sdktest2:4jCSKGtc1/VzTf9bgeYU6HQCNLJ+lD/ufb+VVegs0jE=" + "SharedKey sdktest2:wz/ycI8vUr9nZepDc5XO4C6g79b7J7ak3oh8xnLwcdU=" ] } }, @@ -9823,44 +9792,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "request-id": [ + "0b8a3e1f-ce63-4b1b-9639-12ef1b618467" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "3e5c493b-085c-4945-8e5a-bc7ad1573f9a" + "ETag": [ + "0x8D8115636BF138F" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:02:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\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 },\"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 },\"verificationType\":\"verified\",\"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 },\"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 },\"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-5\",\"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-6\",\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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 },\"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 \"publisher\":\"microsoft-dsvm\",\"offer\":\"dsvm-windows\",\"sku\":\"server-2016\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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 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 },\"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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"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 },\"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-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 },\"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\":\"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 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 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 },\"verificationType\":\"verified\",\"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.6\",\"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 },\"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 7\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D8115636BF138F\",\"lastModified\":\"2020-06-15T18:02:05.6276879Z\",\"creationTime\":\"2020-06-15T18:02:05.6276879Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:02:05.6276879Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-06-15T18:03:19.0579494Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0", - "body": "{\"id\": \"ncj-ubuntu1604\", \"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"canonical\", \"offer\": \"ubuntuserver\", \"sku\": \"16.04-lts\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1}", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes?api-version=2020-03-01.11.0", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9871,70 +9846,64 @@ "Connection": [ "keep-alive" ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], "client-request-id": [ - "403987a6-c372-11e9-bcff-44032c851686" + "4bfe051a-af33-11ea-a018-44032c851686" ], "accept-language": [ "en-US" ], - "Content-Length": [ - "248" - ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Mon, 15 Jun 2020 18:09:04 GMT" ], "Authorization": [ - "SharedKey sdktest2:9HlWXAwOKnUZW1DN7JEbM91mCbJ+drOivOR/VXS2HYM=" + "SharedKey sdktest2:Ei1aQozrGdZgIQeI9bGjm2lkG9XleFB56vqrEvnXGSw=" ] } }, "response": { "status": { - "code": 409, - "message": "The specified pool already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "59a509f7-71d3-4ce8-a8ef-97e376477f4a" + "1fdfff23-61b6-418b-8f86-3585742b88c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" ], - "Content-Length": [ - "334" + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolExists\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool already exists.\\nRequestId:59a509f7-71d3-4ce8-a8ef-97e376477f4a\\nTime:2019-08-20T17:45:08.3482716Z\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:04:16.390003Z\",\"lastBootTime\":\"2020-06-15T18:03:25.09435Z\",\"allocationTime\":\"2020-06-15T18:03:18.609852Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":1,\"totalTasksSucceeded\":1,\"runningTasksCount\":0,\"recentTasks\":[\r\n {\r\n \"taskUrl\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"jobId\":\"ncj-ubuntu1604\",\"taskId\":\"myTask\",\"taskState\":\"completed\",\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:04:15.936548Z\",\"endTime\":\"2020-06-15T18:04:16.364908Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ],\"certificateReferences\":[\r\n \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.133\",\"publicFQDN\":\"dns032f5454-5463-487b-8732-ff5454a17b44-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-06-15T18:03:25.09435Z\",\"version\":\"1.8.2\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2020-05-01", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-batch/9.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -9945,17 +9914,14 @@ "Connection": [ "keep-alive" ], - "client-request-id": [ - "4047df90-c372-11e9-b81c-44032c851686" + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0MjQ0LCJuYmYiOjE1OTIyNDQyNDQsImV4cCI6MTU5MjMzMDk0NCwiYWlvIjoiNDJkZ1lJamVPMi9OMDNNQmFpKzNkOTYyM01VNEN3QT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6InpwTWc5c1l1VlUtNklTMnU2VklCQUEiLCJ2ZXIiOiIxLjAifQ.VkQrVa7SwoIOdIvJHrPliPUl9sOHCtx-M20dWIN2-LkBmcsjhHlzcAlhPLL8wvARCqjjhr12a4LkC7_P3Te1898NqrjyGhjQ4_BFwJiY-U6f0dg6zuAGWYgoHN_pki0d_bTl1U3RsO8hIR9PZYbAvvUOL9jR_tysuT9I6q9YPyU7xuVSIJTEYRXPDO0mF_KZJ-S4kGpjJ7NEAJKRrcEIKigVIlxD5K0ma4TVSnrrHY63jU72bs3mhhWibvS7mMQXzbaFZuYwF0TlgUAiWOW_GlAu6JmC7MXq6CiPmxD6kmxrgvwUR6tmUlPwmJmusY98czYdBXpuZBI-xAvPAKZQlA" + ], + "x-ms-client-request-id": [ + "4c2cb01a-af33-11ea-9b2c-44032c851686" ], "accept-language": [ "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:WHdhVUt9UpYSQv/yCLrZAlPUG7M9DiNrJQ7t8NJOo10=" ] } }, @@ -9965,179 +9931,40 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Cache-Control": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725954EB17F5F" + "X-Content-Type-Options": [ + "nosniff" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "x-ms-original-request-ids": [ + "c2fc27d4-9cd0-4122-8e63-552d18e32faf", + "3d692446-0bfd-4fb3-b5f3-819201c7b080" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Date": [ + "Mon, 15 Jun 2020 18:09:04 GMT" ], - "request-id": [ - "40bf1b98-4a01-4ef9-b672-a90255deb51a" + "Content-Type": [ + "application/json; charset=utf-8" ], - "Transfer-Encoding": [ - "chunked" + "content-length": [ + "3206" ], - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Accept-Encoding" ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-ubuntu1604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604\",\"eTag\":\"0x8D725954EB17F5F\",\"lastModified\":\"2019-08-20T17:39:09.6824671Z\",\"creationTime\":\"2019-08-20T17:39:09.6824671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:39:09.6824671Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-20T17:40:16.1469849Z\",\"vmSize\":\"standard_d1_v2\",\"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 }\r\n}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes?api-version=2019-08-01.10.0", - "body": null, - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "client-request-id": [ - "405026d8-c372-11e9-a4e9-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:T5/eohhbVrpv9MEKJm+mpWFl1pKPzicTFSkXKiJvcDc=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "d1cfbff1-dc5a-4959-9b02-95e57876a15a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:40:26.38171Z\",\"lastBootTime\":\"2019-08-20T17:40:21.194161Z\",\"allocationTime\":\"2019-08-20T17:40:15.2984459Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":1,\"totalTasksSucceeded\":1,\"runningTasksCount\":0,\"recentTasks\":[\r\n {\r\n \"taskUrl\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"jobId\":\"ncj-ubuntu1604\",\"taskId\":\"myTask\",\"taskState\":\"completed\",\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:40:25.735322Z\",\"endTime\":\"2019-08-20T17:40:26.353947Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ],\"certificateReferences\":[\r\n \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.16.171\",\"publicFQDN\":\"dns07c600ce-fa0e-4d8b-8d1f-948d1d69b8c7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-20T17:40:21.194161Z\",\"version\":\"1.6.4\"\r\n }\r\n }\r\n ]\r\n}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2019-08-01", - "body": null, - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-batch/7.0.0 Azure-SDK-For-Python" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" - ], - "x-ms-client-request-id": [ - "4085678c-c372-11e9-ae88-44032c851686" - ], - "accept-language": [ - "en-US" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" ], "Expires": [ "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "2729" - ], - "x-ms-original-request-ids": [ - "65653993-abb7-44ba-9070-2e176961dbff", - "0a63772d-594c-4233-8c67-1adead346419" - ], - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" ] }, "body": { - "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2019-07-16T21:55:40.4909987Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" + "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"},\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2020-06-15T08:14:08.5867562Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"rawr\":\"test\"},\"identity\":{\"type\":\"None\"}}]}" } } }, @@ -10148,7 +9975,7 @@ "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -10160,13 +9987,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0MjQ1LCJuYmYiOjE1OTIyNDQyNDUsImV4cCI6MTU5MjMzMDk0NSwiYWlvIjoiNDJkZ1lKQmxMRnhSSHV5M1k3dTEwOXI5ZG9jNEFRPT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6InNPVlpKOUE1SFVLMzRvV1NXOUVBQUEiLCJ2ZXIiOiIxLjAifQ.lrd5c_4dwM8Tz9_AEPSThxfBc7RMp_QK3mM13r6ISArCOI69Ps_ey2r1f0tK5r3jWxDOpCkkYOGLp1ZeRo516gkcptuDrOEcEuJncGNwzyeyyiPov6EnO4OqhzSZXq1Zdp6C5x9EIdC8STDMeS0jH6FxNNMhGjnKC6cATbR0qOWPDhRuwrr3pjy9B9QOBJDA54BWshbyBCnzXLrLIonzFI8cfG9tHa90LpB06J91dhZhmjKFVpv9A-2QOWcq7tn2_jDiku2_gtCg9eTos5CM73Zx3dZuJ_Vao08j2dTW2wTGAt4bFvxkPwgBBJxH61TQHJvhYaJImcyzZjqs5sLKSQ" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "40de58ac-c372-11e9-b51a-44032c851686" + "4ca76136-af33-11ea-aa2a-44032c851686" ], "accept-language": [ "en-US" @@ -10182,17 +10009,11 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" + "Cache-Control": [ + "no-cache" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:09 GMT" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10203,18 +10024,24 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Mon, 15 Jun 2020 18:09:04 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "-1" + ], "content-length": [ "288" ] @@ -10231,7 +10058,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -10240,13 +10067,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "41177f90-c372-11e9-8c45-44032c851686" + "4cf04662-af33-11ea-b253-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:09 GMT" + "Mon, 15 Jun 2020 18:09:05 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:4h2q9L3MdHdVaNqR5kNfdbi5dOvGSuWjlgM588LGMBg=" + "SharedKey sdkteststore2:8FC5KIdDakpqwtCnimP4NaBQtH/SIVexi30c41jsyU4=" ], "Content-Length": [ "0" @@ -10255,42 +10082,42 @@ }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259625642E21\"" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:09 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:09:04 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:09 GMT" - ], "Content-Length": [ - "0" + "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:e68c9478-001e-00a0-7640-43ab66000000\nTime:2020-06-15T18:09:05.6186768Z" } } }, { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0&timeout=30", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0&timeout=30", "body": "{\"id\": \"ncj-ubuntu1604-1\", \"poolInfo\": {\"poolId\": \"ncj-ubuntu1604\"}}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10302,13 +10129,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDI0NSwibmJmIjoxNTkyMjQ0MjQ1LCJleHAiOjE1OTIzMzA5NDUsImFpbyI6IjQyZGdZRGdaTXNIRG9zcllXWHJDTW5idGxOb1RBQT09IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJkb3h4VkdaMEpVT3VwemE3bjdBQkFBIiwidmVyIjoiMS4wIn0.eOQ5fKST454cLgsF5Prjf0fJAza2unuYgCze_xpitSmI4-ygsK_WRBxBbsveE_1BKEJ1VA8EvEHEJnfsZh7u7Vt82wFLcBImdZZwT2ydLKDrpaCQ2BV19dhtF5uTSEAR57EYVj5FHKMZLbe_CbKIUNhBjefQj6pt4bScBx-rtyADksNKtpnIKzfXS6XQmbt9z4fhSXffQ_NXxPhR1kbHDhi4yAb5B-Fxu2IqhGINOPEPykmiGg-9SDFvkorC8LZh3rZuldKQyBRnIJJkZY_6inTSWXNE8sJPlidGAvVE79npqjpUifpYDFwGLN1rKrlCQ6JmFLfGbvpknjIWEBCdxQ" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "413b2a66-c372-11e9-84f1-44032c851686" + "4d0adfe4-af33-11ea-b577-44032c851686" ], "accept-language": [ "en-US" @@ -10327,38 +10154,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:10 GMT" + "request-id": [ + "b23f8b8a-09d3-4c6a-b707-c8a6c204460a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "ETag": [ + "0x8D811573E2F1A6A" + ], "X-Content-Type-Options": [ "nosniff" ], - "ETag": [ - "0x8D725962617779D" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:09:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:09:27 GMT" ], - "Transfer-Encoding": [ - "chunked" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], - "request-id": [ - "63a51513-af28-42cc-825f-6595cf5850a3" + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { @@ -10369,11 +10196,11 @@ { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/addtaskcollection?api-version=2019-08-01.10.0", - "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"/bin/bash -c \\\"echo test\\\"\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A09Z&se=2019-08-27T17%3A45%3A09Z&sp=w&sv=2017-07-29&sr=c&sig=nij98v6B3zhcV68rPGSG6wsdfjvePrD8MdMA%2BdWgM78%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/addtaskcollection?api-version=2020-03-01.11.0", + "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"/bin/bash -c \\\"echo test\\\"\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A05Z&se=2020-06-22T18%3A09%3A05Z&sp=w&sv=2017-07-29&sr=c&sig=pw3eJMD5Tfi8bGFMdmN7RRnu/Oxopz33kCeIe/CkK70%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10385,19 +10212,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDI2NywibmJmIjoxNTkyMjQ0MjY3LCJleHAiOjE1OTIzMzA5NjcsImFpbyI6IjQyZGdZRGpEb0hadFhsTU50N25JS2RseXgxVWJBUT09IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJINnI3bzMxMlhVT2lRdDNlQ3U4QkFBIiwidmVyIjoiMS4wIn0.NsugZdd5gXFmlTACqz1Mz5TzSKyZhWCSOfzw9YPtSrR-pWs-RHy-56xrhwt8wNY3Ni7ON6tKfCuYvCmNmc0vgR0x6WR8OIEux8ZIK7ROXEw2Ia64mqFMgGpJLAIXI9Am8V_X8ui55BdhraNokQKiq3F7WGwwjUI_U28D2voh8Wlf0z51Ut7gkeKjgZYNjD-UiaawEwxrQOOQB6j_wbaaArtbrkVTFtnT56mhcs1CLbykcB8j-bwIPKzRpG9CNSd0N9SZKjeTlkt83NXt8QIsqAgiVcxUXGQyvWGp3kgsfNTKytp3eo7ikr8tXYebghnpi56FZ-yQ9Ii1WR2T9vmnUA" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "41e5bc22-c372-11e9-8009-44032c851686" + "5a25b3be-af33-11ea-89b3-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "471" + "469" ] } }, @@ -10407,44 +10234,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "b67fd7ee-0fbf-4f2e-9e21-050537cc7980" + "8d799c51-f6f8-4c76-bed8-a32175e67b94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D72596266B7123\",\"lastModified\":\"2019-08-20T17:45:11.6112163Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\"\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D811574B2A1285\",\"lastModified\":\"2020-06-15T18:09:49.3800581Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\"\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10456,16 +10283,16 @@ "keep-alive" ], "client-request-id": [ - "423ac0a6-c372-11e9-a981-44032c851686" + "67210c1e-af33-11ea-9dd7-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "Mon, 15 Jun 2020 18:09:49 GMT" ], "Authorization": [ - "SharedKey sdktest2:GYi8g5Cycczhzv/MC4FhfWAk7iiQ9knRkD38XxYuul4=" + "SharedKey sdktest2:mKaBzKFq1U8lnUl29rxB+COmcKFoWs1YqBcYs9Xn9bQ=" ] } }, @@ -10475,50 +10302,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "request-id": [ + "e459f524-e46d-46da-b0c7-4f390c4f1726" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962617779D" + "0x8D811573E2F1A6A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "e180a6f6-5dfe-4143-a066-0cb2956fd60b" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:09:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-ubuntu1604-1\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1\",\"eTag\":\"0x8D725962617779D\",\"lastModified\":\"2019-08-20T17:45:11.0608797Z\",\"creationTime\":\"2019-08-20T17:45:11.0469939Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:11.0608797Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-ubuntu1604\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:45:11.0608797Z\",\"poolId\":\"ncj-ubuntu1604\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-ubuntu1604-1\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1\",\"eTag\":\"0x8D811573E2F1A6A\",\"lastModified\":\"2020-06-15T18:09:27.6026474Z\",\"creationTime\":\"2020-06-15T18:09:27.5866502Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:09:27.6026474Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-ubuntu1604\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:09:27.6026474Z\",\"poolId\":\"ncj-ubuntu1604\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10530,16 +10357,16 @@ "keep-alive" ], "client-request-id": [ - "42447acc-c372-11e9-b1e5-44032c851686" + "672b6298-af33-11ea-97d2-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "Mon, 15 Jun 2020 18:09:49 GMT" ], "Authorization": [ - "SharedKey sdktest2:uzooMKAK+UFzRA+iUErDxX8EdMJBrU/IJrG8RrS/B5g=" + "SharedKey sdktest2:UpTAvR0EsmmSdadi1ENrS/z9SNOSwlfG09oaj5kkRyo=" ] } }, @@ -10549,44 +10376,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "09a8cbe9-cda5-42e0-9608-b440c544f700" + "572b72f0-818f-4b6b-aed6-bcf34feefd42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D72596266B7123\",\"creationTime\":\"2019-08-20T17:45:11.6112163Z\",\"lastModified\":\"2019-08-20T17:45:11.6112163Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:11.6112163Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A09Z&se=2019-08-27T17%3A45%3A09Z&sp=w&sv=2017-07-29&sr=c&sig=nij98v6B3zhcV68rPGSG6wsdfjvePrD8MdMA%2BdWgM78%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D811574B2A1285\",\"creationTime\":\"2020-06-15T18:09:49.3800581Z\",\"lastModified\":\"2020-06-15T18:09:49.3800581Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:09:49.3800581Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A05Z&se=2020-06-22T18%3A09%3A05Z&sp=w&sv=2017-07-29&sr=c&sig=pw3eJMD5Tfi8bGFMdmN7RRnu/Oxopz33kCeIe/CkK70%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10598,16 +10425,16 @@ "keep-alive" ], "client-request-id": [ - "4418ebd2-c372-11e9-9359-44032c851686" + "68fede46-af33-11ea-8263-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Mon, 15 Jun 2020 18:09:52 GMT" ], "Authorization": [ - "SharedKey sdktest2:2DE1XgHgXeHvj+bXKMOaTi/dEDolM/ddhCA9gx1QY5M=" + "SharedKey sdktest2:KqxXYy+PUVauBQDIA7dSTWxKIltOPqeddziOYiSVQCw=" ] } }, @@ -10617,44 +10444,112 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "89dfc6fb-093a-47f1-9341-9f1ba59e7668" + "59261060-dce3-463c-bc1a-b7d49b924271" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], "Transfer-Encoding": [ "chunked" + ] + }, + "body": { + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D811574B2A1285\",\"creationTime\":\"2020-06-15T18:09:49.3800581Z\",\"lastModified\":\"2020-06-15T18:09:49.3800581Z\",\"state\":\"running\",\"stateTransitionTime\":\"2020-06-15T18:09:52.370711Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2020-06-15T18:09:52.368256Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A05Z&se=2020-06-22T18%3A09%3A05Z&sp=w&sv=2017-07-29&sr=c&sig=pw3eJMD5Tfi8bGFMdmN7RRnu/Oxopz33kCeIe/CkK70%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:09:52.422089Z\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604-1/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d/files/workitems/ncj-ubuntu1604-1/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks?api-version=2020-03-01.11.0", + "body": null, + "headers": { + "User-Agent": [ + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "6ad25bbe-af33-11ea-9834-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:GqF0IPd6xSCwONeejzkx26FzKkei2+4rOkPt8QI0tO8=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "request-id": [ + "6d2a0a10-9043-4a38-b739-02479433e7db" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D72596266B7123\",\"creationTime\":\"2019-08-20T17:45:11.6112163Z\",\"lastModified\":\"2019-08-20T17:45:11.6112163Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:45:13.204694Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:45:12.459832Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A09Z&se=2019-08-27T17%3A45%3A09Z&sp=w&sv=2017-07-29&sr=c&sig=nij98v6B3zhcV68rPGSG6wsdfjvePrD8MdMA%2BdWgM78%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:45:12.459832Z\",\"endTime\":\"2019-08-20T17:45:13.204694Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604-1/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d/files/workitems/ncj-ubuntu1604-1/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D811574B2A1285\",\"creationTime\":\"2020-06-15T18:09:49.3800581Z\",\"lastModified\":\"2020-06-15T18:09:49.3800581Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:09:52.831527Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:09:52.370711Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A05Z&se=2020-06-22T18%3A09%3A05Z&sp=w&sv=2017-07-29&sr=c&sig=pw3eJMD5Tfi8bGFMdmN7RRnu/Oxopz33kCeIe/CkK70%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:09:52.422089Z\",\"endTime\":\"2020-06-15T18:09:52.831527Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604-1/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d/files/workitems/ncj-ubuntu1604-1/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10666,16 +10561,16 @@ "keep-alive" ], "client-request-id": [ - "44226e40-c372-11e9-979c-44032c851686" + "6adbf450-af33-11ea-b20b-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Authorization": [ - "SharedKey sdktest2:+sAC6seGiXdmK0QUFayRgjscmY7fj5DrzCfjoUD+2fk=" + "SharedKey sdktest2:7L4UJaUHXRiYr3w5zNJ3WkCI58DVX/yJNcfvi5E5j1w=" ] } }, @@ -10685,39 +10580,39 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "request-id": [ + "3c0bd7d8-aa27-4947-b6b8-a91135241fe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D72596266B7123" + "0x8D811574B2A1285" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "e9c88c9c-79ea-419b-8e7d-b9f769030406" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:09:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D72596266B7123\",\"creationTime\":\"2019-08-20T17:45:11.6112163Z\",\"lastModified\":\"2019-08-20T17:45:11.6112163Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:45:13.204694Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:45:12.459832Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A09Z&se=2019-08-27T17%3A45%3A09Z&sp=w&sv=2017-07-29&sr=c&sig=nij98v6B3zhcV68rPGSG6wsdfjvePrD8MdMA%2BdWgM78%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:45:12.459832Z\",\"endTime\":\"2019-08-20T17:45:13.204694Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604-1/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_453be07f8833a32514145f65c262af27329214bd3876c9903242c14905bf89d4_d/files/workitems/ncj-ubuntu1604-1/job-1/myTask\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D811574B2A1285\",\"creationTime\":\"2020-06-15T18:09:49.3800581Z\",\"lastModified\":\"2020-06-15T18:09:49.3800581Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:09:52.831527Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:09:52.370711Z\",\"commandLine\":\"/bin/bash -c \\\"echo test\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A05Z&se=2020-06-22T18%3A09%3A05Z&sp=w&sv=2017-07-29&sr=c&sig=pw3eJMD5Tfi8bGFMdmN7RRnu/Oxopz33kCeIe/CkK70%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:09:52.422089Z\",\"endTime\":\"2020-06-15T18:09:52.831527Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604-1/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_33f46e268fbed26f958cc739239f3118dc2e060c7855e6ba2087964be5a95eda_d/files/workitems/ncj-ubuntu1604-1/job-1/myTask\"\r\n }\r\n}" } } }, @@ -10728,7 +10623,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -10737,13 +10632,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "442e9122-c372-11e9-9417-44032c851686" + "6ae59602-af33-11ea-b706-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:x3VlCtM/x0xgsyc0czlkO0eMd0h1MQBYhaKvQ8O4HKE=" + "SharedKey sdkteststore2:05CpdJFR2ZGJXAArNt8VdU3MIyEhut5zdWUBoDcGND8=" ] } }, @@ -10753,35 +10648,35 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Type": [ + "application/xml" + ], "Transfer-Encoding": [ "chunked" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufefffileuploaderr.txtTue, 20 Aug 2019 17:45:13 GMT0x8D7259627577AB80application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtTue, 20 Aug 2019 17:45:12 GMT0x8D72596272F03DF512application/octet-streamwyfwc69jKJUl+IdiflQalw==BlockBlobHottrueunlockedavailabletruestderr.txtTue, 20 Aug 2019 17:45:12 GMT0x8D725962730B1DC0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtTue, 20 Aug 2019 17:45:12 GMT0x8D725962733234D5application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" + "string": "\ufefffileuploaderr.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D2EE9540application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D344179512application/octet-streamumFQMkV0/2ON6r9yLZRriQ==BlockBlobHottrueunlockedavailabletruestderr.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D2D89860application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D30491F5application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { "method": "DELETE", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10793,7 +10688,7 @@ "keep-alive" ], "client-request-id": [ - "443ad030-c372-11e9-8287-44032c851686" + "6af181e6-af33-11ea-a165-44032c851686" ], "accept-language": [ "en-US" @@ -10802,10 +10697,10 @@ "0" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:2d6k4MNm6y9zXvGsQ6qSCL3bI+OD+NXUH6soqYP3kNc=" + "SharedKey sdktest2:2eQIlT0/QlSerBUwWlTVjxChDUBSdl5iPLR9wIh8b5E=" ] } }, @@ -10815,26 +10710,26 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "d733f566-2eee-4150-a93a-c01e6352e8e5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" + "d68184b1-d797-44aa-94eb-7bbe50bf1a61" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { @@ -10849,7 +10744,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -10858,13 +10753,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "44436798-c372-11e9-8c1b-44032c851686" + "6afa5e36-af33-11ea-97b1-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:2qk1GtO2Qz8TiYWpSTP3EoEPpBNnLtjftVnaBNzCQAM=" + "SharedKey sdkteststore2:mYrQW14cDEsnwWb+WOBlzcK5/yaaYXXGejSuBT8a0xs=" ] } }, @@ -10874,24 +10769,24 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Type": [ + "application/xml" + ], "Transfer-Encoding": [ "chunked" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufefffileuploaderr.txtTue, 20 Aug 2019 17:45:13 GMT0x8D7259627577AB80application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtTue, 20 Aug 2019 17:45:12 GMT0x8D72596272F03DF512application/octet-streamwyfwc69jKJUl+IdiflQalw==BlockBlobHottrueunlockedavailabletruestderr.txtTue, 20 Aug 2019 17:45:12 GMT0x8D725962730B1DC0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtTue, 20 Aug 2019 17:45:12 GMT0x8D725962733234D5application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" + "string": "\ufefffileuploaderr.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D2EE9540application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D344179512application/octet-streamumFQMkV0/2ON6r9yLZRriQ==BlockBlobHottrueunlockedavailabletruestderr.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D2D89860application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtMon, 15 Jun 2020 18:09:52 GMT0x8D811574D30491F5application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" } } }, @@ -10902,7 +10797,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -10911,13 +10806,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "444fca3e-c372-11e9-9a80-44032c851686" + "6b059a00-af33-11ea-825e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:aUXLqH7Q/+C4lOihJgOYj+jGdA/aLmcMBLnEp1fyzGY=" + "SharedKey sdkteststore2:e1v/LxFY9rfgDP3ePSkEujpOgZ4+E5pIIiDQaiWWJpM=" ], "Content-Length": [ "0" @@ -10931,19 +10826,19 @@ }, "headers": { "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -10958,7 +10853,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -10967,13 +10862,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "4457b058-c372-11e9-bc94-44032c851686" + "6b1549a4-af33-11ea-9550-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:nrvYabCdvNYiXTcv5dE10UEpJa5FNQVY4HMIxMKmvMw=" + "SharedKey sdkteststore2:bCgqTuwQmc2+QZEle2gpz21bK0N5jzp68JGafhp8/LU=" ], "Content-Length": [ "0" @@ -10987,19 +10882,19 @@ }, "headers": { "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -11014,7 +10909,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -11023,13 +10918,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "445f51a8-c372-11e9-ac85-44032c851686" + "6b206d5e-af33-11ea-923f-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:76B7T3kYtjypQAeUP7jLcLeLVmZwqIpFZDoQ9Tn7zKY=" + "SharedKey sdkteststore2:pQoh+DK0gLKRQ8XULzYoMJPoI/BoSMZ+uwUkilCAZcs=" ], "Content-Length": [ "0" @@ -11043,19 +10938,19 @@ }, "headers": { "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -11070,7 +10965,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -11079,13 +10974,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "4466ca7e-c372-11e9-89e4-44032c851686" + "6b280f76-af33-11ea-9e75-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:BZb/FO9L0YjFH0KUNy9bfPKh71O+zrKCvun63Ix6Dak=" + "SharedKey sdkteststore2:sFM8fiSIU0Mfmr7oaSOxQYvgPfsRe63NdmUzeK4aDpk=" ], "Content-Length": [ "0" @@ -11099,19 +10994,19 @@ }, "headers": { "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -11122,11 +11017,11 @@ { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/supportedimages?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11138,16 +11033,16 @@ "keep-alive" ], "client-request-id": [ - "446ee9e2-c372-11e9-8150-44032c851686" + "6b2f3b3a-af33-11ea-8187-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:HeMf6GhqUC9nZHLofWCNXvDDzAXG2xLA4amGN8KJ+5M=" + "SharedKey sdktest2:fnzR66JDdmYmfWb1ovTpCIyf+BsXxTOnpvoFwEzfNes=" ] } }, @@ -11157,44 +11052,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "68035f8f-41ca-496b-adef-2211f3f2fa2d" + "d54ba942-fa47-4e21-9c40-17120878fbee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\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 },\"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 },\"verificationType\":\"verified\",\"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 },\"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 },\"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-5\",\"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-6\",\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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 },\"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 \"publisher\":\"microsoft-dsvm\",\"offer\":\"dsvm-windows\",\"sku\":\"server-2016\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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 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 },\"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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"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 },\"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-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 },\"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\":\"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 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 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 },\"verificationType\":\"verified\",\"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.6\",\"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 },\"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 7\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04-lts\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"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.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\",\"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\",\"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\":\"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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-5\",\"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-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 \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-4\",\"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\":\"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 ],\"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 ],\"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\":\"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\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\"\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 18.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 },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2016-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-core-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-gs\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-1903-with-containers-smalldisk\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows 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 ],\"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\",\"sku\":\"8_1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.1\",\"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.3\",\"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.4\",\"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\":\"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.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\":\"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 \"imageReference\":{\r\n \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"81\",\"version\":\"latest\"\r\n },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0", "body": "{\"id\": \"ncj-windows-2012-r2\", \"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"microsoftwindowsserver\", \"offer\": \"windowsserver\", \"sku\": \"2012-r2-datacenter\"}, \"nodeAgentSKUId\": \"batch.node.windows amd64\"}, \"targetDedicatedNodes\": 1}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11209,7 +11104,7 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "447ad4cc-c372-11e9-91ea-44032c851686" + "6b3c9b0c-af33-11ea-9312-44032c851686" ], "accept-language": [ "en-US" @@ -11218,10 +11113,10 @@ "277" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:MYPpSapN7cxQpDcyyhM+QitUie8hQ8biclNO7XpQCiM=" + "SharedKey sdktest2:KA+NJt7AAbg+Ox4F/ZaTdlNLVtRVCOqZq3Jh4vrToiQ=" ] } }, @@ -11231,44 +11126,44 @@ "message": "The specified pool already exists." }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "9a5644b3-e6be-4308-a4f7-5c7fd231165c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "96a01334-5909-4710-8716-720d7852e035" ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Content-Length": [ "334" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolExists\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool already exists.\\nRequestId:9a5644b3-e6be-4308-a4f7-5c7fd231165c\\nTime:2019-08-20T17:45:15.4699564Z\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolExists\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool already exists.\\nRequestId:96a01334-5909-4710-8716-720d7852e035\\nTime:2020-06-15T18:09:56.3358705Z\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11280,16 +11175,16 @@ "keep-alive" ], "client-request-id": [ - "44866942-c372-11e9-ac75-44032c851686" + "6b45d8b0-af33-11ea-b585-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:NIaG0PnfWRfpY1MNixscIgIiFKBcr1vfLNzIObX9sHg=" + "SharedKey sdktest2:4zxFZ0/GR/LzNtQHzky00fX27z3ROfhNB+PbMuBm8ZY=" ] } }, @@ -11299,50 +11194,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "request-id": [ + "b1c940b0-e7c3-4974-a65d-1039568960f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D811568686AD5A" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "a1b930b6-ff15-419f-8df5-e6f7c836ace6" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:04:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D725957DFB0158\",\"lastModified\":\"2019-08-20T17:40:29.0171224Z\",\"creationTime\":\"2019-08-20T17:40:29.0171224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:40:29.0171224Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-20T17:41:45.3536086Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"ncj-windows-2012-r2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2\",\"eTag\":\"0x8D811568686AD5A\",\"lastModified\":\"2020-06-15T18:04:19.4757978Z\",\"creationTime\":\"2020-06-15T18:04:19.4757978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:04:19.4757978Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-06-15T18:05:22.1292509Z\",\"vmSize\":\"standard_d1_v2\",\"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\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2012-r2-datacenter\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.windows amd64\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11354,16 +11249,16 @@ "keep-alive" ], "client-request-id": [ - "448dee90-c372-11e9-a2e6-44032c851686" + "6b4da658-af33-11ea-8d9a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Mon, 15 Jun 2020 18:09:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:BYIeN7EVjONerdTZbysxRso2w8Y/5SodQSrJYInSw7k=" + "SharedKey sdktest2:LW5TbHNu8LC4SbiNPJDSLQq1Yxcglr0ePJhJCZ/5U20=" ] } }, @@ -11373,44 +11268,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "37dd8839-b7db-4ab8-b71d-05870676743e" + "e917a46b-cf62-484a-9fc7-a2399e3fe015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:09:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-20T17:44:53.998613Z\",\"lastBootTime\":\"2019-08-20T17:44:47.433702Z\",\"allocationTime\":\"2019-08-20T17:41:44.5757579Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":1,\"totalTasksSucceeded\":1,\"runningTasksCount\":0,\"recentTasks\":[\r\n {\r\n \"taskUrl\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"jobId\":\"ncj-windows-2012-r2\",\"taskId\":\"myTask\",\"taskState\":\"completed\",\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:44:53.042985Z\",\"endTime\":\"2019-08-20T17:44:53.967174Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ],\"certificateReferences\":[\r\n \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.21.30\",\"publicFQDN\":\"dns1e3cf4d6-e900-4b6b-83dd-f0405cfffd73-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-20T17:44:47.433702Z\",\"version\":\"1.6.4\"\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-06-15T18:08:45.853635Z\",\"lastBootTime\":\"2020-06-15T18:07:57.195247Z\",\"allocationTime\":\"2020-06-15T18:05:21.7024844Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":1,\"totalTasksSucceeded\":1,\"runningTasksCount\":0,\"recentTasks\":[\r\n {\r\n \"taskUrl\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask\",\"jobId\":\"ncj-windows-2012-r2\",\"taskId\":\"myTask\",\"taskState\":\"completed\",\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:08:45.194856Z\",\"endTime\":\"2020-06-15T18:08:45.822361Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ],\"certificateReferences\":[\r\n \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.153.154.109\",\"publicFQDN\":\"dns15db525d-aa59-4725-a104-72c1f2a94cd7-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-06-15T18:07:57.195247Z\",\"version\":\"1.8.2\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2019-08-01", + "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2020-05-01", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-batch/7.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-batch/9.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -11422,10 +11317,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0Mjk2LCJuYmYiOjE1OTIyNDQyOTYsImV4cCI6MTU5MjMzMDk5NiwiYWlvIjoiNDJkZ1lGamhzNnJpd0syYTZZd1pDU1hNYnpKMEFBPT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6IklfNmxpMllXaGt5NjZ1MzJWNE1BQUEiLCJ2ZXIiOiIxLjAifQ.PsFORRv2ulnT91fmkoKc0ujN07Kux0sMbh-mUUlusFTD3BXgcpkZ0ZuNY7Awek3BB2trfPGp9VdqMICfRcUv_cR5VGHnDWsMgPL7L1V55Gw1JmOFaO_jyTam-T1sYnGDTy20DCrPh_YoVzltjaNOuaO2yh4erkFypEwARN3ApoepEqS1DC0OMyZTFU2w3kLMXYahjgv-UD_3-SmFgGQS6CtZeg-hqp-rkBlaaO5iO19sTno4x6ynSxC05hBnZGTrTBr3OB1qu6FKUwL6fcsDNT_gimlzY9y2COLBeRte22OxWK9wtnTq3Cas7tqnsW1i3q9OpMHDs7rx3Ag9uGRwPQ" ], "x-ms-client-request-id": [ - "44ba866e-c372-11e9-a07b-44032c851686" + "6b781880-af33-11ea-8389-44032c851686" ], "accept-language": [ "en-US" @@ -11438,17 +11333,8 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" + "Cache-Control": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11456,22 +11342,31 @@ "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "2729" - ], "x-ms-original-request-ids": [ - "1a4bba4d-043b-4e32-8cc3-4a641aa58b81", - "21497a40-928d-4fbe-be78-cd0823fb21b3" + "c49d4097-fa0e-4785-9284-d7a3463ff327", + "86f774a3-cae5-4f0b-9b63-ddc7232ca097" ], - "Cache-Control": [ - "no-cache" + "Date": [ + "Mon, 15 Jun 2020 18:09:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "content-length": [ + "3206" + ], + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" + ], + "Expires": [ + "-1" ] }, "body": { - "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2019-07-16T21:55:40.4909987Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" + "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"},\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2020-06-15T08:14:08.5867562Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"rawr\":\"test\"},\"identity\":{\"type\":\"None\"}}]}" } } }, @@ -11482,7 +11377,7 @@ "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -11494,13 +11389,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0Mjk3LCJuYmYiOjE1OTIyNDQyOTcsImV4cCI6MTU5MjMzMDk5NywiYWlvIjoiNDJkZ1lBaXFXU0NoZEdWditOa05EKzlhOFhjYUF3QT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6InhWOEJ0WXgxQ1VxZ2xvT1JJZXdBQUEiLCJ2ZXIiOiIxLjAifQ.HzYdsPUDcGggUBGU_QQPey_KDd7qatuS3EUzNO0cjqddaKutRBX0XuEsZGyy3g69t2tsLY9p99YPusJoFsEmfFThxt8w4S6ZGEPuZypb6c9wqfkSqK8OTkJPP44GM6eJYx8wkJSNbMm31_EBCYGfI8jesqYdoTO_QlNUAyjDYvVAjBRn39kM-2p1VdTbfL4mjo9-9WqOLc1bqdwHLvnj4GWi-wdZrlCJi2gf8HqqvKg98btBDCkWpaz90ChcpnPIohaxoYNbsrcIcO8NkqSVDws_7kivQK0CqxLH2j1_A6mU2bpo4lST1VPci0joERiLUGgm_uR3ESjpsU8V-yzFuA" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "44fc2042-c372-11e9-8aee-44032c851686" + "6bf6562c-af33-11ea-ab97-44032c851686" ], "accept-language": [ "en-US" @@ -11516,17 +11411,11 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" + "Cache-Control": [ + "no-cache" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11537,18 +11426,24 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Mon, 15 Jun 2020 18:09:57 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "-1" + ], "content-length": [ "288" ] @@ -11565,7 +11460,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -11574,13 +11469,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "4524af9c-c372-11e9-81f1-44032c851686" + "6c4a91a8-af33-11ea-9247-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" + "Mon, 15 Jun 2020 18:09:58 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:sV/dojC3vEOKaPoV7vK/EIjr+KTkokgD49Wgqa//HnE=" + "SharedKey sdkteststore2:9SxTFopeAmUwEtb2aCqcBaejSIWdmA7P0HkxTaQya/w=" ], "Content-Length": [ "0" @@ -11593,38 +11488,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:09:57 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:fb9e174e-c01e-003e-6b7f-57d221000000\nTime:2019-08-20T17:45:16.6939433Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:2605b637-501e-009a-1f40-43e8c5000000\nTime:2020-06-15T18:09:58.2269262Z" } } }, { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0&timeout=30", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0&timeout=30", "body": "{\"id\": \"ncj-windows-2012-r2-1\", \"poolInfo\": {\"poolId\": \"ncj-windows-2012-r2\"}}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11636,13 +11531,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDI5OCwibmJmIjoxNTkyMjQ0Mjk4LCJleHAiOjE1OTIzMzA5OTgsImFpbyI6IjQyZGdZQWpmOTk3aUdwdXMvQXBqN2hNRjNrcFNBQT09IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJXai1NOS1BV0JrU0JXcC1SaElNQkFBIiwidmVyIjoiMS4wIn0.ZlFr8By551_YYkOtljYh8Wri5vq5gg21t2ZOGj01mK37D4hi_jdqamCVQab1id_Wv0LHMlMvbtHANPf4n3n0ZSCnIVXsQCnwhj6v9G6eP5VkU2Ra47m_WurZLClAX50jFxgk3hpxrT3Xw6phsjwgq8WIG8KC2ZHCaAsTTvHEQ5RGYOCxy9D8Ypg9mEh7A47fs3mJiPrEe2_IWhkzZbJO5SHu8raz5NGCOboP4nXVCL-fldyUv0iI4eubHJK2ORAV-fXmzFxeC_t948dUPN-6Ao7yCVmkP_pr9Jp3R2tgxCKQuTtAkLECHUsjbk4KFGx2m00hx8ERDtUKJ8M6b2udeg" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "45414f66-c372-11e9-8570-44032c851686" + "6c66785e-af33-11ea-aaf2-44032c851686" ], "accept-language": [ "en-US" @@ -11661,38 +11556,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" + "request-id": [ + "1352ebc4-4486-4a2d-8c2b-0ec72a0d96bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "ETag": [ + "0x8D811575D731963" + ], "X-Content-Type-Options": [ "nosniff" ], - "ETag": [ - "0x8D72596299AC0BF" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:16 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:10:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:20 GMT" ], - "Transfer-Encoding": [ - "chunked" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], - "request-id": [ - "53478f48-65be-4ca7-b7b8-999655f48af6" + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { @@ -11703,11 +11598,11 @@ { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/addtaskcollection?api-version=2019-08-01.10.0", - "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"cmd /c echo | set /p dummy=test\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A16Z&se=2019-08-27T17%3A45%3A16Z&sp=w&sv=2017-07-29&sr=c&sig=bVYOPdfrMPuJKZS0wQROeVCiAnU8Kxrjj1SRBO3gp5M%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/addtaskcollection?api-version=2020-03-01.11.0", + "body": "{\"value\": [{\"id\": \"myTask\", \"commandLine\": \"cmd /c echo | set /p dummy=test\", \"outputFiles\": [{\"filePattern\": \"$AZ_BATCH_TASK_DIR/*.txt\", \"destination\": {\"container\": {\"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A58Z&se=2020-06-22T18%3A09%3A58Z&sp=w&sv=2017-07-29&sr=c&sig=pcE9UbY%2BfS3ZViFuUB1WeVcqhX5wYIdMxRc8ifsxKV0%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}], \"constraints\": {\"retentionTime\": \"PT1H\"}}]}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11719,19 +11614,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDMyMCwibmJmIjoxNTkyMjQ0MzIwLCJleHAiOjE1OTIzMzEwMjAsImFpbyI6IjQyZGdZUGdUMHJjcTN2ZEgzZjcvdis1WEc4Z3RBd0E9IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJ6cE1nOXNZdVZVLTZJUzJ1bWxnQkFBIiwidmVyIjoiMS4wIn0.d7UkkyoF0bjc-isyuhkMsrXZ99uzMYrR-aXGG86X3gVANVrzVXrAzxe14a_dUBKAdb_NhTGFGM_8eZMDWztA74WQj0JLV3cRqAP1nsy0XndoF5syb0Ks_xku7Mse8pu1rPlNneysQ3iWskX4EbZSrTxGhvUEcVDMEl6SEi3smZMc6MTWe9NssdHqUeDxn7oYKdOViYCVnHCL5TXXQqDKSequsVUq5Uq1Tc6YNAKVDkOcpODRPnpiIdxao1tLQmN5FDn62h8AcKyPygKRhMbOBGzHnmjM9WIKcgV7-g8M4xO4sV0o5NVufEd3MpIBzVG4l7NL7SjtqFSqN2KhlsFTdg" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "456929be-c372-11e9-8c04-44032c851686" + "79695ae8-af33-11ea-bf0f-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "474" + "476" ] } }, @@ -11741,44 +11636,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "c4bc77d9-2c4d-42dc-9843-7e9fbd0a0ec7" + "2381196a-6380-419e-a08e-fbdf31ab51b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D7259629DC8103\",\"lastModified\":\"2019-08-20T17:45:17.3853443Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\"\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D811576A7DD886\",\"lastModified\":\"2020-06-15T18:10:41.9384454Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\"\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11790,16 +11685,16 @@ "keep-alive" ], "client-request-id": [ - "45abb300-c372-11e9-8af5-44032c851686" + "8674f958-af33-11ea-a2fe-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" + "Mon, 15 Jun 2020 18:10:42 GMT" ], "Authorization": [ - "SharedKey sdktest2:o6KUMWoXLdqzIk5JfpZBeP7S1GSYDuQ5zAFh6LAfdww=" + "SharedKey sdktest2:iXBBoVgoH3gMzOTUsfoEwuotIv8rD+iqEt8rPb0bK2k=" ] } }, @@ -11809,50 +11704,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" + "request-id": [ + "57ceb568-4cb2-4253-b582-819af021256d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D72596299AC0BF" + "0x8D811575D731963" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:16 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "350079b9-2118-4fb7-8edb-8328bfdc1c94" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-windows-2012-r2-1\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1\",\"eTag\":\"0x8D72596299AC0BF\",\"lastModified\":\"2019-08-20T17:45:16.9544383Z\",\"creationTime\":\"2019-08-20T17:45:16.9394467Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:16.9544383Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-windows-2012-r2\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:45:16.9544383Z\",\"poolId\":\"ncj-windows-2012-r2\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"ncj-windows-2012-r2-1\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1\",\"eTag\":\"0x8D811575D731963\",\"lastModified\":\"2020-06-15T18:10:20.0576355Z\",\"creationTime\":\"2020-06-15T18:10:20.0416373Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:20.0576355Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"ncj-windows-2012-r2\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:10:20.0576355Z\",\"poolId\":\"ncj-windows-2012-r2\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11864,16 +11759,16 @@ "keep-alive" ], "client-request-id": [ - "45b60ec6-c372-11e9-b906-44032c851686" + "867eef12-af33-11ea-9792-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" + "Mon, 15 Jun 2020 18:10:42 GMT" ], "Authorization": [ - "SharedKey sdktest2:TnyDHUqfGG++OCjU2ToThb19pHa957TE8Sy/CfytQcM=" + "SharedKey sdktest2:VvCwNAyRyfysrunogtKB12bKaBWPyguxUmAtpFMEREU=" ] } }, @@ -11883,44 +11778,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "73c27ea7-edab-4c74-b383-b8698b8abded" + "233b1b30-04ee-4b5f-8949-275e8bddc1a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D7259629DC8103\",\"creationTime\":\"2019-08-20T17:45:17.3853443Z\",\"lastModified\":\"2019-08-20T17:45:17.3853443Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:17.3853443Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A16Z&se=2019-08-27T17%3A45%3A16Z&sp=w&sv=2017-07-29&sr=c&sig=bVYOPdfrMPuJKZS0wQROeVCiAnU8Kxrjj1SRBO3gp5M%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D811576A7DD886\",\"creationTime\":\"2020-06-15T18:10:41.9384454Z\",\"lastModified\":\"2020-06-15T18:10:41.9384454Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:41.9384454Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A58Z&se=2020-06-22T18%3A09%3A58Z&sp=w&sv=2017-07-29&sr=c&sig=pcE9UbY%2BfS3ZViFuUB1WeVcqhX5wYIdMxRc8ifsxKV0%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11932,16 +11827,16 @@ "keep-alive" ], "client-request-id": [ - "478a8b4c-c372-11e9-b188-44032c851686" + "88524022-af33-11ea-99b9-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "Mon, 15 Jun 2020 18:10:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:/le2GBHN9MKRVtoNO4PoGUJ3gKZCRijaeK/FLxWPmQU=" + "SharedKey sdktest2:Jw7D3qPr2Yf2GlGyX2Ap/Axo3TBmbRclWFg4pghgdYE=" ] } }, @@ -11951,44 +11846,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "8bfaaf9e-dd8d-4eef-8764-1d76e36188ce" + "0c28dfcc-17be-4cbe-9de4-e1be8087f5b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D7259629DC8103\",\"creationTime\":\"2019-08-20T17:45:17.3853443Z\",\"lastModified\":\"2019-08-20T17:45:17.3853443Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:45:18.734037Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:45:18.062269Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A16Z&se=2019-08-27T17%3A45%3A16Z&sp=w&sv=2017-07-29&sr=c&sig=bVYOPdfrMPuJKZS0wQROeVCiAnU8Kxrjj1SRBO3gp5M%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:45:18.062269Z\",\"endTime\":\"2019-08-20T17:45:18.734037Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2-1\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d/files/workitems/ncj-windows-2012-r2-1/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D811576A7DD886\",\"creationTime\":\"2020-06-15T18:10:41.9384454Z\",\"lastModified\":\"2020-06-15T18:10:41.9384454Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:41.9384454Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A58Z&se=2020-06-22T18%3A09%3A58Z&sp=w&sv=2017-07-29&sr=c&sig=pcE9UbY%2BfS3ZViFuUB1WeVcqhX5wYIdMxRc8ifsxKV0%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12000,16 +11895,16 @@ "keep-alive" ], "client-request-id": [ - "47946966-c372-11e9-9c40-44032c851686" + "8a2a06be-af33-11ea-b5d6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "Mon, 15 Jun 2020 18:10:48 GMT" ], "Authorization": [ - "SharedKey sdktest2:Pqp1LVID6HMpKmMiKIJJ4WcYcReN7QJpOfm8L+272i4=" + "SharedKey sdktest2:qHNcJLGhHMTYviu7KoJxyhJ9shmnI2sBUB2l/49L2R4=" ] } }, @@ -12019,65 +11914,65 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D7259629DC8103" + "request-id": [ + "df75ed4f-69a4-4772-a0d3-6ab75a2c7e46" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:17 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "10efabb0-f391-4955-9578-26d695dbecb6" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D7259629DC8103\",\"creationTime\":\"2019-08-20T17:45:17.3853443Z\",\"lastModified\":\"2019-08-20T17:45:17.3853443Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-20T17:45:18.734037Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-20T17:45:18.062269Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A30%3A16Z&se=2019-08-27T17%3A45%3A16Z&sp=w&sv=2017-07-29&sr=c&sig=bVYOPdfrMPuJKZS0wQROeVCiAnU8Kxrjj1SRBO3gp5M%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2019-08-20T17:45:18.062269Z\",\"endTime\":\"2019-08-20T17:45:18.734037Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2-1\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_ab68cd4d729ca9bc23e5ffff7aa674c279f32a8304c6be1593d4e03e218f6651_d/files/workitems/ncj-windows-2012-r2-1/job-1/myTask\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D811576A7DD886\",\"creationTime\":\"2020-06-15T18:10:41.9384454Z\",\"lastModified\":\"2020-06-15T18:10:41.9384454Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:41.9384454Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A58Z&se=2020-06-22T18%3A09%3A58Z&sp=w&sv=2017-07-29&sr=c&sig=pcE9UbY%2BfS3ZViFuUB1WeVcqhX5wYIdMxRc8ifsxKV0%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output?restype=container&comp=list", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "client-request-id": [ + "8bfe59b4-af33-11ea-a1b4-44032c851686" ], - "x-ms-client-request-id": [ - "479e95ca-c372-11e9-b8ca-44032c851686" + "accept-language": [ + "en-US" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "ocp-date": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:V/UZfT6VOri2g7A27qdzLqllxvir/pooZRSX4aUionA=" + "SharedKey sdktest2:6PbmfOFbpFjh4wv14vh8aCUJ/00tfg9eGLTeqackbv8=" ] } }, @@ -12087,35 +11982,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "request-id": [ + "c59db824-74e7-4982-9c79-ba5626dce32b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" ], "Transfer-Encoding": [ "chunked" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:19 GMT" ] }, "body": { - "string": "\ufefffileuploaderr.txtTue, 20 Aug 2019 17:45:18 GMT0x8D725962A9D9FBA0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtTue, 20 Aug 2019 17:45:18 GMT0x8D725962A9F4DB3525application/octet-streamqkl+koQBVfcwsY+RqYYRgQ==BlockBlobHottrueunlockedavailabletruestderr.txtTue, 20 Aug 2019 17:45:18 GMT0x8D725962AA170FA0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtTue, 20 Aug 2019 17:45:18 GMT0x8D725962AA3460A4application/octet-streamCY9rzUYh03PK3k6DJie09g==BlockBlobHottrueunlockedavailabletrue" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D811576A7DD886\",\"creationTime\":\"2020-06-15T18:10:41.9384454Z\",\"lastModified\":\"2020-06-15T18:10:41.9384454Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:10:49.028016Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:10:48.418631Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A58Z&se=2020-06-22T18%3A09%3A58Z&sp=w&sv=2017-07-29&sr=c&sig=pcE9UbY%2BfS3ZViFuUB1WeVcqhX5wYIdMxRc8ifsxKV0%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:10:48.465543Z\",\"endTime\":\"2020-06-15T18:10:49.028016Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2-1\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d/files/workitems/ncj-windows-2012-r2-1/job-1/myTask\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "DELETE", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1?api-version=2019-08-01.10.0", + "method": "GET", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12127,146 +12031,122 @@ "keep-alive" ], "client-request-id": [ - "47aa580a-c372-11e9-8d64-44032c851686" + "8c09ba6c-af33-11ea-b81d-44032c851686" ], "accept-language": [ "en-US" ], - "Content-Length": [ - "0" - ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:3e/clmvwyBmJVTrI90SmYPcE3XHtVAkT455y792HKus=" + "SharedKey sdktest2:mou2vNFtJFtTB61cnnvoCliUKB9aeE+UjgxIGKhqH1c=" ] } }, "response": { "status": { - "code": 202, - "message": "Accepted" + "code": 200, + "message": "OK" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "request-id": [ + "65c64ebe-e13d-4f36-a2f1-3fc1f8568ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "request-id": [ - "5039fb54-1cb0-4b76-a0cf-e16fddd14f9f" + "ETag": [ + "0x8D811576A7DD886" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks/myTask\",\"eTag\":\"0x8D811576A7DD886\",\"creationTime\":\"2020-06-15T18:10:41.9384454Z\",\"lastModified\":\"2020-06-15T18:10:41.9384454Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-06-15T18:10:49.028016Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-06-15T18:10:48.418631Z\",\"commandLine\":\"cmd /c echo | set /p dummy=test\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"$AZ_BATCH_TASK_DIR/*.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A54%3A58Z&se=2020-06-22T18%3A09%3A58Z&sp=w&sv=2017-07-29&sr=c&sig=pcE9UbY%2BfS3ZViFuUB1WeVcqhX5wYIdMxRc8ifsxKV0%3D\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskSuccess\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"PT1H\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-06-15T18:10:48.465543Z\",\"endTime\":\"2020-06-15T18:10:49.028016Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2-1\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_cd4b38167bfd53bb61e11ab3dee9ce0456358a1bede3c0352c6da5bbaa90c8f1_d/files/workitems/ncj-windows-2012-r2-1/job-1/myTask\"\r\n }\r\n}" } } }, { "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0", - "body": "{\"id\": \"blobsource1\", \"displayName\": \"Blender Ubuntu standard pool\", \"vmSize\": \"Standard_D1_v2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"Canonical\", \"offer\": \"UbuntuServer\", \"sku\": \"16.04.0-LTS\", \"version\": \"latest\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1, \"targetLowPriorityNodes\": 0, \"enableAutoScale\": false, \"startTask\": {\"commandLine\": \"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\", \"resourceFiles\": [{\"httpUrl\": \"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\", \"filePath\": \"setup-linux-pool.sh\"}], \"userIdentity\": {\"autoUser\": {\"scope\": \"pool\", \"elevationLevel\": \"admin\"}}, \"maxTaskRetryCount\": 0, \"waitForSuccess\": true}}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output?restype=container&comp=list", + "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "client-request-id": [ - "47b4d5ca-c372-11e9-bb31-44032c851686" - ], - "accept-language": [ - "en-US" + "x-ms-version": [ + "2017-07-29" ], - "Content-Length": [ - "757" + "x-ms-client-request-id": [ + "8c14b5dc-af33-11ea-9912-44032c851686" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "x-ms-date": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:Nbd1SyrR1LL0C+r9LMZPVSmo8eoQwVCwsn3iyW8YQc4=" + "SharedKey sdkteststore2:Y9YjaqzBLtGnCb3kPz41tUXTON56NdqjrR0AS5d0Ma4=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1" - ], "Date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1" + "Content-Type": [ + "application/xml" ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "f3ca63b2-6f68-426c-ab9f-99923cff795e" - ], - "DataServiceVersion": [ - "3.0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufefffileuploaderr.txtMon, 15 Jun 2020 18:10:48 GMT0x8D811576EB198400application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtMon, 15 Jun 2020 18:10:48 GMT0x8D811576EB31F2A525application/octet-streamPeulWgAd4NGae2Ht9zU7hw==BlockBlobHottrueunlockedavailabletruestderr.txtMon, 15 Jun 2020 18:10:49 GMT0x8D811576EB47EF50application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtMon, 15 Jun 2020 18:10:49 GMT0x8D811576EB605D74application/octet-streamCY9rzUYh03PK3k6DJie09g==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12278,69 +12158,63 @@ "keep-alive" ], "client-request-id": [ - "47eca2ac-c372-11e9-810b-44032c851686" + "8c21263e-af33-11ea-b8cf-44032c851686" ], "accept-language": [ "en-US" ], + "Content-Length": [ + "0" + ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:VVmV7Y4ckii4aKVHUX7L0hCHIBxrv9AcaDpeQSzNLHg=" + "SharedKey sdktest2:cqb8UJ+deFD4/dzaqXaRL4sYAFHtahDMHVDBwCES8ME=" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725962C1A843B" + "request-id": [ + "3f7cebef-612c-4cc0-b797-36d6d05b9138" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "839d3d5d-5814-437e-b5a7-bdcf430d0129" + "DataServiceVersion": [ + "3.0" ], "Transfer-Encoding": [ "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0", + "body": "{\"id\": \"blobsource1\", \"displayName\": \"Blender Ubuntu standard pool\", \"vmSize\": \"Standard_D1_v2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"Canonical\", \"offer\": \"UbuntuServer\", \"sku\": \"16.04.0-LTS\", \"version\": \"latest\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1, \"targetLowPriorityNodes\": 0, \"enableAutoScale\": false, \"startTask\": {\"commandLine\": \"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\", \"resourceFiles\": [{\"httpUrl\": \"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\", \"filePath\": \"setup-linux-pool.sh\"}], \"userIdentity\": {\"autoUser\": {\"scope\": \"pool\", \"elevationLevel\": \"admin\"}}, \"maxTaskRetryCount\": 0, \"waitForSuccess\": true}}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12351,70 +12225,79 @@ "Connection": [ "keep-alive" ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "49c01926-c372-11e9-8444-44032c851686" + "8c2d64fa-af33-11ea-9202-44032c851686" ], "accept-language": [ "en-US" ], + "Content-Length": [ + "757" + ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:24 GMT" + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:CHsDCW2JEyxhM/tzIFueAWbXXM2W8Tz0cxGkjKkQJtE=" + "SharedKey sdktest2:cATMXtSI0PiH8jN7CqZqML90Xk/Nd1UkF4QKoEINRxY=" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 201, + "message": "Created" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:23 GMT" + "request-id": [ + "055ad29e-ae2c-46a7-9cdf-02b99d22d38d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "1b8c07e6-6074-4850-a237-467cad41d7ec" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "Transfer-Encoding": [ - "chunked" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12426,16 +12309,16 @@ "keep-alive" ], "client-request-id": [ - "4b93d6ae-c372-11e9-a3e3-44032c851686" + "8c5ca540-af33-11ea-ba4f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:27 GMT" + "Mon, 15 Jun 2020 18:10:52 GMT" ], "Authorization": [ - "SharedKey sdktest2:atJV14scQOZoo2OEbJoN8LvAY0WExJZCzIDM9aWOMrg=" + "SharedKey sdktest2:C7ssKJrJbyujyl5Hwz9rYviweNlMMCZpweRlL+jGvaU=" ] } }, @@ -12445,50 +12328,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:27 GMT" + "request-id": [ + "4efce920-0534-47a3-88a0-821c244c981c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "3dd66382-3cce-4f21-9c57-0920531636e8" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12500,16 +12383,16 @@ "keep-alive" ], "client-request-id": [ - "4d68c5c6-c372-11e9-a3c4-44032c851686" + "8e2fa962-af33-11ea-b136-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:30 GMT" + "Mon, 15 Jun 2020 18:10:55 GMT" ], "Authorization": [ - "SharedKey sdktest2:n2gFWdi/b6F7vO/JHpr9ICD4KRRfCm+4PIeGIcMg6zA=" + "SharedKey sdktest2:F29+29y2NLn/f6MsNNxPZY+xxXIypUxwfGqmbwhbah4=" ] } }, @@ -12519,50 +12402,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:29 GMT" + "request-id": [ + "6d0be398-7f34-465e-b0b6-3d137fa6d886" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "c8624a04-9833-461c-9a5b-648d548e44cd" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12574,16 +12457,16 @@ "keep-alive" ], "client-request-id": [ - "4f3d608a-c372-11e9-a1ee-44032c851686" + "9002e162-af33-11ea-a708-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:33 GMT" + "Mon, 15 Jun 2020 18:10:58 GMT" ], "Authorization": [ - "SharedKey sdktest2:O/8+sj6pomr4ISqqO9N7IS7+uZO7md/OJJ8XRzesnjE=" + "SharedKey sdktest2:Gm1aQNG6ORe2c/sWC2AfDYqKwoBXmnH1uH1pJKbkzOU=" ] } }, @@ -12593,50 +12476,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:33 GMT" + "request-id": [ + "9cc4470f-7131-4ece-94a4-e8d73f2a32d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:10:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "be444d3a-4774-45f5-b5bb-6ae858d64424" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12648,16 +12531,16 @@ "keep-alive" ], "client-request-id": [ - "51114b68-c372-11e9-b836-44032c851686" + "91d55794-af33-11ea-a70e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:36 GMT" + "Mon, 15 Jun 2020 18:11:01 GMT" ], "Authorization": [ - "SharedKey sdktest2:X80axkerQm+C3mFT6UQKtWRS2rkWSFkAc0acT2lfBOA=" + "SharedKey sdktest2:ss6njP449yLHGlyCUdbHWi4QRlgkQriJ5EUmBwdUdJE=" ] } }, @@ -12667,50 +12550,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:35 GMT" + "request-id": [ + "8038188b-bf07-44bb-ae49-ca4a672a67e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "93702ffe-8e8d-4b88-b630-c34ddf932cf0" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12722,16 +12605,16 @@ "keep-alive" ], "client-request-id": [ - "52e48be4-c372-11e9-aeed-44032c851686" + "93a88322-af33-11ea-a182-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:39 GMT" + "Mon, 15 Jun 2020 18:11:04 GMT" ], "Authorization": [ - "SharedKey sdktest2:bKFtiYVRU3Z1dOYdXfu7n49G5TZ+1BRrF74wKo8aINs=" + "SharedKey sdktest2:m+Xd3nZre3RSbQL2Y4oYMo7zFjBzbJwAV6tjdr8Avrk=" ] } }, @@ -12741,50 +12624,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:39 GMT" + "request-id": [ + "84020a89-83cf-4660-bc11-79249912cd33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "1425543d-fb03-4307-bc1f-81f19ed45112" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12796,16 +12679,16 @@ "keep-alive" ], "client-request-id": [ - "54b7d9a6-c372-11e9-91b0-44032c851686" + "957f21da-af33-11ea-aa1e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:42 GMT" + "Mon, 15 Jun 2020 18:11:07 GMT" ], "Authorization": [ - "SharedKey sdktest2:ZcdNTD1N2TWBwwGe+YMNxIXIXrcFyAPtsvogQuax7FA=" + "SharedKey sdktest2:JH6WQNpomwgSFYTVXuX3dYMuvmVynkmwJEUOLJOpmbo=" ] } }, @@ -12815,50 +12698,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:42 GMT" + "request-id": [ + "2ef5da05-c789-4793-81c0-d179195c7278" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "d1ca0d37-115e-48be-b809-ab6988e837bd" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12870,16 +12753,16 @@ "keep-alive" ], "client-request-id": [ - "568dc242-c372-11e9-b2b7-44032c851686" + "975224d8-af33-11ea-b6c3-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:45 GMT" + "Mon, 15 Jun 2020 18:11:10 GMT" ], "Authorization": [ - "SharedKey sdktest2:bbeAKBlsA+34ho857UnsgL8KsEB2rqLMo2ZobsFjuwU=" + "SharedKey sdktest2:rwE068xxmQdccMNvgwoNRly+PymeYUvRQglEzBVZGuI=" ] } }, @@ -12889,50 +12772,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:45 GMT" + "request-id": [ + "2e951e86-e913-4d50-bc4b-b8a898723aaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "75e3361f-cedf-4cd0-a5c5-f53d9a909abe" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12944,16 +12827,16 @@ "keep-alive" ], "client-request-id": [ - "5860a7f6-c372-11e9-99bb-44032c851686" + "9924dbbe-af33-11ea-bec8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:48 GMT" + "Mon, 15 Jun 2020 18:11:13 GMT" ], "Authorization": [ - "SharedKey sdktest2:sccm3YU5dTg28SNdrE1oCaqefGO5k6tfpQB16Rn9wjI=" + "SharedKey sdktest2:ymXOsdrhRtcbIUt1rv7poZ5XfahOhdI6sZ2k8oO0Ahk=" ] } }, @@ -12963,50 +12846,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:48 GMT" + "request-id": [ + "34a072be-9656-4be6-843c-7febf8d5ccc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "7ee81982-65ea-4a7c-9f48-fda518631571" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13018,16 +12901,16 @@ "keep-alive" ], "client-request-id": [ - "5a37574a-c372-11e9-92a7-44032c851686" + "9af8b388-af33-11ea-a944-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:51 GMT" + "Mon, 15 Jun 2020 18:11:16 GMT" ], "Authorization": [ - "SharedKey sdktest2:X2GO1nWxAzV8ql1PeBCWJ2fe6rKsznlmqwCyKG64S6E=" + "SharedKey sdktest2:csljy5MMt9O2cz6YQji/rhLt5MdshZLjsiXAea4M/us=" ] } }, @@ -13037,50 +12920,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:51 GMT" + "request-id": [ + "841cefe0-fa14-4bc4-b4ae-e06d174293cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "53a42575-d0c2-46e8-b276-4e93fa0fc219" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13092,16 +12975,16 @@ "keep-alive" ], "client-request-id": [ - "5c0fa686-c372-11e9-b91c-44032c851686" + "9cce83f4-af33-11ea-b975-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:54 GMT" + "Mon, 15 Jun 2020 18:11:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:/Mw2aVV9YAA/uA5EhWuXVNjPglx16rTYtJyA9vq22U8=" + "SharedKey sdktest2:NB+k6yzSAl7Pbcmaw+3AyvSe7VW2IJB3y/9rY1UbkrQ=" ] } }, @@ -13111,50 +12994,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:54 GMT" + "request-id": [ + "38eeb7cf-9d49-4589-8e74-fd616575fe91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "82b2078d-6a5e-4ad2-b801-0a1489a826c3" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13166,16 +13049,16 @@ "keep-alive" ], "client-request-id": [ - "5de3b250-c372-11e9-ad92-44032c851686" + "9ea18050-af33-11ea-ac3f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:58 GMT" + "Mon, 15 Jun 2020 18:11:22 GMT" ], "Authorization": [ - "SharedKey sdktest2:8WQ9mYqxkoX138Galbp0Yx5sEQyW1a7Hl6Db3qtbYIM=" + "SharedKey sdktest2:reKx8Wg80RobWm+2eTqfpbq0Vh/9jRz5Vo+AwD1or20=" ] } }, @@ -13185,50 +13068,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:57 GMT" + "request-id": [ + "62b43162-d5ee-4d81-890f-4cdaa129e841" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "143807ae-2c22-493b-9ce2-31c74719b5ef" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13240,16 +13123,16 @@ "keep-alive" ], "client-request-id": [ - "5fba9c5c-c372-11e9-b9f2-44032c851686" + "a074b218-af33-11ea-a09d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:01 GMT" + "Mon, 15 Jun 2020 18:11:25 GMT" ], "Authorization": [ - "SharedKey sdktest2:7X4QuUKm51a+kUygJBcMXDUx2QATnlrUm1l5pxP/jRA=" + "SharedKey sdktest2:hzZT5o9KPZxIRhh6ZHhwGIPJ4TyVLie7+xLcnhFPsiA=" ] } }, @@ -13259,50 +13142,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:01 GMT" + "request-id": [ + "6a135305-c381-40b1-8f8e-20be1cf9735f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "b302e78d-6439-49d5-bc85-dbf167d70c69" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13314,16 +13197,16 @@ "keep-alive" ], "client-request-id": [ - "61923d1c-c372-11e9-b01b-44032c851686" + "a2479c38-af33-11ea-a167-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:04 GMT" + "Mon, 15 Jun 2020 18:11:28 GMT" ], "Authorization": [ - "SharedKey sdktest2:gTbr+5VkwhTNNIXSF5wu+h5ifou19fOwh2HQMoefFFM=" + "SharedKey sdktest2:XsiguDJs6xnBIAhgxagmDhWHYQNQPHa+84+CPH9TCwY=" ] } }, @@ -13333,50 +13216,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:03 GMT" + "request-id": [ + "94974dd2-029b-49e2-80f7-35e0cfff0a75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "bb55b372-7e59-4b7c-8948-a70782433662" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13388,16 +13271,16 @@ "keep-alive" ], "client-request-id": [ - "6367a9de-c372-11e9-9ec3-44032c851686" + "a41dd83a-af33-11ea-92d2-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:07 GMT" + "Mon, 15 Jun 2020 18:11:31 GMT" ], "Authorization": [ - "SharedKey sdktest2:ALOSRO+vz38KYlRxlsPy1mayK+lm6UuIyF5GK/wtYJM=" + "SharedKey sdktest2:kKA/BSOT9hbhEaeX3A6N8HzvDWOuGM+um9IDMfNoNig=" ] } }, @@ -13407,50 +13290,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:06 GMT" + "request-id": [ + "0dd60fc5-617a-4e4c-ac8f-711b34db7a01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "032f5991-361f-4e50-a562-cf5df41ec619" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13462,16 +13345,16 @@ "keep-alive" ], "client-request-id": [ - "653cf14a-c372-11e9-9b94-44032c851686" + "a5f0f792-af33-11ea-b514-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:10 GMT" + "Mon, 15 Jun 2020 18:11:35 GMT" ], "Authorization": [ - "SharedKey sdktest2:/f+geWjGZyK1Rc0sTRs7nggTKkX6DzLqxe5CyI5+p4w=" + "SharedKey sdktest2:pDy46+UKxCrvVxsrEhcMQatv0cyzx5JNKZ2blKwqAf0=" ] } }, @@ -13481,50 +13364,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:10 GMT" + "request-id": [ + "85000158-f22f-4d28-ac00-d43a6e3dd739" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "e5b37bc7-8c7e-445f-b036-1b62064b65f1" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13536,16 +13419,16 @@ "keep-alive" ], "client-request-id": [ - "670f98e2-c372-11e9-bd73-44032c851686" + "a7c3f3d8-af33-11ea-ac6f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:13 GMT" + "Mon, 15 Jun 2020 18:11:38 GMT" ], "Authorization": [ - "SharedKey sdktest2:wtWUHV/+pQ9x5nl1JO3thwwBk+XGq/LzU5hC4Zd6zDw=" + "SharedKey sdktest2:Kq13wcaDqpGnQxnsuBCptyri2LwV865nFo2f/gnCtmo=" ] } }, @@ -13555,50 +13438,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:13 GMT" + "request-id": [ + "7d2d4bb7-1a51-4805-81f0-a83ce889c52b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "99c76b74-d005-46e9-afd7-3f88f908c68b" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13610,16 +13493,16 @@ "keep-alive" ], "client-request-id": [ - "68e313c0-c372-11e9-a881-44032c851686" + "a999fa94-af33-11ea-8cba-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:16 GMT" + "Mon, 15 Jun 2020 18:11:41 GMT" ], "Authorization": [ - "SharedKey sdktest2:JcdqGi3P2XAXRS0JDayWC7yp9RWCh8qUzBR4vqnNGCA=" + "SharedKey sdktest2:zF8e/I6j6FA0eDmCdAXe0rP5XYtHu1wuDJv1mzY6vd8=" ] } }, @@ -13629,50 +13512,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:16 GMT" + "request-id": [ + "33419eb3-fba1-46f6-b0d7-4aae6a76b113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "5cf54389-9bf7-4581-ad45-34b21384bea3" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13684,16 +13567,16 @@ "keep-alive" ], "client-request-id": [ - "6ab6f8b4-c372-11e9-a0c8-44032c851686" + "ab6d29ec-af33-11ea-a746-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:19 GMT" + "Mon, 15 Jun 2020 18:11:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:nkRkRvY4DTVViGGqxYg6Y4GbIEe+DkZBgsbJh/E4O5o=" + "SharedKey sdktest2:MOKuieAD25LIoB8zjVfYZk8a/27s8ujH9J4H6KWX56M=" ] } }, @@ -13703,50 +13586,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:19 GMT" + "request-id": [ + "a627c2c9-69dc-478e-ad3e-ef6883a9299d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "0x8D8115770624E25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "0a94af53-d0ec-4c04-b3ce-97b665235eea" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13758,16 +13641,16 @@ "keep-alive" ], "client-request-id": [ - "6c904654-c372-11e9-9d4d-44032c851686" + "ad462834-af33-11ea-8590-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:22 GMT" + "Mon, 15 Jun 2020 18:11:47 GMT" ], "Authorization": [ - "SharedKey sdktest2:J79K//NC0/jRnQiRaLu9N0T8LgI1mEeXcMM9BC6ckjQ=" + "SharedKey sdktest2:iKGgj50385LvDK81RbgJqB7F9tU7ozilv3mzsVsP9fg=" ] } }, @@ -13777,50 +13660,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:21 GMT" + "request-id": [ + "7c68d7b7-f50d-4c56-a909-3d620e905953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "af2f280d-d411-493c-afa3-b6d9da16aa1b" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13832,16 +13715,16 @@ "keep-alive" ], "client-request-id": [ - "6e665b68-c372-11e9-9e79-44032c851686" + "af19aae8-af33-11ea-a922-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:25 GMT" + "Mon, 15 Jun 2020 18:11:50 GMT" ], "Authorization": [ - "SharedKey sdktest2:8uzNcOB5A5/IGgKQ8v/z1cGU72tLlFTKBq4/fdmNz0w=" + "SharedKey sdktest2:vUhfAYf6gRVF5SHz548Z6PZwEdnm0jeGvUh5OdszB68=" ] } }, @@ -13851,50 +13734,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:25 GMT" + "request-id": [ + "43bb1c60-fecf-40ea-8ac7-f7e901822867" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "dfd8a08e-5ee0-4240-9ff7-d0bf10e5a6dc" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13906,16 +13789,16 @@ "keep-alive" ], "client-request-id": [ - "703b9292-c372-11e9-80b8-44032c851686" + "b0ef8648-af33-11ea-bb4e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:28 GMT" + "Mon, 15 Jun 2020 18:11:53 GMT" ], "Authorization": [ - "SharedKey sdktest2:5i4EP2WPEtovbPGofxzhdjSwDJhYxuj7YhiWFxIKUfU=" + "SharedKey sdktest2:RLxWrvoN3vrn0FwopkJl4a5qucRufTuIq8o2vjyntSA=" ] } }, @@ -13925,50 +13808,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:27 GMT" + "request-id": [ + "4e4bfdfe-5a6c-4355-8f1c-0bf949ca07c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "cc6b86c8-82b8-418c-a143-8ba566e7143e" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13980,16 +13863,16 @@ "keep-alive" ], "client-request-id": [ - "720f5d1a-c372-11e9-8120-44032c851686" + "b2c311c6-af33-11ea-ba69-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:31 GMT" + "Mon, 15 Jun 2020 18:11:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:LqZBE3t/qp4E7FGtl2eNlp5Pg6MNHzRsb67VaXjzlCY=" + "SharedKey sdktest2:AS903bu3IoYLy0PxPk8SuZCWE95gmt4JI9BwiVqL6Kw=" ] } }, @@ -13999,50 +13882,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:31 GMT" + "request-id": [ + "915aef44-6e19-4cde-a01f-31337596c4c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "db9735d7-0546-4e9e-a51a-04a5cca3631e" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14054,16 +13937,16 @@ "keep-alive" ], "client-request-id": [ - "73e48082-c372-11e9-a9f5-44032c851686" + "b49641f4-af33-11ea-9539-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:34 GMT" + "Mon, 15 Jun 2020 18:11:59 GMT" ], "Authorization": [ - "SharedKey sdktest2:pIUDSeQn7ujWmscYWU4ubB+KmPTOD5k207+ftO+4g4U=" + "SharedKey sdktest2:4f3i6MD2kPBEbTRNCA5qIbsC6Ao8Cjx9VvB1XZiqLXA=" ] } }, @@ -14073,50 +13956,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:34 GMT" + "request-id": [ + "b730c9cd-c87c-4095-bc59-c0d3c1ee93f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:11:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "daaed897-1f2b-48db-aebd-058e6cf0b2af" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14128,16 +14011,16 @@ "keep-alive" ], "client-request-id": [ - "75b809b4-c372-11e9-9fb2-44032c851686" + "b6696f80-af33-11ea-84bb-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:38 GMT" + "Mon, 15 Jun 2020 18:12:02 GMT" ], "Authorization": [ - "SharedKey sdktest2:ThwCIFWg59ctGHQL1uTzjQu2AKVNe6YjipdPgcA8Znw=" + "SharedKey sdktest2:JTNE74hh1aaBrCxGEwnjpphr6pj1pxjVOEzDHMKzrww=" ] } }, @@ -14147,50 +14030,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:37 GMT" + "request-id": [ + "8eec2c2f-b012-47c5-845e-703498c61b92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D8115770624E25" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:12:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "87a259dd-2f97-4cb9-875b-dc52bccf2e3a" - ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:10:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D8115770624E25\",\"lastModified\":\"2020-06-15T18:10:51.8242853Z\",\"creationTime\":\"2020-06-15T18:10:51.8242853Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-06-15T18:10:51.8242853Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-06-15T18:12:00.9194584Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", + "method": "DELETE", + "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2020-03-01.11.0", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14202,69 +14085,63 @@ "keep-alive" ], "client-request-id": [ - "778bd4da-c372-11e9-96bd-44032c851686" + "b6721246-af33-11ea-9cfe-44032c851686" ], "accept-language": [ "en-US" ], + "Content-Length": [ + "0" + ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:41 GMT" + "Mon, 15 Jun 2020 18:12:02 GMT" ], "Authorization": [ - "SharedKey sdktest2:9jO83v6JYKMU7pIffeJK6xikqkmMoxIn62m7fCFtfWA=" + "SharedKey sdktest2:Rq4QOhf4aPCYtrR9cWwjkVk+f6V0jK9xORsmMeS/z2I=" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 202, + "message": "Accepted" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:40 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725962C1A843B" + "request-id": [ + "a685d993-3e6c-430e-8eee-80842502afce" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:12:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "1d5059e6-c785-4d14-b57e-198a2a0a7b42" + "DataServiceVersion": [ + "3.0" ], "Transfer-Encoding": [ "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0&timeout=30", + "body": "{\"id\": \"job123\", \"poolInfo\": {\"autoPoolSpecification\": {\"autoPoolIdPrefix\": \"pool123\", \"poolLifetimeOption\": \"job\", \"keepAlive\": false, \"pool\": {\"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"Canonical\", \"offer\": \"UbuntuServer\", \"sku\": \"16.04.0-LTS\", \"version\": \"latest\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1}}}, \"onAllTasksComplete\": \"noaction\"}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14275,70 +14152,79 @@ "Connection": [ "keep-alive" ], + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDQyMiwibmJmIjoxNTkyMjQ0NDIyLCJleHAiOjE1OTIzMzExMjIsImFpbyI6IjQyZGdZRmo2KzQzbmg5cWIwMCtkWE43ZFYvSGNFUUE9IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJwd21jZjdRZ0hFT2NiaUhQZEZvQkFBIiwidmVyIjoiMS4wIn0.k68NmYc5IdfI-fW8hxSoe-blPd6bkuQFxou2pxKkn_vntmUBK75A7t9yv49VEfp7l_e734RDA4vpdbTO3sQr1tZ4iNKusmu2TQnvgM5SdnV90oAKe5jBpJa6BH0hOYyQNE5LvHMs8e8jz-uPz0ZKwBVNA4jzowr51_mxTk0VyL7xz-2VpNRUQDaNztKg2OwuttOM0HQbl_GbAfqR0k7KRFHGms8XGjD2HTDcP1FPARdvnpJcsxQLdjg2JNewuZxq3FZEWCmgeWAL89QkLjdv-zLuhPkt1gSOFYJy8-EyP9SlgS-K98tD_ZQFB_YOJK3F8Gc-5bZm1bNfl4zCs6ruJQ" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "79601f54-c372-11e9-bde6-44032c851686" + "b6a26d08-af33-11ea-bae6-44032c851686" ], "accept-language": [ "en-US" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:44 GMT" + "return-client-request-id": [ + "false" ], - "Authorization": [ - "SharedKey sdktest2:YBl5KHi3iYOH0EKy8Qouk6pwZc5BGrlVHy3LOiVxPC4=" + "Content-Length": [ + "428" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 201, + "message": "Created" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:43 GMT" + "request-id": [ + "e5a4c7f5-8ed6-4165-942c-7f076541ba83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D725962C1A843B" + "0x8D81157A7B6E353" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:12:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "90d3ad71-1823-4618-9c3e-0d5ff5437ef2" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:12:24 GMT" ], - "Transfer-Encoding": [ - "chunked" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", - "body": null, + "method": "POST", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/job123/addtaskcollection?api-version=2020-03-01.11.0", + "body": "{\"value\": [{\"id\": \"1\", \"commandLine\": \"/bin/bash -c 'cat {fileName}'\", \"resourceFiles\": [{\"httpUrl\": \"https://testacct.blob.core.windows.net/\", \"filePath\": \"location\"}]}]}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14349,17 +14235,20 @@ "Connection": [ "keep-alive" ], + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDQ0NCwibmJmIjoxNTkyMjQ0NDQ0LCJleHAiOjE1OTIzMzExNDQsImFpbyI6IjQyZGdZRkRTT25nNm1YTlNsY3AzdmlmV2IzeFVBUT09IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiI3cTZDRGZuTU5FU0l0ckE2SXA4QUFBIiwidmVyIjoiMS4wIn0.m5BX44Vv73PBeaKcQVULI4HwlVWnILJMhA_7MDAdqiuJJ1O1IahYAEkISVkp7HVomklVSAQBKl3s53Zm5YR3Q2SKuj5DhT_8RFpe089EGGxVD8yPGQ63VEKIauDIV2d5VVVO3cqvpcmg_wRw_XFVoPrbnc44cB37_-cfMD3M5sMbAqPBKgAapQSeehTHjY7WWrlWDZxgVzWX0ZmCq86J8lKQutIUoVnaF9GuueQQ27YD4DwmbPhmW-pM3-eQ6aeGInlDjc-Dk4MlbCqDEl1bklY0-1IuVmEPlMo0XPjHW0vjux1pStojY8sGWusCnk0mFs3lu32-1ZizU-PgGDco-Q" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], "client-request-id": [ - "7b337940-c372-11e9-8689-44032c851686" + "c3ad8f4c-af33-11ea-b0eb-44032c851686" ], "accept-language": [ "en-US" ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:47 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:RY+p42LY4oCMYdO7k9XBA6XxQjU3MCX5jMarVHne0+Y=" + "Content-Length": [ + "171" ] } }, @@ -14369,1775 +14258,265 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:46 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "44a2ae57-53ae-4f47-abcb-ef8c8a2b2e83" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", - "body": null, - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "client-request-id": [ - "7d08ad58-c372-11e9-bd0b-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:50 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:0zILMGBISNM413Rklm0U33wDfGZDG4CxU3GDGzWa6Cw=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:50 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "95cea4be-4652-402a-b39e-9ee5b0296995" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", - "body": null, - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "client-request-id": [ - "7edd9662-c372-11e9-a7af-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:k12KFjb7CrhpUlqBnzr8lRGqI2/CcDTj+xrMYqIAuYo=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "67a717ba-17ad-493e-9aab-257290ccda4f" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"blobsource1\",\"displayName\":\"Blender Ubuntu standard pool\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1\",\"eTag\":\"0x8D725962C1A843B\",\"lastModified\":\"2019-08-20T17:45:21.1471931Z\",\"creationTime\":\"2019-08-20T17:45:21.1471931Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-20T17:45:21.1471931Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-20T17:46:52.2025916Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; sleep 1; wait'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\"filePath\":\"setup-linux-pool.sh\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04.0-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\r\n}" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1?api-version=2019-08-01.10.0", - "body": null, - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "client-request-id": [ - "7ee6ae28-c372-11e9-85f8-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "Content-Length": [ - "0" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:sw0Ru0r1hk+uWbtvVWSy/y2EeBc+clW/u8ytk8rUaDY=" - ] - } - }, - "response": { - "status": { - "code": 202, - "message": "Accepted" - }, - "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "747d94a8-712d-4af2-814e-50b396ee5ef0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0&timeout=30", - "body": "{\"id\": \"job123\", \"poolInfo\": {\"autoPoolSpecification\": {\"autoPoolIdPrefix\": \"pool123\", \"poolLifetimeOption\": \"job\", \"keepAlive\": false, \"pool\": {\"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"Canonical\", \"offer\": \"UbuntuServer\", \"sku\": \"16.04.0-LTS\", \"version\": \"latest\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1}}}, \"onAllTasksComplete\": \"noaction\"}", - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "client-request-id": [ - "7f1a2d76-c372-11e9-aec1-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "return-client-request-id": [ - "false" - ], - "Content-Length": [ - "428" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D7259663BD0031" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:54 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "14cb0d4c-8d64-4cd1-b558-c4f955a61f55" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/job123/addtaskcollection?api-version=2019-08-01.10.0", - "body": "{\"value\": [{\"id\": \"1\", \"commandLine\": \"/bin/bash -c 'cat {fileName}'\", \"resourceFiles\": [{\"httpUrl\": \"https://testacct.blob.core.windows.net/\", \"filePath\": \"location\"}]}]}", - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "client-request-id": [ - "7f8b457e-c372-11e9-8010-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "Content-Length": [ - "171" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "ba8403b7-edc4-4ade-a88f-ee1ad083527d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"1\",\"eTag\":\"0x8D7259663DE444D\",\"lastModified\":\"2019-08-20T17:46:54.7047501Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/job123/tasks/1\"\r\n }\r\n ]\r\n}" - } - } - }, - { - "request": { - "method": "PATCH", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/job123?api-version=2019-08-01.10.0", - "body": "{\"onAllTasksComplete\": \"terminatejob\"}", - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "client-request-id": [ - "7fadc10c-c372-11e9-abc9-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "Content-Length": [ - "38" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job123" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:54 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D7259663EC87A8" - ], - "request-id": [ - "fd61eb7a-8863-441f-aa5d-a5578f7f261e" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:54 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2019-08-01", - "body": null, - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-batch/7.0.0 Azure-SDK-For-Python" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" - ], - "x-ms-client-request-id": [ - "7fe35b92-c372-11e9-8a63-44032c851686" - ], - "accept-language": [ - "en-US" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "2729" - ], - "x-ms-original-request-ids": [ - "f6451908-52f2-4fe9-937d-76d9012e29af", - "779308ae-5bb3-442c-bccd-cb92c54137f0" - ], - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ] - }, - "body": { - "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2019-07-16T21:55:40.4909987Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2/listKeys?api-version=2018-02-01", - "body": null, - "headers": { - "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "application/json" - ], - "Connection": [ - "keep-alive" - ], - "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "x-ms-client-request-id": [ - "8028bfa2-c372-11e9-9035-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Cache-Control": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "Pragma": [ - "no-cache" - ], - "content-length": [ - "288" - ] - }, - "body": { - "string": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"abc==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"def==\",\"permissions\":\"FULL\"}]}" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80608112-c372-11e9-a4bf-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:kSj4yabG3dDvxSHTtdVMC6Irdl2tYoImswKXUww/ctE=" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259664B9CF06\"" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-parameters.json?comp=metadata", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "808bec6e-c372-11e9-9ffb-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:J5/0NQDRDfcE8qLM2AzV3zQM1tEWXv1RsGMWxI+dcRo=" - ] - } - }, - "response": { - "status": { - "code": 404, - "message": "The specified blob does not exist." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de5d7-401e-00ac-117f-574597000000\nTime:2019-08-20T17:46:56.2265985Z" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-parameters.json", - "body": "{\r\n \"templateMetadata\": {\r\n \"description\": \"A test application template that makes use of multiple parameters after properly declaring them.\"\r\n },\r\n \"jobManagerTask\": {\r\n \"id\":\"mytask1\",\r\n \"commandLine\":\"myprogram.exe\",\r\n \"resourceFiles\": [ {\r\n \"httpUrl\":\"http://mystorage1.blob.core.windows.net/scripts/myprogram.exe?st=2013-08-09T08%3a49%3a37.0000000Z&se=2013-08-10T08%3a49%3a37.0000000Z&sr=c&sp=d&si=YWJjZGTVMZw%3d%3d&sig= %2bSzBm0wi8xECuGkKw97wnkSZ%2f62sxU%2b6Hq6a7qojIVE%3d\",\r\n \"filePath\":\"myprogram.exe\"\r\n },\r\n {\r\n \"httpUrl\":\"http://mystorage1.blob.core.windows.net/scripts/test.txt?st=2013-08-09T08%3a49%3a37.0000000Z&se=2013-08-10T08%3a49%3a37.0000000Z&sr=c&sp=d&si=YWJjZGTVMZw%3d%3d&sig= %2bSzBm0wi8xECuGkKw97wnkSZ%2f62sxU%2b6Hq6a7qojIVE%3d\",\r\n \"filePath\":\"[parameters('blobName')]\"\r\n } ],\r\n \"environmentSettings\": [ {\r\n \"name\":\"myvariable\",\r\n \"value\":\"myvalue\"\r\n } ],\r\n \"constraints\": {\r\n \"maxWallClockTime\":\"PT1H\",\r\n \"maxTaskRetryCount\":0,\r\n \"retentionTime\":\"PT1H\"\r\n },\r\n \"killJobOnCompletion\":false,\r\n \"runElevated\":false,\r\n \"runExclusive\":true\r\n },\r\n \"metadata\": [ {\r\n \"name\":\"myproperty\",\r\n \"value\":\"[parameters('keyValue')]\"\r\n } ],\r\n \"parameters\": {\r\n \"blobName\" : {\r\n \"type\": \"string\"\r\n },\r\n \"keyValue\" : {\r\n \"type\": \"string\"\r\n }\r\n }\r\n}", - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1551725410.0615716" - ], - "Content-MD5": [ - "GhvIqLxdhgZSxhi6CdQjLQ==" - ], - "Content-Length": [ - "1377" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "8095893a-c372-11e9-927e-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:PUCU2uHpEkVCGmlNyUla4nKcIJPo9Om86OQDwhZb+80=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259664CFA65D\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Content-MD5": [ - "GhvIqLxdhgZSxhi6CdQjLQ==" - ], - "Content-Length": [ - "0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80a2fb68-c372-11e9-bb67-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:CyBt37svbXQVkDm8TcIxt1XrynCFsfjwUyns4Py+IkA=" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 409, - "message": "The specified container already exists." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Content-Length": [ - "230" - ] - }, - "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de5ef-401e-00ac-277f-574597000000\nTime:2019-08-20T17:46:56.3717012Z" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedApplicationTemplateInfo.json?comp=metadata", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80aae9a2-c372-11e9-8322-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:Zf0ra2bs/ZMFW3S78TLZ/z/EX6VhGnfPZfKDFZUbLXc=" - ] - } - }, - "response": { - "status": { - "code": 404, - "message": "The specified blob does not exist." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], - "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de602-401e-00ac-377f-574597000000\nTime:2019-08-20T17:46:56.4617644Z" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedApplicationTemplateInfo.json", - "body": "{\r\n \"templateInfo\": {\r\n \"description\": \"A test application template that specifies the prohibited property 'applicationTemplate'.\"\r\n },\r\n \"applicationTemplateInfo\": {\r\n \"filePath\" : \"sample\\\\path\"\r\n }\r\n}\r\n\r\n\r\n", - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.252081" - ], - "Content-MD5": [ - "xbCZcjm1pOMcwR8Td2yo9w==" - ], - "Content-Length": [ - "219" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80b9449c-c372-11e9-b98b-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:SqcoXkmohS99KXgZk8AwfYua3LtnjI/OuHVPYfawxds=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259664F3133A\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-MD5": [ - "xbCZcjm1pOMcwR8Td2yo9w==" - ], - "Content-Length": [ - "0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80c1da5e-c372-11e9-809d-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:QrJ+WqbEoIEXu7zSgKaKmPGHnAJ7KRCdy7hIq3TD9ks=" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 409, - "message": "The specified container already exists." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-Length": [ - "230" - ] - }, - "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de61a-401e-00ac-4e7f-574597000000\nTime:2019-08-20T17:46:56.5748448Z" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedId.json?comp=metadata", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80c9d28c-c372-11e9-b2d0-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:f5u7CiEeMWCzw0bHzb9rlYbRNLL98Fy7DWb21qgaTcg=" - ] - } - }, - "response": { - "status": { - "code": 404, - "message": "The specified blob does not exist." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de624-401e-00ac-587f-574597000000\nTime:2019-08-20T17:46:56.6308841Z" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedId.json", - "body": "{\r\n \"templateInfo\": {\r\n \"description\": \"A test application template that specifies prohibited property 'id'.\"\r\n },\r\n \"id\" : \"jobid\"\r\n}\r\n\r\n\r\n", - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.252081" - ], - "Content-MD5": [ - "HBCHz/rBYi8V9ILMKx0o+g==" - ], - "Content-Length": [ - "146" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80d32158-c372-11e9-855e-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:hR0xApSOB72e5om0cCsftCq6t6TQCBPBlml5hEdyQYI=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D72596650DA4E3\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-MD5": [ - "HBCHz/rBYi8V9ILMKx0o+g==" - ], - "Content-Length": [ - "0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80dc7146-c372-11e9-8009-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:sUojwrH72/0EicyVIqMB9p0yBqvTbPzFkvTFhIPIXOI=" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 409, - "message": "The specified container already exists." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-Length": [ - "230" - ] - }, - "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de649-401e-00ac-7a7f-574597000000\nTime:2019-08-20T17:46:56.7499687Z" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPoolInfo.json?comp=metadata", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80e4d51e-c372-11e9-b260-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:DHEDR4AV6oYRQVKtAFTDuWRsnVHWFPQH4jIKjQ/IqOY=" - ] - } - }, - "response": { - "status": { - "code": 404, - "message": "The specified blob does not exist." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de654-401e-00ac-047f-574597000000\nTime:2019-08-20T17:46:56.8080098Z" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPoolInfo.json", - "body": "{\r\n \"templateInfo\": {\r\n \"description\": \"A test application template that specifies prohibited property 'poolInfo'.\"\r\n },\r\n \"poolInfo\": {\r\n \"poolId\" : \"swimming\"\r\n } \r\n}\r\n\r\n\r\n", - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.253081" - ], - "Content-MD5": [ - "PFiBkLMhFseOyDvKgJXaRA==" - ], - "Content-Length": [ - "187" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80ee084c-c372-11e9-9278-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:WOx8e66c/we8WePC6GI/j+a4Yefjb98uLHaLmmRE8ms=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D72596652884BA\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-MD5": [ - "PFiBkLMhFseOyDvKgJXaRA==" - ], - "Content-Length": [ - "0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "80fbae86-c372-11e9-a753-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:n3w3i86k0P2B1nLdVvuIWDom3JePIeMsg/fEleo3Xr4=" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 409, - "message": "The specified container already exists." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-Length": [ - "230" - ] - }, - "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de680-401e-00ac-2b7f-574597000000\nTime:2019-08-20T17:46:56.9531128Z" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPriority.json?comp=metadata", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "8103a108-c372-11e9-bf44-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:EoWcxGtkN+HSIuUK+4q6+XjPJVkVfGePJQ7iqmCyRX4=" - ] - } - }, - "response": { - "status": { - "code": 404, - "message": "The specified blob does not exist." - }, - "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" - ], - "x-ms-version": [ - "2017-07-29" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de68f-401e-00ac-397f-574597000000\nTime:2019-08-20T17:46:57.0111534Z" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPriority.json", - "body": "{\r\n \"templateInfo\": {\r\n \"description\": \"A test application template that specifies the prohibited property 'priority'.\"\r\n },\r\n \"displayName\": \"Static Application Template\",\r\n \"priority\": 100\r\n}\r\n\r\n\r\n", - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.253081" - ], - "Content-MD5": [ - "IvRrVHIc/lLy/wSkE22LeA==" - ], - "Content-Length": [ - "206" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "810d2dac-c372-11e9-b614-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:P0CLak5Ohx4OfKBc00v8xHdAezC3K44OSG7v4FYsrA4=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D72596654783FB\"" + "request-id": [ + "e4d727d3-79e8-4ee7-b84c-e69cd9ab6333" ], - "x-ms-request-server-encrypted": [ - "true" + "X-Content-Type-Options": [ + "nosniff" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:46 GMT" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], - "Content-MD5": [ - "IvRrVHIc/lLy/wSkE22LeA==" + "DataServiceVersion": [ + "3.0" ], - "Content-Length": [ - "0" + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"1\",\"eTag\":\"0x8D81157B49E0D6D\",\"lastModified\":\"2020-06-15T18:12:46.3009133Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/job123/tasks/1\"\r\n }\r\n ]\r\n}" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", - "body": null, + "method": "PATCH", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/job123?api-version=2020-03-01.11.0", + "body": "{\"onAllTasksComplete\": \"terminatejob\"}", "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDQ2NiwibmJmIjoxNTkyMjQ0NDY2LCJleHAiOjE1OTIzMzExNjYsImFpbyI6IjQyZGdZTkM2cTdwZ1NpKzNLUCs1Rk9iTlZqSDFBQT09IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJXai1NOS1BV0JrU0JXcC1SUFpFQkFBIiwidmVyIjoiMS4wIn0.UYp3O4B9gXXTbawB3PoLrZ-KUQ6zKe88omR4sJm9iTeXME2ft06o2Fn3FtULmMLFt9QGfyzCHvdhM1_Zk56xJybug4UTv6NbJo8O5065mguNIKVrUFKBRlqaCAq2H8lq8yTEFlwrtD_N06KUCGn-ysi9lQbxdXViCqJVmY5MCSuHU-jJMt6iDCxuC4vCF4X79BrcXluWRFATmdACWBtVY-hqOvXLccxFiLGEcjvqyEEnLohYAvBFyKf2_07hsHdN5nFz1wPF7mezZiY5IxYEFe7yY1xM0TXqltrJGq3G6zHrg9CFQz19OEAShe5aSJtq5CmNozV1fe6c_lNOpgQStQ" ], - "x-ms-client-request-id": [ - "81166c0c-c372-11e9-8fac-44032c851686" + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "client-request-id": [ + "d0a92f0c-af33-11ea-9a86-44032c851686" ], - "Authorization": [ - "SharedKey sdkteststore2:uv+enZU+r9LvCpPwwR/D5B6Zg4VoYBEw7JZo9cUp/qE=" + "accept-language": [ + "en-US" ], "Content-Length": [ - "0" + "38" ] } }, "response": { "status": { - "code": 409, - "message": "The specified container already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" + "request-id": [ + "99f32f2d-804d-4de8-b5c7-e98c8296ea39" ], - "x-ms-error-code": [ - "ContainerAlreadyExists" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "ETag": [ + "0x8D81157B4F6240E" ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Mon, 15 Jun 2020 18:12:46 GMT" ], - "Content-Length": [ - "230" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Last-Modified": [ + "Mon, 15 Jun 2020 18:12:46 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job123" + ], + "DataServiceVersion": [ + "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de6cf-401e-00ac-767f-574597000000\nTime:2019-08-20T17:46:57.1282358Z" + "string": "" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-static.json?comp=metadata", + "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2020-05-01", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-batch/9.0.0 Azure-SDK-For-Python" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" ], "Connection": [ "keep-alive" ], - "x-ms-version": [ - "2017-07-29" + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0NDY3LCJuYmYiOjE1OTIyNDQ0NjcsImV4cCI6MTU5MjMzMTE2NywiYWlvIjoiNDJkZ1lOQzZxN3BnU2krM0tQKzVGT2JOVmpIMUFBPT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6ImRveHhWR1owSlVPdXB6YTdoTUVCQUEiLCJ2ZXIiOiIxLjAifQ.XoXR-2aC6xb_WN9nITKYgXtoZ5fmGCOLEN2LBuIhHPKQvEtV0s48zU-F2_VCHh5KArCCBDR97EJxITPt8CayCUFFxpmlXCZXj8FETakPIlSVnWEggLCJbAgk8Kk3_yfB9ts386kh6klr-7WJ61Ndr4Q07yrLtmXdvJWf6MgOVGKGTfTdYHvWWOnGpJilcaUstboLvNLOH78ZUEac0UL3Cz93PWOsg1fjKq2btPQGB9oHYYI_qM6vs_au-gYWxxNQkdfeuQwmg87OR2rmw3tzPGcMdo2g2NtOsZ2FBoiKI5l8NRADlgvubk2ceOHYR0JsnSZrQ38Rs0QX6Y6yMuxPzA" ], "x-ms-client-request-id": [ - "811e4fc6-c372-11e9-8821-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "d112bc08-af33-11ea-80ee-44032c851686" ], - "Authorization": [ - "SharedKey sdkteststore2:y6GoVnW8MR3LwBf7FK65lFZ2rUxZGqtD6/ZAtroigo4=" + "accept-language": [ + "en-US" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" + "Cache-Control": [ + "no-cache" ], - "x-ms-error-code": [ - "BlobNotFound" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-version": [ - "2017-07-29" + "X-Content-Type-Options": [ + "nosniff" ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "x-ms-original-request-ids": [ + "b6a3fab4-61c0-4a59-9a14-794caed50b03", + "49fadef7-a3a8-4163-a73f-7dfc4472479c" ], "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Mon, 15 Jun 2020 18:12:47 GMT" ], - "Content-Length": [ - "215" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "content-length": [ + "3206" + ], + "Vary": [ + "Accept-Encoding" + ], + "Pragma": [ + "no-cache" + ], + "Expires": [ + "-1" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de6de-401e-00ac-057f-574597000000\nTime:2019-08-20T17:46:57.1862773Z" + "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"},\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2020-06-15T08:14:08.5867562Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"rawr\":\"test\"},\"identity\":{\"type\":\"None\"}}]}" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-static.json", - "body": "{\r\n \"templateMetadata\": {\r\n \"description\": \"A test application template that has no parameters and has exactly the same result every time.\"\r\n },\r\n \"jobManagerTask\": {\r\n \"id\": \"jobManager\",\r\n \"displayName\": \"jobManagerDisplay\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"filePath\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"name1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"name2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT1H\"\r\n },\r\n \"killJobOnCompletion\": false,\r\n \"runElevated\": false\r\n }\r\n}\r\n\r\n\r\n", + "method": "POST", + "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2/listKeys?api-version=2018-02-01", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" ], - "x-ms-blob-type": [ - "BlockBlob" + "Accept-Encoding": [ + "gzip, deflate" ], - "x-ms-meta-lastmodified": [ - "1551725410.0625725" + "Accept": [ + "application/json" ], - "Content-MD5": [ - "27HmU8S9AEeu90aG5z1x1A==" + "Connection": [ + "keep-alive" ], - "Content-Length": [ - "740" + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0NDY4LCJuYmYiOjE1OTIyNDQ0NjgsImV4cCI6MTU5MjMzMTE2OCwiYWlvIjoiNDJkZ1lCRFBURHBqcjVpL3ZEamRRWVp2NWR3OEFBPT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6ImxGU2FWcHBoUlVhbnZGbnVmWmdCQUEiLCJ2ZXIiOiIxLjAifQ.qaIvpfJYk0ZsbveQIH12Ha_rwTNJASA9Hp1-DnUe1JmHglIZNd50-cuUwfP01p4vDIEeIP4GCMjGn0b1J2L_WWe6FjMKlOA88H28xeSOOdV7rPizKYg8dAbTn5MZqG13ZNjduu1pmdr-Ksq6-2u8iaYVCaJ5NxKcQ8HReFgZ54stYLaH6t1ACvXn610uzGVjtqgBRYJsZxPBT6AgIsCZ52qg9fMiMrnoakrGwwj1bx98pgGhEMV4ueuw1bff6f7k6C9n04PfZVIzyDciduWL9h-17X0p5XT6idE_k0d-JUAJUgJcBoPgHIH_zU3QaN4T88LiwDa_JercAp3eFRzqyQ" ], - "x-ms-version": [ - "2017-07-29" + "Content-Type": [ + "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "8127eb74-c372-11e9-9d93-44032c851686" + "d18d9162-af33-11ea-94b1-44032c851686" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "accept-language": [ + "en-US" ], - "Authorization": [ - "SharedKey sdkteststore2:kqibZJeMVRAejeyXRhBLMMuMCMXwhaPBLynhWJwWyFk=" + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-version": [ - "2017-07-29" + "Cache-Control": [ + "no-cache" ], - "ETag": [ - "\"0x8D7259665628AED\"" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], - "x-ms-request-server-encrypted": [ - "true" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Mon, 15 Jun 2020 18:12:48 GMT" + ], + "Content-Type": [ + "application/json" ], - "Content-MD5": [ - "27HmU8S9AEeu90aG5z1x1A==" + "Vary": [ + "Accept-Encoding" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "-1" + ], + "content-length": [ + "288" ] }, "body": { - "string": "" + "string": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"abc==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"def==\",\"permissions\":\"FULL\"}]}" } } }, @@ -16148,7 +14527,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16157,13 +14536,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81313b92-c372-11e9-890f-44032c851686" + "d1f1d25a-af33-11ea-90c3-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:JdxZIXYV2umwVb2BkNy0GmB/ay78/GiWSKm1uUe8W0o=" + "SharedKey sdkteststore2:PMQ+S2GZ66A11CMk58mW4It1ujtxOX/Fnky/lj80xd0=" ], "Content-Length": [ "0" @@ -16176,38 +14555,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de6fe-401e-00ac-247f-574597000000\nTime:2019-08-20T17:46:57.3033597Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a2819e8-601e-001a-1040-434b6f000000\nTime:2020-06-15T18:12:48.8194209Z" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-unsupportedProperty.json?comp=metadata", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-parameters.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16216,128 +14595,116 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "813903c2-c372-11e9-b043-44032c851686" + "d2149c7e-af33-11ea-8e09-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:puj+aKP8+0gxbZAqQnUt8D9XY5YZe+UbYqIhKuDgeCI=" + "SharedKey sdkteststore2:fJBZctTo/tqt+tPVrnPIdY74HbJ9J6EcuFWuCaFkwHU=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" + "ETag": [ + "\"0x8D75C8385B13218\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:24 GMT" ], "Content-Length": [ - "215" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.0615716" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de714-401e-00ac-397f-574597000000\nTime:2019-08-20T17:46:57.3764113Z" + "string": "" } } }, { "request": { "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-unsupportedProperty.json", - "body": "{\r\n \"templateInfo\": {\r\n \"description\": \"A test application template that specifies the unsupported properties'fluxCapacitorModel' and 'vehicleMarque'.\"\r\n },\r\n \"fluxCapacitorModel\": \"DocBrown55\",\r\n \"vehicleMarque\": \"deLorean\"\r\n}\r\n\r\n\r\n", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.2540834" - ], - "Content-MD5": [ - "eSn7zZA04to5Rccq3nxw1A==" - ], - "Content-Length": [ - "240" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "8144c26c-c372-11e9-8e11-44032c851686" + "d21ed5a4-af33-11ea-8e0d-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:WlzjrlzCx8rM/moNwAuOR19YCfKtQCdx+lTm+NKJlE4=" + "SharedKey sdkteststore2:xMnelVbI5akyUENNXjXAoCmg5UcRHvrzQLtLQbPfFlY=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D72596657F3FDC\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Content-Length": [ + "230" ], - "Content-MD5": [ - "eSn7zZA04to5Rccq3nxw1A==" + "Content-Type": [ + "application/xml" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281a0d-601e-001a-3340-434b6f000000\nTime:2020-06-15T18:12:48.9355031Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedApplicationTemplateInfo.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16346,57 +14713,57 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "814dea2e-c372-11e9-97ef-44032c851686" + "d2264fd0-af33-11ea-9c2e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:+nZzWhxwZ1zYhQQzQuddEu/syDaFhuqNrYEARJyzw+U=" - ], - "Content-Length": [ - "0" + "SharedKey sdkteststore2:sAZjOqB+4p6kJShaIYN2+p+fNpm20xS93Aofcv7TFfE=" ] } }, "response": { "status": { - "code": 409, - "message": "The specified container already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" + "ETag": [ + "\"0x8D75C8385CAD93B\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], "Content-Length": [ - "230" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1524153754.252081" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de745-401e-00ac-657f-574597000000\nTime:2019-08-20T17:46:57.4904920Z" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-untypedParameter.json?comp=metadata", + "method": "PUT", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16405,113 +14772,101 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8155aff6-c372-11e9-8a35-44032c851686" + "d22e666e-af33-11ea-9b8a-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:FG2OfkFLZ7szN33Qze4KaZ7+IGfOCCcDB7/4QhUqRfo=" + "SharedKey sdkteststore2:awbbjX6DJ3cYsYNVZiE665h8P+55wXEY/EFsezv2uTE=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 409, + "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ - "BlobNotFound" + "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" + "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de753-401e-00ac-737f-574597000000\nTime:2019-08-20T17:46:57.5455314Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281a31-601e-001a-5540-434b6f000000\nTime:2020-06-15T18:12:49.0375755Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-untypedParameter.json", - "body": "{\r\n \"templateMetadata\": {\r\n \"description\": \"A test application template that declares a property with no specified type.\"\r\n },\r\n \"jobManagerTask\": {\r\n \"id\":\"mytask1\",\r\n \"commandLine\":\"myprogram.exe\",\r\n \"resourceFiles\": [ {\r\n \"httpUrl\":\"http://mystorage1.blob.core.windows.net/scripts/myprogram.exe?st=2013-08-09T08%3a49%3a37.0000000Z&se=2013-08-10T08%3a49%3a37.0000000Z&sr=c&sp=d&si=YWJjZGTVMZw%3d%3d&sig= %2bSzBm0wi8xECuGkKw97wnkSZ%2f62sxU%2b6Hq6a7qojIVE%3d\",\r\n \"filePath\":\"myprogram.exe\"\r\n },\r\n {\r\n \"httpUrl\":\"http://mystorage1.blob.core.windows.net/scripts/test.txt?st=2013-08-09T08%3a49%3a37.0000000Z&se=2013-08-10T08%3a49%3a37.0000000Z&sr=c&sp=d&si=YWJjZGTVMZw%3d%3d&sig= %2bSzBm0wi8xECuGkKw97wnkSZ%2f62sxU%2b6Hq6a7qojIVE%3d\",\r\n \"filePath\":\"[parameters('blobName')]\"\r\n } ],\r\n \"environmentSettings\": [ {\r\n \"name\":\"myvariable\",\r\n \"value\":\"myvalue\"\r\n } ],\r\n \"constraints\": {\r\n \"maxWallClockTime\":\"PT1H\",\r\n \"maxTaskRetryCount\":0,\r\n \"retentionTime\":\"PT1H\"\r\n },\r\n \"killJobOnCompletion\":false,\r\n \"runElevated\":false,\r\n \"runExclusive\":true\r\n },\r\n \"metadata\": [ {\r\n \"name\":\"myproperty\",\r\n \"value\":\"[parameters('keyValue')]\"\r\n } ],\r\n \"parameters\": {\r\n \"blobName\" : {\r\n \"defaultValue\": \"name\"\r\n },\r\n \"keyValue\" : {\r\n \"type\": \"string\"\r\n }\r\n }\r\n}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedId.json?comp=metadata", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1551725410.0829573" - ], - "Content-MD5": [ - "sWJuTwpMQ9cWToECYRCNiQ==" - ], - "Content-Length": [ - "1363" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "815ed718-c372-11e9-a956-44032c851686" + "d235ec18-af33-11ea-88f4-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:vt5gmV/PO3c8e7ibn7aXQ5D9Fn7lhuyS/R/GIfI80aA=" + "SharedKey sdkteststore2:4x4WhY/0mVvgXyjb4nB+L+gD7VkCJzZ310MAic/mxEE=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], "ETag": [ - "\"0x8D7259665993529\"" + "\"0x8D75C8385E28432\"" ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-MD5": [ - "sWJuTwpMQ9cWToECYRCNiQ==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], "Content-Length": [ "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1524153754.252081" ] }, "body": { @@ -16526,7 +14881,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16535,13 +14890,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8167f09a-c372-11e9-86ed-44032c851686" + "d23de16c-af33-11ea-abef-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:BYZqkMgpVii/0xt+fCoQXTlCxclIs64US79BIfNni6w=" + "SharedKey sdkteststore2:j+LKGDtC6kNLHdKziI3rnTapb6HaLZR2x2uLyAyu7Jw=" ], "Content-Length": [ "0" @@ -16554,38 +14909,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:48 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de76e-401e-00ac-0d7f-574597000000\nTime:2019-08-20T17:46:57.6676173Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281a62-601e-001a-0140-434b6f000000\nTime:2020-06-15T18:12:49.1396471Z" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.mergetask.json?comp=metadata", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPoolInfo.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16594,128 +14949,116 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81709a14-c372-11e9-b736-44032c851686" + "d2458cb0-af33-11ea-824d-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:qRJqHxX1XyE4sxXdvs1Nnnj6Jr+pT4Fv3BLukoXzSj8=" + "SharedKey sdkteststore2:dM4myy0KTUafiahBGIf2YeRQuar45nbGQcXVD/4X1GQ=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" + "ETag": [ + "\"0x8D75C8385FA5640\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], "Content-Length": [ - "215" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1524153754.253081" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de777-401e-00ac-167f-574597000000\nTime:2019-08-20T17:46:57.7226567Z" + "string": "" } } }, { "request": { "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.mergetask.json", - "body": "{\r\n \"parameters\": {\r\n \"jobId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"helloworld-job3\",\r\n \"metadata\": {\r\n \"description\": \"The id of Azure Batch job\"\r\n }\r\n },\r\n \"poolId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"helloworld-pool3\",\r\n \"metadata\": {\r\n \"description\": \"The id of Azure Batch pool which runs the job\"\r\n }\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"STANDARD_D1_V2\",\r\n \"metadata\": {\r\n \"description\": \"The size of the virtual machines that run the application\"\r\n }\r\n },\r\n \"vmCount\": {\r\n \"type\": \"int\",\r\n \"defaultValue\": 1,\r\n \"metadata\": {\r\n \"description\": \"The number of virtual machines\"\r\n }\r\n },\r\n \"testData\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"in\",\r\n \"metadata\": {\r\n \"description\": \"The auto-storage group where the input data is stored\"\r\n }\r\n },\r\n \"outputData\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"output\",\r\n \"metadata\": {\r\n \"description\": \"The auto-storage group where the output data is uploaded\"\r\n }\r\n }\r\n },\r\n \"variables\": {\r\n \"osType\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"job\": {\r\n \"type\": \"Microsoft.Batch/batchAccounts/jobs\",\r\n \"apiVersion\": \"2018-12-01\",\r\n \"properties\": {\r\n \"id\": \"[parameters('jobId')]\",\r\n \"onAllTasksComplete\": \"terminateJob\",\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"[parameters('poolId')]\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"[parameters('vmSize')]\",\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": \"[variables('osType')]\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n },\r\n \"targetDedicatedNodes\": \"[parameters('vmCount')]\"\r\n }\r\n }\r\n },\r\n \"taskFactory\": {\r\n \"type\": \"taskPerFile\",\r\n \"source\" : {\r\n \"fileGroup\" : \"[parameters('testData')]\"\r\n },\r\n \"repeatTask\": {\r\n \"commandLine\": \"/bin/bash -c 'cat {fileName}'\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\" : \"{url}\",\r\n \"filePath\" : \"{fileName}\"\r\n }\r\n ],\r\n \"outputFiles\": [\r\n {\r\n \"filePattern\": \"**/stdout.txt\",\r\n \"destination\": {\r\n \"autoStorage\": {\r\n \"path\": \"output-{fileName}\",\r\n \"fileGroup\": \"[parameters('outputData')]\"\r\n }\r\n },\r\n \"uploadOptions\": {\r\n \"uploadCondition\": \"TaskSuccess\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mergeTask\" : {\r\n \"displayName\": \"myMergeTask\",\r\n \"commandLine\": \"/bin/bash -c 'ls'\",\r\n \"resourceFiles\": [\r\n {\r\n \"autoStorageContainerName\": \"fgrp-[parameters('outputData')]\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}\r\n", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1552419189.7367494" - ], - "Content-MD5": [ - "2ILRwlJk1kyfaTTP253tiA==" - ], - "Content-Length": [ - "4072" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "81799c10-c372-11e9-a794-44032c851686" + "d24fe176-af33-11ea-9089-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:HiIiePiYS4ozAlO534lkkMl341I+OmeS1+/lkRmnACY=" + "SharedKey sdkteststore2:YUbn5KMF7P5MqSUPBmpVcsV6ra5pcnE8oKdOc4tTJ04=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259665B43C13\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Content-Length": [ + "230" ], - "Content-MD5": [ - "2ILRwlJk1kyfaTTP253tiA==" + "Content-Type": [ + "application/xml" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281a8c-601e-001a-2640-434b6f000000\nTime:2020-06-15T18:12:49.2567296Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPriority.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16724,57 +15067,57 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81830890-c372-11e9-bbd3-44032c851686" + "d2574d5c-af33-11ea-b619-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:ENnOAE8WLYXq8+5XuZ2jB5g/lqfjVteRU2nwOFysp4k=" - ], - "Content-Length": [ - "0" + "SharedKey sdkteststore2:8s3Qflj03pK95P83QI3/2oPA6mIuhRAg4Exb0nB6AeY=" ] } }, "response": { "status": { - "code": 409, - "message": "The specified container already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" + "ETag": [ + "\"0x8D75C838614E7F2\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], "Content-Length": [ - "230" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1524153754.253081" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de792-401e-00ac-2f7f-574597000000\nTime:2019-08-20T17:46:57.8397390Z" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parameters.json?comp=metadata", + "method": "PUT", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16783,113 +15126,101 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "818b1362-c372-11e9-aee9-44032c851686" + "d25f136c-af33-11ea-af3c-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:ebzKMRM9P3zAIF/g/BQhdOxLuZnO5JHkhdw6Q4aBqH4=" + "SharedKey sdkteststore2:PsqjCNICrpMhFvbVjsgd5YVz0zZsx4FZXhwc3Bh0Gxs=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 409, + "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ - "BlobNotFound" + "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" + "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de7a1-401e-00ac-3d7f-574597000000\nTime:2019-08-20T17:46:57.8947784Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281aac-601e-001a-4540-434b6f000000\nTime:2020-06-15T18:12:49.3578013Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parameters.json", - "body": "{\r\n \"jobId\": {\r\n \"value\": \"helloworld\"\r\n },\r\n \"poolId\": {\r\n \"value\": \"xplatTestPool\"\r\n },\r\n \"outputFileStorageUrl\": {\r\n \"value\": \"\"\r\n },\r\n \"taskStart\": {\r\n \"value\": 1\r\n },\r\n \"taskEnd\": {\r\n \"value\": 3\r\n } \r\n}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-static.json?comp=metadata", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.2550833" - ], - "Content-MD5": [ - "acLZykn1NMEO1oxenbC6dw==" - ], - "Content-Length": [ - "254" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "8193e32e-c372-11e9-91af-44032c851686" + "d266da90-af33-11ea-aeda-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:vwJrUdNT+37UkMIrHd04MJDxS8H+Bt9eN/6Du8s5+ms=" + "SharedKey sdkteststore2:m9j3gxno14/Ng1SA8a0l28pQliAVKxOF/+7jXYcR8rg=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], "ETag": [ - "\"0x8D7259665CE7F92\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "\"0x8D75C83863175C7\"" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-MD5": [ - "acLZykn1NMEO1oxenbC6dw==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], "Content-Length": [ "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.0625725" ] }, "body": { @@ -16904,7 +15235,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16913,13 +15244,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "819d3200-c372-11e9-9696-44032c851686" + "d26eb824-af33-11ea-85d8-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:GrHTIYcck903br+PBymwklMeomrK0OqTSeXYDnsHlsk=" + "SharedKey sdkteststore2:UwhehJTTquj7/GuZFQGvaw1mHOP+detwwZM9D2Vg+W4=" ], "Content-Length": [ "0" @@ -16932,38 +15263,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de7d4-401e-00ac-697f-574597000000\nTime:2019-08-20T17:46:58.0108609Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281acd-601e-001a-6240-434b6f000000\nTime:2020-06-15T18:12:49.4608736Z" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parametricsweep.json?comp=metadata", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-unsupportedProperty.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -16972,128 +15303,116 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81a507e8-c372-11e9-bacc-44032c851686" + "d27687f6-af33-11ea-a50f-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:smSKYxOG/nW2OQlNWK58MMNO2NPikBLrx/uhIqw4Sr0=" + "SharedKey sdkteststore2:ADv3lkIUPWKLyUPaAH3XiXlFLlsdURHsc3Qyc9P3MOs=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" + "ETag": [ + "\"0x8D75C8386496EEC\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], "Content-Length": [ - "215" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1524153754.2540834" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de805-401e-00ac-087f-574597000000\nTime:2019-08-20T17:46:58.0669001Z" + "string": "" } } }, { "request": { "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parametricsweep.json", - "body": "{\r\n \"parameters\": {\r\n \"inputFileGroup\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"convert_data\",\r\n \"metadata\": {\r\n \"description\": \"The auto-storage group where the input data is stored\"\r\n }\r\n },\r\n \"outputFileStorageUrl\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"The SAS URL for a container where outputs will be stored\"\r\n }\r\n },\r\n \"inputType\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"wav\",\r\n \"metadata\": {\r\n \"description\": \"The extension of the input data\"\r\n }\r\n },\r\n \"poolId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ffmpeg-pool\",\r\n \"metadata\": {\r\n \"description\": \"The id of Azure Batch pool which runs the job\"\r\n }\r\n },\r\n \"jobId\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"The id of Azure Batch job\"\r\n }\r\n },\r\n \"taskStart\": {\r\n \"type\": \"int\",\r\n \"metadata\": {\r\n \"description\": \"The sweep start parameter\"\r\n }\r\n },\r\n \"taskEnd\": {\r\n \"type\": \"int\",\r\n \"metadata\": {\r\n \"description\": \"The sweep end parameter\"\r\n }\r\n }\r\n },\r\n \"job\": {\r\n \"type\": \"Microsoft.Batch/batchAccounts/jobs\",\r\n \"apiVersion\": \"2018-12-01\",\r\n \"properties\": {\r\n \"id\": \"[parameters('jobId')]\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"PT5H\",\r\n \"maxTaskRetryCount\": 1\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"[parameters('poolId')]\"\r\n },\r\n \"taskFactory\": {\r\n \"type\": \"parametricSweep\",\r\n \"parameterSets\": [\r\n {\r\n \"start\": \"[parameters('taskStart')]\",\r\n \"end\": \"[parameters('taskEnd')]\",\r\n \"step\": 1\r\n }\r\n ],\r\n \"repeatTask\": {\r\n \"commandLine\": \"ffmpeg -y -i sample{0}.[parameters('inputType')] -acodec libmp3lame output.mp3\",\r\n \"resourceFiles\": [\r\n {\r\n \"source\": { \r\n \"fileGroup\": \"[parameters('inputFileGroup')]\",\r\n \"prefix\": \"sample{0}.[parameters('inputType')]\"\r\n }\r\n }\r\n ],\r\n \"outputFiles\": [\r\n {\r\n \"filePattern\": \"output.mp3\",\r\n \"destination\": {\r\n \"container\": {\r\n \"path\": \"audio{0}.mp3\",\r\n \"containerUrl\": \"[parameters('outputFileStorageUrl')]\"\r\n }\r\n },\r\n \"uploadOptionsa\": {\r\n \"uploadCondition\": \"TaskSuccess\"\r\n }\r\n }\r\n ],\r\n \"packageReferences\": [\r\n {\r\n \"type\": \"aptPackage\",\r\n \"id\": \"ffmpeg\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}\r\n", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1551725410.1117144" - ], - "Content-MD5": [ - "BvsOoLG3cYJ873sw8nI4/Q==" - ], - "Content-Length": [ - "3565" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "81ae3462-c372-11e9-a5ed-44032c851686" + "d27e7f64-af33-11ea-9b03-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:d7pt1RTWtfUce12jQQYyo9nnE7orsW5BDmLW6320GGE=" + "SharedKey sdkteststore2:qA5A5yxVOQrkjuG4wY5OUvRBqqiyE6Kbl/uzuSqjdZ8=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259665E89BF1\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Content-Length": [ + "230" ], - "Content-MD5": [ - "BvsOoLG3cYJ873sw8nI4/Q==" + "Content-Type": [ + "application/xml" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281af9-601e-001a-0840-434b6f000000\nTime:2020-06-15T18:12:49.5629460Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-untypedParameter.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17102,57 +15421,57 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81b7f852-c372-11e9-a2c4-44032c851686" + "d285eb34-af33-11ea-902f-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:sJ0htrNRkNxVYOXFRHhjUglkUW2Y09UfdS+iZdomGOg=" - ], - "Content-Length": [ - "0" + "SharedKey sdkteststore2:RQTZ01u0EGuZtHNZzD61us2l5KTde9OPkDagA416H4U=" ] } }, "response": { "status": { - "code": 409, - "message": "The specified container already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" + "ETag": [ + "\"0x8D75C83866140FA\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], "Content-Length": [ - "230" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.0829573" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de865-401e-00ac-567f-574597000000\nTime:2019-08-20T17:46:58.1879853Z" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.resourcefile-legacy.json?comp=metadata", + "method": "PUT", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17161,113 +15480,101 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81c00e9e-c372-11e9-8e87-44032c851686" + "d28dcb68-af33-11ea-b16e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:UlRP30gLyVD7Mw7bMg7Eg74qJ8H+jJVCO9x8Ix8F+fY=" + "SharedKey sdkteststore2:Eg0MQHUyUuxXJFBXG/XlAhCbUXW9eh6fth1frMspBE0=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 409, + "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ - "BlobNotFound" + "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" + "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de883-401e-00ac-6d7f-574597000000\nTime:2019-08-20T17:46:58.2460268Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281b2b-601e-001a-3840-434b6f000000\nTime:2020-06-15T18:12:49.6660187Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.resourcefile-legacy.json", - "body": "{\r\n \"job\": {\r\n \"type\": \"Microsoft.Batch/batchAccounts/jobs\",\r\n \"apiVersion\": \"2018-12-01\",\r\n \"properties\": {\r\n \"id\": \"job123\",\r\n \"onAllTasksComplete\": \"terminateJob\",\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"pool123\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"STANDARD_D1_V2\",\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n },\r\n \"targetDedicatedNodes\": \"1\"\r\n }\r\n }\r\n },\r\n \"taskFactory\": {\r\n \"type\": \"taskCollection\",\r\n \"tasks\": [\r\n {\r\n \"id\": \"1\",\r\n \"commandLine\": \"/bin/bash -c 'cat {fileName}'\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"location\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.mergetask.json?comp=metadata", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1566231778.0575619" - ], - "Content-MD5": [ - "9iVvz/Pf/FsbJv0miSuvzw==" - ], - "Content-Length": [ - "1245" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "81c90f4a-c372-11e9-8b60-44032c851686" + "d295cd5e-af33-11ea-a90f-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:04WI+EvqlU97Q+P7w/MrRu0A14cAzqJdTzBL5N4Bipc=" + "SharedKey sdkteststore2:sdlM/BX6S1pMOUTuqCHO9ekAlH8qvYwTqZqZiNbvOrI=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], "ETag": [ - "\"0x8D7259666041824\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "\"0x8D75C8386793A24\"" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-MD5": [ - "9iVvz/Pf/FsbJv0miSuvzw==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], "Content-Length": [ "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1552419189.7367494" ] }, "body": { @@ -17282,7 +15589,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17291,13 +15598,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81d2cf48-c372-11e9-8f39-44032c851686" + "d29ece52-af33-11ea-95c3-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:XB6Aa5jJzu0j4BMfQBmzCsliJE1VV971w6N6G2HxNuA=" + "SharedKey sdkteststore2:io+9g/vEAs1Z1LapHglutS8FeRg74H43bIbAmy3hHqU=" ], "Content-Length": [ "0" @@ -17310,38 +15617,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de8a6-401e-00ac-0a7f-574597000000\nTime:2019-08-20T17:46:58.3681127Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281b69-601e-001a-7040-434b6f000000\nTime:2020-06-15T18:12:49.7790984Z" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.apiversionfail.json?comp=metadata", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parameters.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17350,128 +15657,116 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81dba8e8-c372-11e9-ab63-44032c851686" + "d2a70c68-af33-11ea-809d-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:EAhUSZGNzbaJVrU9u6AyrO9mlrk/wixV7l7LLEJbSKA=" + "SharedKey sdkteststore2:T/HjCmYZBNmoivE/SGQalhD3tSfULqKLuotIRvzJHV0=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" + "ETag": [ + "\"0x8D75C838694DD6E\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], "Content-Length": [ - "215" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1524153754.2550833" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de8be-401e-00ac-197f-574597000000\nTime:2019-08-20T17:46:58.4241524Z" + "string": "" } } }, { "request": { "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.apiversionfail.json", - "body": "{\r\n \"parameters\": {\r\n \"jobId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ffmpegpool\",\r\n \"metadata\": {\r\n \"description\": \"The name of Azure Batch pool which runs the job\"\r\n }\r\n },\r\n \"poolId\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"The name of Azure Batch job\"\r\n }\r\n }\r\n },\r\n \"job\": {\r\n \"type\": \"Microsoft.Batch/batchAccounts/jobs\",\r\n \"apiVersion\": \"2030-12-01\",\r\n \"properties\": {\r\n \"fob\": \"[parameters('jobId')]\",\r\n \"ks\": {\r\n \"poolId\": \"[parameters('poolId')]\"\r\n },\r\n \"ls\": {\r\n \"type\": \"taskCollection\",\r\n \"tasks\": [\r\n {\r\n \"id\" : \"mytask1\",\r\n \"commandLine\": \"cmd /c echo hello1\"\r\n },\r\n {\r\n \"id\" : \"mytask2\",\r\n \"commandLine\": \"cmd /c echo hello2\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1551725410.1238391" - ], - "Content-MD5": [ - "kPzKWo4J2zRaerzJw2Z2xg==" - ], - "Content-Length": [ - "1140" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "81e4e49c-c372-11e9-b4ab-44032c851686" + "d2af7ee6-af33-11ea-8a99-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:bISP5Ol4D+TPYD0ta5Ybw17Ebd8GxbauTubj1MKisb4=" + "SharedKey sdkteststore2:ToqBkBN/sEDYi/HPyDHRNf/OHXJx6tj0eMQ7+jTVSZc=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D72596661F1F0E\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Content-Length": [ + "230" ], - "Content-MD5": [ - "kPzKWo4J2zRaerzJw2Z2xg==" + "Content-Type": [ + "application/xml" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281b9b-601e-001a-2140-434b6f000000\nTime:2020-06-15T18:12:49.8911774Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parametricsweep.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17480,57 +15775,57 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81f05674-c372-11e9-a484-44032c851686" + "d2b83180-af33-11ea-ae84-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:oyLddcBj+iVceEOZoqE3E9y2bf2OZP1jYzdLZEZGULA=" - ], - "Content-Length": [ - "0" + "SharedKey sdkteststore2:CyRVG0nPC/PlOQfpO2qOh9L9cNCAcCp7LZtgnDGcBhE=" ] } }, "response": { "status": { - "code": 409, - "message": "The specified container already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" + "ETag": [ + "\"0x8D75C8386ADC11E\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], "Content-Length": [ - "230" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.1117144" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de8f5-401e-00ac-4e7f-574597000000\nTime:2019-08-20T17:46:58.5572469Z" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.json?comp=metadata", + "method": "PUT", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17539,113 +15834,101 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81f86ca2-c372-11e9-a77b-44032c851686" + "d2c1322e-af33-11ea-96a0-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:tnQy9IhNBOzKHrDR7Ott+CpU/7ZUjiCDrKMkr7GybVQ=" + "SharedKey sdkteststore2:8u2FHJWj1l3Q6BQ2kfdM3y+L4z0EOb12raqKWa1Krcg=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 409, + "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ - "BlobNotFound" + "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ - "215" + "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de91a-401e-00ac-707f-574597000000\nTime:2019-08-20T17:46:58.6142873Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281bb8-601e-001a-3b40-434b6f000000\nTime:2020-06-15T18:12:50.0032565Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.json", - "body": "{\r\n \"parameters\": {\r\n \"jobId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ffmpegpool\",\r\n \"metadata\": {\r\n \"description\": \"The name of Azure Batch pool which runs the job\"\r\n }\r\n },\r\n \"poolId\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"The name of Azure Batch job\"\r\n }\r\n }\r\n },\r\n \"job\": {\r\n \"type\": \"Microsoft.Batch/batchAccounts/jobs\",\r\n \"properties\": {\r\n \"id\": \"[parameters('jobId')]\",\r\n \"poolInfo\": {\r\n \"poolId\": \"[parameters('poolId')]\"\r\n },\r\n \"taskFactory\": {\r\n \"type\": \"taskCollection\",\r\n \"tasks\": [\r\n {\r\n \"id\" : \"mytask1\",\r\n \"commandLine\": \"cmd /c echo hello1\"\r\n },\r\n {\r\n \"id\" : \"mytask2\",\r\n \"commandLine\": \"cmd /c echo hello2\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.resourcefile-legacy.json?comp=metadata", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1551725410.1388402" - ], - "Content-MD5": [ - "rdYsR2RLvOnr9kOYg2y5NQ==" - ], - "Content-Length": [ - "1117" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "8201bc02-c372-11e9-9adf-44032c851686" + "d2c94978-af33-11ea-a000-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:bY5Gtj+1Ra4tusu05O2bYhKeXxyAH8Om4nXmhARWVo4=" + "SharedKey sdkteststore2:AwS40U0GfezHr6hV6bfIENUWV6t+xYj1F8xH06CVuos=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], "ETag": [ - "\"0x8D72596663C2230\"" + "\"0x8D7DCD4966DA2C8\"" ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-MD5": [ - "rdYsR2RLvOnr9kOYg2y5NQ==" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Content-Length": [ "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1582559736.597129" ] }, "body": { @@ -17660,7 +15943,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17669,13 +15952,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "820ac286-c372-11e9-9f17-44032c851686" + "d2d1e8c0-af33-11ea-9553-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:LFWBY+5I/pKxw3MmBv+WIQjVyfrOu1ZfCVOo0lDd/IQ=" + "SharedKey sdkteststore2:nSFXjOV1XHp/gR6+vaUYgkCY6rpkG28oE9a4SWQh3tM=" ], "Content-Length": [ "0" @@ -17688,38 +15971,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de94f-401e-00ac-1f7f-574597000000\nTime:2019-08-20T17:46:58.7313701Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281bf2-601e-001a-6c40-434b6f000000\nTime:2020-06-15T18:12:50.1133341Z" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.parameters.json?comp=metadata", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.apiversionfail.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17728,128 +16011,116 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "82130300-c372-11e9-b03b-44032c851686" + "d2da2522-af33-11ea-87e1-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:UioNHQOJD7oL1mMPbk48X5r7euTVzPox7yr4JT2lZbo=" + "SharedKey sdkteststore2:mOtaX2RbUOMYBWzbC/XEOzGFqIeIZws9V0Xy46VYAFQ=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" + "ETag": [ + "\"0x8D75C8386DE76E0\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:49 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], "Content-Length": [ - "215" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.1238391" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de95a-401e-00ac-287f-574597000000\nTime:2019-08-20T17:46:58.7884104Z" + "string": "" } } }, { "request": { "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.parameters.json", - "body": "{\r\n \"poolName\": {\r\n \"value\": \"testpool1\"\r\n }\r\n}", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.2550833" - ], - "Content-MD5": [ - "UJHCaZ8IYHwM3l1BfEkTHQ==" - ], - "Content-Length": [ - "52" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "821c4634-c372-11e9-8fe6-44032c851686" + "d2e2ca7a-af33-11ea-a22e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:+tgEQGeVKMlMIhqlmsiu4czySuXJILtsTvXGNrsXZNA=" + "SharedKey sdkteststore2:ezxWt82j4enf79uphGTAGmuHiZlmslCT2yqWlQfsxMo=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D72596665665A6\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Content-Length": [ + "230" ], - "Content-MD5": [ - "UJHCaZ8IYHwM3l1BfEkTHQ==" + "Content-Type": [ + "application/xml" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281c16-601e-001a-0f40-434b6f000000\nTime:2020-06-15T18:12:50.2214099Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17858,57 +16129,57 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "822517cc-c372-11e9-870a-44032c851686" + "d2ea9afa-af33-11ea-b802-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:CZn13JpC0XnXhV+3xEFUlxobODKO24NbyKJobG3qpOg=" - ], - "Content-Length": [ - "0" + "SharedKey sdkteststore2:Dz8EnqzNxREdtvmEAT67pws3zW091CAzSTGILxO3Dx4=" ] } }, "response": { "status": { - "code": 409, - "message": "The specified container already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" + "ETag": [ + "\"0x8D75C8386F7F6E7\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], "Content-Length": [ - "230" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.1388402" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de97a-401e-00ac-407f-574597000000\nTime:2019-08-20T17:46:58.9054928Z" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.apiversionfail.json?comp=metadata", + "method": "PUT", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -17917,113 +16188,101 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "822d99ca-c372-11e9-a34e-44032c851686" + "d2f411e4-af33-11ea-8a0c-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:JPdXM45kJJwrdzLYkONNHPwo2NkL9KECdauuLyTdBtA=" + "SharedKey sdkteststore2:4OtJvRb1oQLri0LRV6afvkBwTslkn4qVgzJ5NhxfaDA=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 409, + "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ - "BlobNotFound" + "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ - "215" + "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de992-401e-00ac-547f-574597000000\nTime:2019-08-20T17:46:58.9605317Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281c4c-601e-001a-3a40-434b6f000000\nTime:2020-06-15T18:12:50.3344900Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.apiversionfail.json", - "body": "{\r\n \"parameters\": {\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"The size of the virtual machines that runs the application\"\r\n },\r\n \"defaultValue\": \"STANDARD_D1\",\r\n \"allowedValues\": [\r\n \"STANDARD_A1\",\r\n \"STANDARD_A2\",\r\n \"STANDARD_A3\",\r\n \"STANDARD_A4\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D4\"\r\n ]\r\n },\r\n \"vmCount\": {\r\n \"type\": \"int\",\r\n \"defaultValue\": 3,\r\n \"metadata\": {\r\n \"description\": \"The number of the virtual machines\"\r\n }\r\n },\r\n \"poolName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ffmpegpool\",\r\n \"metadata\": {\r\n \"description\": \"The name of Azure Batch pool\"\r\n }\r\n }\r\n },\r\n \"variables\": {\r\n \"osType\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.10\",\r\n \"version\": \"latest\"\r\n }\r\n }, \r\n \"pool\": {\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"apiVersion\": \"2030-12-01\",\r\n \"properties\": {\r\n \"ls\": \"[parameters('poolName')]\",\r\n \"fob\": {\r\n \"imageReference\": \"[variables('osType')]\",\r\n \"nodeAgentSKUId\": \"batch.node.debian 8\"\r\n },\r\n \"new\": \"[parameters('vmSize')]\",\r\n \"vmCount\": \"[parameters('vmCount')]\",\r\n \"enableAutoScale\": false\r\n }\r\n }\r\n}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.parameters.json?comp=metadata", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1551725410.1398392" - ], - "Content-MD5": [ - "Vx+oh7HSZQSJ/EMS4CWYdQ==" - ], - "Content-Length": [ - "1685" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "82367d46-c372-11e9-bd92-44032c851686" + "d2fbe5d8-af33-11ea-b707-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:D6j6/po+OnhhMT07uTIVXop0EhsKI/dWKJtHZqwCsKE=" + "SharedKey sdkteststore2:YvnHRTXk8f2X/lpRi4QGgxmYWyM7bxf+h1SCuxkipWM=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], "ETag": [ - "\"0x8D725966671457D\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "\"0x8D75C8387101728\"" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-MD5": [ - "Vx+oh7HSZQSJ/EMS4CWYdQ==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], "Content-Length": [ "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1524153754.2550833" ] }, "body": { @@ -18038,7 +16297,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -18047,13 +16306,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "823fdf88-c372-11e9-a487-44032c851686" + "d305a988-af33-11ea-b50a-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:ekw/OceRkjtyG7lgDjjFg7Mp8gFyWI+pNVvB30bYlT8=" + "SharedKey sdkteststore2:3hQ9AMJne1/cG3/vhb00S59j6A0opv//WQMX3nd/23M=" ], "Content-Length": [ "0" @@ -18066,38 +16325,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de9d4-401e-00ac-0c7f-574597000000\nTime:2019-08-20T17:46:59.0836196Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281c81-601e-001a-6f40-434b6f000000\nTime:2020-06-15T18:12:50.4505715Z" } } }, { "request": { "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.json?comp=metadata", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.apiversionfail.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -18106,128 +16365,116 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8248b924-c372-11e9-a7f3-44032c851686" + "d30d99fa-af33-11ea-8bd9-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:dhBH8ZtJZrANHlnhWRCMLOfN9vaKXaWHM7Thnoxr9Jc=" + "SharedKey sdkteststore2:parP/giyJm6sSrQohRWYvNgYc8ZyBXW4dzjAqn3xfYo=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "BlobNotFound" + "ETag": [ + "\"0x8D75C83872CA4FC\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], "Content-Length": [ - "215" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.1398392" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de9ea-401e-00ac-1e7f-574597000000\nTime:2019-08-20T17:46:59.1416607Z" + "string": "" } } }, { "request": { "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.json", - "body": "{\r\n \"parameters\": {\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"The size of the virtual machines that runs the application\"\r\n },\r\n \"defaultValue\": \"STANDARD_D1\",\r\n \"allowedValues\": [\r\n \"STANDARD_A1\",\r\n \"STANDARD_A2\",\r\n \"STANDARD_A3\",\r\n \"STANDARD_A4\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D4\"\r\n ]\r\n },\r\n \"vmCount\": {\r\n \"type\": \"int\",\r\n \"defaultValue\": 3,\r\n \"metadata\": {\r\n \"description\": \"The number of the virtual machines\"\r\n }\r\n },\r\n \"poolName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ffmpegpool\",\r\n \"metadata\": {\r\n \"description\": \"The name of Azure Batch pool\"\r\n }\r\n }\r\n },\r\n \"variables\": {\r\n \"osType\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.10\",\r\n \"version\": \"latest\"\r\n }\r\n }, \r\n \"pool\": {\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"properties\": {\r\n \"id\": \"[parameters('poolName')]\",\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": \"[variables('osType')]\",\r\n \"nodeAgentSKUId\": \"batch.node.debian 8\"\r\n },\r\n \"vmSize\": \"[parameters('vmSize')]\",\r\n \"vmCount\": \"[parameters('vmCount')]\",\r\n \"enableAutoScale\": false\r\n }\r\n }\r\n}", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1551725410.1458392" - ], - "Content-MD5": [ - "sLKLnAZ4LgaLVKq3l8hvhw==" - ], - "Content-Length": [ - "1675" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "82525618-c372-11e9-84ff-44032c851686" + "d31587de-af33-11ea-bdfa-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:EARC47wmD6K78Xf2aLF74ONWXcvPVO/8Ay9A4EALlxM=" + "SharedKey sdkteststore2:u5FOFIpC/kClv9BPwImxwV2897w9T9etS367f3UYHH0=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D72596668D8528\"" - ], - "x-ms-request-server-encrypted": [ - "true" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Content-Length": [ + "230" ], - "Content-MD5": [ - "sLKLnAZ4LgaLVKq3l8hvhw==" + "Content-Type": [ + "application/xml" ], - "Content-Length": [ - "0" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281cb7-601e-001a-2340-434b6f000000\nTime:2020-06-15T18:12:50.5546444Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.json?comp=metadata", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -18236,57 +16483,57 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "825c4118-c372-11e9-b559-44032c851686" + "d31d60da-af33-11ea-bda1-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:803MP01txGMeSWWdWQYX6fRajrQU2TYHk4/T8wPPipQ=" - ], - "Content-Length": [ - "0" + "SharedKey sdkteststore2:G16cCaYkbC5YtPgfu0imXVjGgacL8qCXM/Zi9MqJVJw=" ] } }, "response": { "status": { - "code": 409, - "message": "The specified container already exists." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-error-code": [ - "ContainerAlreadyExists" + "ETag": [ + "\"0x8D75C838747D306\"" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], "Content-Length": [ - "230" + "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1551725410.1458392" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8dea0f-401e-00ac-407f-574597000000\nTime:2019-08-20T17:46:59.2627459Z" + "string": "" } } }, { "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.resourcefile-legacy.json?comp=metadata", + "method": "PUT", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in?restype=container", "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -18295,113 +16542,101 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "82640948-c372-11e9-bd15-44032c851686" + "d325bf8c-af33-11ea-b235-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:kRH7irBX3VIpPr0DdP/H18gqyCrnWUTk6ugdwfUfmYo=" + "SharedKey sdkteststore2:rZcsWzwFJT30JisEPnDGQpsYNWcQ1D3PXaFr9o3l1hI=" + ], + "Content-Length": [ + "0" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 409, + "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ - "BlobNotFound" + "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ - "215" + "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8dea19-401e-00ac-477f-574597000000\nTime:2019-08-20T17:46:59.3217877Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:6a281ce5-601e-001a-5040-434b6f000000\nTime:2020-06-15T18:12:50.6587182Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.resourcefile-legacy.json", - "body": "{\r\n \"pool\": {\r\n \"id\": \"blobsource1\",\r\n \"displayName\": \"Blender Ubuntu standard pool\",\r\n \"vmSize\": \"Standard_D1_v2\",\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\" : \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n },\r\n \"targetDedicatedNodes\": \"1\",\r\n \"targetLowPriorityNodes\": \"0\",\r\n \"enableAutoScale\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"sleep 1\",\r\n \"waitForSuccess\": true,\r\n \"maxTaskRetryCount\": 0,\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n },\r\n \"resourceFiles\": [\r\n {\r\n \"blobSource\": \"https://raw.githubusercontent.com/Azure/BatchExplorer-data/master/ncj/blender/scripts/setup-linux-pool.sh\",\r\n \"filePath\": \"setup-linux-pool.sh\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.resourcefile-legacy.json?comp=metadata", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1566231778.058535" - ], - "Content-MD5": [ - "8QUSX+KCWV/drjPRRW4cpA==" - ], - "Content-Length": [ - "990" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "826d1e1a-c372-11e9-9e88-44032c851686" + "d32d4ad8-af33-11ea-a98c-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:i8cXonXbgca6hMBplsXz3LdRX5FXBYKBXy+ydBhdLPM=" + "SharedKey sdkteststore2:wcZGu4JCrcWe8tHUQPQatlef53abJ6+7GhV3dlUdH5k=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], "ETag": [ - "\"0x8D7259666A88C11\"" + "\"0x8D7DCD496DAD086\"" ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-MD5": [ - "8QUSX+KCWV/drjPRRW4cpA==" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Content-Length": [ "0" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-meta-lastmodified": [ + "1582559736.617499" ] }, "body": { @@ -18412,11 +16647,11 @@ { "request": { "method": "GET", - "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2019-08-01", + "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Batch/batchAccounts?api-version=2020-05-01", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-batch/7.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-batch/9.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -18428,10 +16663,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0NDcxLCJuYmYiOjE1OTIyNDQ0NzEsImV4cCI6MTU5MjMzMTE3MSwiYWlvIjoiNDJkZ1lLajNYYnJPSlR3dkp6cXFidHFsMVd0M0FBQT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6Ikg2cjdvMzEyWFVPaVF0M2VuXzRCQUEiLCJ2ZXIiOiIxLjAifQ.s8bVrDZVZt-KYjMdHyxQQ29I4azFIzpXKUUQg-dyR9zYMnyt_W0YEkSnBwfN4aOfdXUiCU2Y7pVhzhlHh87LU-aj2CvemeRT_1ypjupiuRufysV-_NwStviudt8tUvdYSLFuJa_V60vm2uE7FHGoaUmWZq01G0QUg8IHva1yYq6cu8TA0s4dRuCRaq2kFVuSRs8YMPm7Oh0z1Ke0VjHssYaJWcNnJySZWs7trE5sPfMzfQbjYrGTDkKLdE7OjlgtzIEK03h5UWHTDJkMyXy9RDJFjaObPJUX6_2BKMf-vu3Wq4df3NUXKBHRoDUy3kG2WTs0UC-aJs6qu-wGOg52kw" ], "x-ms-client-request-id": [ - "82998366-c372-11e9-9e3b-44032c851686" + "d35d01f8-af33-11ea-8515-44032c851686" ], "accept-language": [ "en-US" @@ -18444,17 +16679,8 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Cache-Control": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18462,22 +16688,31 @@ "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "2729" - ], "x-ms-original-request-ids": [ - "3b657330-ec08-41c6-8ef2-7e18f8e8b064", - "4f86fc36-4ea9-4941-b558-9768b236889e" + "19557e94-8d8b-4c74-a0f9-c6c168e63f71", + "8aa10315-63e3-42c3-a819-6047410963bc" ], - "Cache-Control": [ - "no-cache" + "Date": [ + "Mon, 15 Jun 2020 18:12:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "content-length": [ + "3206" + ], + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" + ], + "Expires": [ + "-1" ] }, "body": { - "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2019-07-16T21:55:40.4909987Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" + "string": "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/byossc\",\"name\":\"byossc\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"southcentralus\",\"properties\":{\"accountEndpoint\":\"byossc.southcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"poolAllocationMode\":\"UserSubscription\",\"keyVaultReference\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.KeyVault/vaults/byossc\",\"url\":\"https://byossc.vault.azure.net/\"},\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"identity\":{\"type\":\"None\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2020-06-15T08:14:08.5867562Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"rawr\":\"test\"},\"identity\":{\"type\":\"None\"}}]}" } } }, @@ -18488,7 +16723,7 @@ "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -18500,13 +16735,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQ0NDcxLCJuYmYiOjE1OTIyNDQ0NzEsImV4cCI6MTU5MjMzMTE3MSwiYWlvIjoiNDJkZ1lJalVjZjQyVFVLczQvTWF1NGc1RXh6ZUFBQT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6IjV4ZFBKT0dTajBPNXNtQmxuTElBQUEiLCJ2ZXIiOiIxLjAifQ.Ac2y99RHk-spvDqJmpOgLa4pJ3JYufT7LnXZ_D9KdDSjAZWAJYJ_qdjoiB-d6VsorrnDg1BIK8BXkaVv7pO195-iZ0EdLxI6CPqJwzcxAw8vUVPFlVJOhKpfdAT0nibMcra3GCFW0EaHLJRhaqDZqEgGtsltRjcSXv42i_S9YIPL7wVUyVhs5iCYI0VzpqHSoGQ7ZSu3HP7TGtJxEunxs6S5a_99qbw6L9z-NEAz8g4xovOM-BXNvQd69YOwaIRiVqzaaDKefdrUSW0PqSgZ9yHaO6tAG5ej170C43aXx87OVcpjsFaWH2aEMp0IeIjPsjOb3Dcpb4XR9qhxXzwg9g" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "83058346-c372-11e9-90b3-44032c851686" + "d3c883a2-af33-11ea-8960-44032c851686" ], "accept-language": [ "en-US" @@ -18522,17 +16757,11 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" + "Cache-Control": [ + "no-cache" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18543,18 +16772,24 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Mon, 15 Jun 2020 18:12:52 GMT" ], - "Cache-Control": [ - "no-cache" + "Content-Type": [ + "application/json" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "-1" + ], "content-length": [ "288" ] @@ -18571,7 +16806,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -18580,13 +16815,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8342107a-c372-11e9-9429-44032c851686" + "d4364ce4-af33-11ea-a635-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" + "Mon, 15 Jun 2020 18:12:52 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:vTeL6mjkIJba50FLFSeujlnzlhMOEpcAd9H/4SmCVII=" + "SharedKey sdkteststore2:RbEx3lCxYjvbK8G/oP3c/5ysZ6PSrWelyuYybgRa5Xc=" ] } }, @@ -18596,24 +16831,24 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:52 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Type": [ + "application/xml" + ], "Transfer-Encoding": [ "chunked" ], - "Date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffbatch-applicationTemplate-parameters.jsonTue, 20 Aug 2019 17:46:56 GMT0x8D7259664CFA65D1377application/octet-streamGhvIqLxdhgZSxhi6CdQjLQ==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedApplicationTemplateInfo.jsonTue, 20 Aug 2019 17:46:56 GMT0x8D7259664F3133A219application/octet-streamxbCZcjm1pOMcwR8Td2yo9w==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedId.jsonTue, 20 Aug 2019 17:46:56 GMT0x8D72596650DA4E3146application/octet-streamHBCHz/rBYi8V9ILMKx0o+g==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedPoolInfo.jsonTue, 20 Aug 2019 17:46:56 GMT0x8D72596652884BA187application/octet-streamPFiBkLMhFseOyDvKgJXaRA==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedPriority.jsonTue, 20 Aug 2019 17:46:57 GMT0x8D72596654783FB206application/octet-streamIvRrVHIc/lLy/wSkE22LeA==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-static.jsonTue, 20 Aug 2019 17:46:57 GMT0x8D7259665628AED740application/octet-stream27HmU8S9AEeu90aG5z1x1A==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-unsupportedProperty.jsonTue, 20 Aug 2019 17:46:57 GMT0x8D72596657F3FDC240application/octet-streameSn7zZA04to5Rccq3nxw1A==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-untypedParameter.jsonTue, 20 Aug 2019 17:46:57 GMT0x8D72596659935291363application/octet-streamsWJuTwpMQ9cWToECYRCNiQ==BlockBlobHottrueunlockedavailabletruebatch.job.mergetask.jsonTue, 20 Aug 2019 17:46:57 GMT0x8D7259665B43C134072application/octet-stream2ILRwlJk1kyfaTTP253tiA==BlockBlobHottrueunlockedavailabletruebatch.job.parameters.jsonTue, 20 Aug 2019 17:46:57 GMT0x8D7259665CE7F92254application/octet-streamacLZykn1NMEO1oxenbC6dw==BlockBlobHottrueunlockedavailabletruebatch.job.parametricsweep.jsonTue, 20 Aug 2019 17:46:58 GMT0x8D7259665E89BF13565application/octet-streamBvsOoLG3cYJ873sw8nI4/Q==BlockBlobHottrueunlockedavailabletruebatch.job.resourcefile-legacy.jsonTue, 20 Aug 2019 17:46:58 GMT0x8D72596660418241245application/octet-stream9iVvz/Pf/FsbJv0miSuvzw==BlockBlobHottrueunlockedavailabletruebatch.job.simple.apiversionfail.jsonTue, 20 Aug 2019 17:46:58 GMT0x8D72596661F1F0E1140application/octet-streamkPzKWo4J2zRaerzJw2Z2xg==BlockBlobHottrueunlockedavailabletruebatch.job.simple.jsonTue, 20 Aug 2019 17:46:58 GMT0x8D72596663C22301117application/octet-streamrdYsR2RLvOnr9kOYg2y5NQ==BlockBlobHottrueunlockedavailabletruebatch.pool.parameters.jsonTue, 20 Aug 2019 17:46:58 GMT0x8D72596665665A652application/octet-streamUJHCaZ8IYHwM3l1BfEkTHQ==BlockBlobHottrueunlockedavailabletruebatch.pool.simple.apiversionfail.jsonTue, 20 Aug 2019 17:46:59 GMT0x8D725966671457D1685application/octet-streamVx+oh7HSZQSJ/EMS4CWYdQ==BlockBlobHottrueunlockedavailabletruebatch.pool.simple.jsonTue, 20 Aug 2019 17:46:59 GMT0x8D72596668D85281675application/octet-streamsLKLnAZ4LgaLVKq3l8hvhw==BlockBlobHottrueunlockedavailabletruebatch.pool.simple.resourcefile-legacy.jsonTue, 20 Aug 2019 17:46:59 GMT0x8D7259666A88C11990application/octet-stream8QUSX+KCWV/drjPRRW4cpA==BlockBlobHottrueunlockedavailabletrue" + "string": "\ufeffbatch-applicationTemplate-parameters.jsonTue, 29 Oct 2019 15:20:24 GMT0x8D75C8385B132181377application/octet-streamGhvIqLxdhgZSxhi6CdQjLQ==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedApplicationTemplateInfo.jsonTue, 29 Oct 2019 15:20:25 GMT0x8D75C8385CAD93B219application/octet-streamxbCZcjm1pOMcwR8Td2yo9w==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedId.jsonTue, 29 Oct 2019 15:20:25 GMT0x8D75C8385E28432146application/octet-streamHBCHz/rBYi8V9ILMKx0o+g==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedPoolInfo.jsonTue, 29 Oct 2019 15:20:25 GMT0x8D75C8385FA5640187application/octet-streamPFiBkLMhFseOyDvKgJXaRA==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-prohibitedPriority.jsonTue, 29 Oct 2019 15:20:25 GMT0x8D75C838614E7F2206application/octet-streamIvRrVHIc/lLy/wSkE22LeA==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-static.jsonTue, 29 Oct 2019 15:20:25 GMT0x8D75C83863175C7740application/octet-stream27HmU8S9AEeu90aG5z1x1A==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-unsupportedProperty.jsonTue, 29 Oct 2019 15:20:25 GMT0x8D75C8386496EEC240application/octet-streameSn7zZA04to5Rccq3nxw1A==BlockBlobHottrueunlockedavailabletruebatch-applicationTemplate-untypedParameter.jsonTue, 29 Oct 2019 15:20:26 GMT0x8D75C83866140FA1363application/octet-streamsWJuTwpMQ9cWToECYRCNiQ==BlockBlobHottrueunlockedavailabletruebatch.job.mergetask.jsonTue, 29 Oct 2019 15:20:26 GMT0x8D75C8386793A244072application/octet-stream2ILRwlJk1kyfaTTP253tiA==BlockBlobHottrueunlockedavailabletruebatch.job.parameters.jsonTue, 29 Oct 2019 15:20:26 GMT0x8D75C838694DD6E254application/octet-streamacLZykn1NMEO1oxenbC6dw==BlockBlobHottrueunlockedavailabletruebatch.job.parametricsweep.jsonTue, 29 Oct 2019 15:20:26 GMT0x8D75C8386ADC11E3565application/octet-streamBvsOoLG3cYJ873sw8nI4/Q==BlockBlobHottrueunlockedavailabletruebatch.job.resourcefile-legacy.jsonThu, 09 Apr 2020 22:23:11 GMT0x8D7DCD4966DA2C81245application/octet-stream9iVvz/Pf/FsbJv0miSuvzw==BlockBlobHottrueunlockedavailabletruebatch.job.simple.apiversionfail.jsonTue, 29 Oct 2019 15:20:26 GMT0x8D75C8386DE76E01140application/octet-streamkPzKWo4J2zRaerzJw2Z2xg==BlockBlobHottrueunlockedavailabletruebatch.job.simple.jsonTue, 29 Oct 2019 15:20:27 GMT0x8D75C8386F7F6E71117application/octet-streamrdYsR2RLvOnr9kOYg2y5NQ==BlockBlobHottrueunlockedavailabletruebatch.pool.parameters.jsonTue, 29 Oct 2019 15:20:27 GMT0x8D75C838710172852application/octet-streamUJHCaZ8IYHwM3l1BfEkTHQ==BlockBlobHottrueunlockedavailabletruebatch.pool.simple.apiversionfail.jsonTue, 29 Oct 2019 15:20:27 GMT0x8D75C83872CA4FC1685application/octet-streamVx+oh7HSZQSJ/EMS4CWYdQ==BlockBlobHottrueunlockedavailabletruebatch.pool.simple.jsonTue, 29 Oct 2019 15:20:27 GMT0x8D75C838747D3061675application/octet-streamsLKLnAZ4LgaLVKq3l8hvhw==BlockBlobHottrueunlockedavailabletruebatch.pool.simple.resourcefile-legacy.jsonThu, 09 Apr 2020 22:23:11 GMT0x8D7DCD496DAD086990application/octet-stream8QUSX+KCWV/drjPRRW4cpA==BlockBlobHottrueunlockedavailabletrue" } } }, @@ -18624,7 +16859,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -18633,13 +16868,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "836bfcc8-c372-11e9-8fca-44032c851686" + "d459e9c6-af33-11ea-b296-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:47:01 GMT" + "Mon, 15 Jun 2020 18:12:52 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:b0bewNaXwslaFD2Ok2av6z7YJqQSlDTVLu9HAmesEAI=" + "SharedKey sdkteststore2:e3bl3Wj+uLWGOFjfU2nF+x9+3VprEIlrHnOcUgcz3/I=" ], "Content-Length": [ "0" @@ -18652,38 +16887,38 @@ "message": "The specified container already exists." }, "headers": { - "Content-Type": [ - "application/xml" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "x-ms-version": [ - "2017-07-29" + "Date": [ + "Mon, 15 Jun 2020 18:12:52 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" - ], "Content-Length": [ "230" + ], + "Content-Type": [ + "application/xml" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:b37acef4-001e-0045-2a7f-57b991000000\nTime:2019-08-20T17:47:01.0495638Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:063fb010-101e-005a-0f40-436281000000\nTime:2020-06-15T18:12:52.6799096Z" } } }, { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0&timeout=30", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0&timeout=30", "body": "{\"id\": \"helloworld-job3\", \"poolInfo\": {\"autoPoolSpecification\": {\"autoPoolIdPrefix\": \"helloworld-pool3\", \"poolLifetimeOption\": \"job\", \"keepAlive\": false, \"pool\": {\"vmSize\": \"STANDARD_D1_V2\", \"virtualMachineConfiguration\": {\"imageReference\": {\"publisher\": \"Canonical\", \"offer\": \"UbuntuServer\", \"sku\": \"16.04.0-LTS\", \"version\": \"latest\"}, \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"}, \"targetDedicatedNodes\": 1}}}, \"onAllTasksComplete\": \"noaction\", \"usesTaskDependencies\": true}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -18695,13 +16930,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDQ3MywibmJmIjoxNTkyMjQ0NDczLCJleHAiOjE1OTIzMzExNzMsImFpbyI6IjQyZGdZTmh0eDZDdmNFRExWT2hRWElNZW8vb0NBQT09IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJFdjdUM0IwQVBFbWREbXU3ZjRvQkFBIiwidmVyIjoiMS4wIn0.CgR0kDp2f_Et5z69GlbVuJuIp2eRx14cPZad-0HNwzglGKO32kJHem3jgFE7o0-41j5d8SMAkCUASXMdvjRN2rXKHF8XRi-QkxMkGntdr9zPfeQ6Z8B5KjO_UTZpqCT5ZlJ-hMnXj-ugBQr7sYnN1XxiRvAMbb91JKub2z_I58iQrdSo_Jst3XtJdkO0Sn6ESftz56MaBGfttcvh5PBETTlzc0skKFCI7rlg-stJesAuQ2aMsz7txO3KsmBc1tJ1iFTVqYmrAS9prUBTBLXchQ9eOPbShy2TPrsfOXgf6pFA9ZV2BAJuuveRrRFXV5gr6MFeDHR3rYF5EYCUyvQEnA" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "8374fd80-c372-11e9-baed-44032c851686" + "d4620088-af33-11ea-a822-44032c851686" ], "accept-language": [ "en-US" @@ -18720,38 +16955,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" - ], - "Date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" + "request-id": [ + "5b61fa37-fa1f-47a4-bf0f-df9e1f2c4ba1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "ETag": [ + "0x8D81157C5B4C298" + ], "X-Content-Type-Options": [ "nosniff" ], - "ETag": [ - "0x8D7259667CE5072" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:47:01 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:13:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:13:14 GMT" ], - "Transfer-Encoding": [ - "chunked" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], - "request-id": [ - "fa5e7cfa-07c4-43e0-8fec-8d1349635ceb" + "Location": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { @@ -18762,11 +16997,11 @@ { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/addtaskcollection?api-version=2019-08-01.10.0", - "body": "{\"value\": [{\"id\": \"merge\", \"displayName\": \"myMergeTask\", \"commandLine\": \"/bin/bash -c 'ls'\", \"resourceFiles\": [{\"autoStorageContainerName\": \"fgrp-output\"}], \"dependsOn\": {\"taskIdRanges\": [{\"start\": 0, \"end\": 17}]}}, {\"id\": \"17\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.simple.resourcefile-legacy.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.resourcefile-legacy.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=qjkdzdBo7dp66dBpwq1MzHYDaUFOkLn2OBE7PJVR8/o%3D\", \"filePath\": \"batch.pool.simple.resourcefile-legacy.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.simple.resourcefile-legacy.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"16\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.simple.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=5ggJXnam3lSRp5pN29cQ3s3M2%2B6K4elM6ZTK7TBjy0U%3D\", \"filePath\": \"batch.pool.simple.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.simple.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"15\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.simple.apiversionfail.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.apiversionfail.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=FF66MuydtAug8VyNO/jJmorJ7%2B%2BTtcfDqgeQTJFJr/k%3D\", \"filePath\": \"batch.pool.simple.apiversionfail.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.simple.apiversionfail.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"14\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.parameters.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.parameters.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=M2Z7ZLvIzdRYEf9%2BnZUCcA8ekhAnMy8hVAzJMBXJXF0%3D\", \"filePath\": \"batch.pool.parameters.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.parameters.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"13\", \"commandLine\": \"/bin/bash -c 'cat batch.job.simple.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=zCEvBTq3iOotefeoSMGul54bLYIDOxgzn6C01kZACEA%3D\", \"filePath\": \"batch.job.simple.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.simple.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"12\", \"commandLine\": \"/bin/bash -c 'cat batch.job.simple.apiversionfail.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.apiversionfail.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=brAyKdOfJVDB1uA0q7LlOVJNDIq3abJBPtYkIsScFzY%3D\", \"filePath\": \"batch.job.simple.apiversionfail.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.simple.apiversionfail.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"11\", \"commandLine\": \"/bin/bash -c 'cat batch.job.resourcefile-legacy.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.resourcefile-legacy.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=w4OupUnlhDLNJQVa6ISGpE5IwvDNjCqu/6PCaAjQBsM%3D\", \"filePath\": \"batch.job.resourcefile-legacy.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.resourcefile-legacy.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"10\", \"commandLine\": \"/bin/bash -c 'cat batch.job.parametricsweep.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parametricsweep.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=A2vjvhldjW0QFavTNuWu5dAgwITtP/SjUQGAaRBE54Q%3D\", \"filePath\": \"batch.job.parametricsweep.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.parametricsweep.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"9\", \"commandLine\": \"/bin/bash -c 'cat batch.job.parameters.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parameters.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=i%2BYgbj78cFrcKJOcXFIYHE3TQgorojM9zbHJbTbIT%2B4%3D\", \"filePath\": \"batch.job.parameters.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.parameters.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"8\", \"commandLine\": \"/bin/bash -c 'cat batch.job.mergetask.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.mergetask.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=EJbQk0h1IsKo%2Bs5n4faamwDKNkGiTUNNJgUkq9LvCso%3D\", \"filePath\": \"batch.job.mergetask.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.mergetask.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"7\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-untypedParameter.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-untypedParameter.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=l8eFtrkubdXTb2639IRmav77LwsaPg15nZ4hBUwRx0s%3D\", \"filePath\": \"batch-applicationTemplate-untypedParameter.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-untypedParameter.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"6\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-unsupportedProperty.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-unsupportedProperty.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=2D57fqug%2B5bY617zxZvfKMXpm7tE6qbQkUYH/qhUeQs%3D\", \"filePath\": \"batch-applicationTemplate-unsupportedProperty.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-unsupportedProperty.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"5\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-static.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-static.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=fGvx1JC7jhfMydOrP91FmBDGRiTZ%2BRcXH5kch/XmsGU%3D\", \"filePath\": \"batch-applicationTemplate-static.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-static.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"4\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedPriority.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPriority.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=uco6p/1Grz4Tot2vIUBxc6SLJLmrtMC1K/y6twl/xE8%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedPriority.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedPriority.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"3\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedPoolInfo.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPoolInfo.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=wdkt74joqZjY7wPQJFe8j5yq9uSK4WMLisQgQCSuZ6c%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedPoolInfo.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedPoolInfo.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"2\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedId.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedId.json?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=r&sv=2017-07-29&sr=b&sig=60aoV/Dp48M1Y8hSOFaCSWtgB/PlhznKSjeBkh8jsbo%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedId.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedId.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"1\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedApplicationTemplateInfo.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedApplicationTemplateInfo.json?st=2019-08-20T17%3A32%3A00Z&se=2019-08-27T17%3A47%3A00Z&sp=r&sv=2017-07-29&sr=b&sig=yX1pAuKK7y7V4vsUx5zmeUICpfXIONdalc8RnaygIvA%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedApplicationTemplateInfo.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedApplicationTemplateInfo.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"0\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-parameters.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-parameters.json?st=2019-08-20T17%3A32%3A00Z&se=2019-08-27T17%3A47%3A00Z&sp=r&sv=2017-07-29&sr=b&sig=Cf35OizojkYQSSce65zDM732hBEZ%2Bvbaz391CmNmHgw%3D\", \"filePath\": \"batch-applicationTemplate-parameters.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-parameters.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2019-08-20T17%3A32%3A01Z&se=2019-08-27T17%3A47%3A01Z&sp=w&sv=2017-07-29&sr=c&sig=r3A76NHornQOLrIpsQEmKbrSRE6kjMfmfN7LhQ42BrY%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}]}", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/addtaskcollection?api-version=2020-03-01.11.0", + "body": "{\"value\": [{\"id\": \"merge\", \"displayName\": \"myMergeTask\", \"commandLine\": \"/bin/bash -c 'ls'\", \"resourceFiles\": [{\"autoStorageContainerName\": \"fgrp-output\"}], \"dependsOn\": {\"taskIdRanges\": [{\"start\": 0, \"end\": 17}]}}, {\"id\": \"17\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.simple.resourcefile-legacy.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.resourcefile-legacy.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=sC/Dm5cysVUvlgYebdiReJAPlnQUJ4pfc%2B79SVRccRQ%3D\", \"filePath\": \"batch.pool.simple.resourcefile-legacy.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.simple.resourcefile-legacy.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"16\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.simple.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=TVWmR0T50hIEgvnCzVzKrnhseLhr6n5krMS%2Bls8G5qY%3D\", \"filePath\": \"batch.pool.simple.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.simple.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"15\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.simple.apiversionfail.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.simple.apiversionfail.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=Ao80shnwylZTa1O7U94daou%2BKuqeQZd%2BB6bpyUNVOos%3D\", \"filePath\": \"batch.pool.simple.apiversionfail.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.simple.apiversionfail.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"14\", \"commandLine\": \"/bin/bash -c 'cat batch.pool.parameters.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.pool.parameters.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=0PamQBMl60GidKg1VjQFpmoUGO//XQsZejW4dcacpPw%3D\", \"filePath\": \"batch.pool.parameters.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.pool.parameters.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"13\", \"commandLine\": \"/bin/bash -c 'cat batch.job.simple.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=ptsalsMT2bBAiAIIUPm3HxUAczwmNOfvgVkPITBGZrQ%3D\", \"filePath\": \"batch.job.simple.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.simple.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"12\", \"commandLine\": \"/bin/bash -c 'cat batch.job.simple.apiversionfail.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.simple.apiversionfail.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=6GeGRHl/1l/qX3r2HWWy4JJlZPJfm4VT86Na6ONlSws%3D\", \"filePath\": \"batch.job.simple.apiversionfail.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.simple.apiversionfail.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"11\", \"commandLine\": \"/bin/bash -c 'cat batch.job.resourcefile-legacy.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.resourcefile-legacy.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=w5Iojcg0Lp6cOvDE6wt8alXBn5u1EMcZTGm5N8KeWoo%3D\", \"filePath\": \"batch.job.resourcefile-legacy.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.resourcefile-legacy.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"10\", \"commandLine\": \"/bin/bash -c 'cat batch.job.parametricsweep.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parametricsweep.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=qFBTVk/kN/jnZwp7xhvQp%2BQq6/Qm8a7805gYbeAa07s%3D\", \"filePath\": \"batch.job.parametricsweep.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.parametricsweep.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"9\", \"commandLine\": \"/bin/bash -c 'cat batch.job.parameters.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.parameters.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=7AHp35ddZqlvYOGhWgz3ketFOwnY4ZI%2BWL2K25Z/YWY%3D\", \"filePath\": \"batch.job.parameters.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.parameters.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"8\", \"commandLine\": \"/bin/bash -c 'cat batch.job.mergetask.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch.job.mergetask.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=nNPX1dBWliRmJKpWwte1s/bVuyA1bzlTP1O2SF57ncw%3D\", \"filePath\": \"batch.job.mergetask.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch.job.mergetask.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"7\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-untypedParameter.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-untypedParameter.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=vjxJOmcdomsubTs0OhW5qEmzAts1sCzbdIxmzle8ejQ%3D\", \"filePath\": \"batch-applicationTemplate-untypedParameter.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-untypedParameter.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"6\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-unsupportedProperty.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-unsupportedProperty.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=NfCzyq3s2N9l22IT4Q955QTRjz6Nd%2BUk4bBA0E4DPcU%3D\", \"filePath\": \"batch-applicationTemplate-unsupportedProperty.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-unsupportedProperty.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"5\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-static.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-static.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=wf5xghVwGGlMn8f/MqMYs1IhcUdbQ1yZXQ3KRdTzqXQ%3D\", \"filePath\": \"batch-applicationTemplate-static.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-static.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"4\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedPriority.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPriority.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=%2BpRtJXlaP8BAR5bdTPqD8DzYxJuThZv0QTmy1ZRqfBs%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedPriority.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedPriority.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"3\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedPoolInfo.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedPoolInfo.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=44u/WRKb3PAqctAU7he7%2BcDHS8NIdw3yolTnP3pLrPs%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedPoolInfo.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedPoolInfo.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"2\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedId.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedId.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=sImgYS8UwfTvl9z50zkvsoIPZWJYcoMtAP3DMn3eShk%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedId.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedId.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"1\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-prohibitedApplicationTemplateInfo.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-prohibitedApplicationTemplateInfo.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=7LTl9TX23JfcLt48P%2BhMVi9UkcBxqU1Ow%2B6WygB1aSM%3D\", \"filePath\": \"batch-applicationTemplate-prohibitedApplicationTemplateInfo.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-prohibitedApplicationTemplateInfo.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}, {\"id\": \"0\", \"commandLine\": \"/bin/bash -c 'cat batch-applicationTemplate-parameters.json'\", \"resourceFiles\": [{\"httpUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-in/batch-applicationTemplate-parameters.json?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=r&sv=2017-07-29&sr=b&sig=wZjo8Y93ycUakXJCjVSL5Wrv4046ZtcQ%2BbOWeruWLu4%3D\", \"filePath\": \"batch-applicationTemplate-parameters.json\"}], \"outputFiles\": [{\"filePattern\": \"**/stdout.txt\", \"destination\": {\"container\": {\"path\": \"output-batch-applicationTemplate-parameters.json\", \"containerUrl\": \"https://sdkteststore2.blob.core.windows.net/fgrp-output?st=2020-06-15T17%3A57%3A52Z&se=2020-06-22T18%3A12%3A52Z&sp=w&sv=2017-07-29&sr=c&sig=MFYnOcE/3l%2BdyEh4f6fS8Jek1paagTNXE5QBjyppY9A%3D\"}}, \"uploadOptions\": {\"uploadCondition\": \"tasksuccess\"}}]}]}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -18778,19 +17013,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDQ5NSwibmJmIjoxNTkyMjQ0NDk1LCJleHAiOjE1OTIzMzExOTUsImFpbyI6IjQyZGdZSGpqeFplZCthYkEvN2xRVWg1dmlld2NBQT09IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJXOWhCaVlXSkIwQzN1Y19KeHpFQkFBIiwidmVyIjoiMS4wIn0.s6vbRxSrHqILsWkF2v7SucPNlv5tul1bjtNlvOrHG6uvdH2Ci5PCzpjvOUorsKof3YqNOH5QnfOrFm7UYf6pc2eETuKnetxr-_MHKu2Out8goUrjIvA98S15HJ0Ot4d4nwKCHfBoAWJNPTY5cwbNBNw30irD0jrzLeZ9o44k2ag_Z9ssaB81Dg7aGnzdwXyNdm6jGILwhG8bc1Bf5_dpq9MDUCrqmhOdy8QD2MXh9KH4Q2C2dnUtJIKMUS5HR4eLnoA7yJPTFsDG22BEDrHBrB1M-XeFwRof9y3-W7mjfF47f65hRQ3vgKEt-NZSvuVQwwlA5UUgmHroXY2VjhjjBg" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "839ca99e-c372-11e9-9861-44032c851686" + "e1ab330a-af33-11ea-9e62-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "14598" + "14638" ] } }, @@ -18800,44 +17035,44 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "request-id": [ - "655d112f-a224-4283-bec3-c78b1aebd4eb" + "8cdab20d-51d1-4328-b4ca-d0844ff098eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 18:13:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { - "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"merge\",\"eTag\":\"0x8D7259667F84623\",\"lastModified\":\"2019-08-20T17:47:01.5860771Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/merge\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"17\",\"eTag\":\"0x8D7259667FDF34C\",\"lastModified\":\"2019-08-20T17:47:01.623278Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"15\",\"eTag\":\"0x8D7259668000E6D\",\"lastModified\":\"2019-08-20T17:47:01.6370797Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"8\",\"eTag\":\"0x8D725966802F483\",\"lastModified\":\"2019-08-20T17:47:01.6560771Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"16\",\"eTag\":\"0x8D725966808E7EA\",\"lastModified\":\"2019-08-20T17:47:01.6950762Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"13\",\"eTag\":\"0x8D72596680A207B\",\"lastModified\":\"2019-08-20T17:47:01.7030779Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"10\",\"eTag\":\"0x8D72596680BCE0E\",\"lastModified\":\"2019-08-20T17:47:01.714075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"11\",\"eTag\":\"0x8D72596680BA702\",\"lastModified\":\"2019-08-20T17:47:01.7130754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"9\",\"eTag\":\"0x8D72596681061ED\",\"lastModified\":\"2019-08-20T17:47:01.7440749Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"6\",\"eTag\":\"0x8D72596680BCE0E\",\"lastModified\":\"2019-08-20T17:47:01.714075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"5\",\"eTag\":\"0x8D72596680BA702\",\"lastModified\":\"2019-08-20T17:47:01.7130754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"7\",\"eTag\":\"0x8D72596680BCE0E\",\"lastModified\":\"2019-08-20T17:47:01.714075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"14\",\"eTag\":\"0x8D72596680A4782\",\"lastModified\":\"2019-08-20T17:47:01.704077Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/14\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"4\",\"eTag\":\"0x8D72596680BF53A\",\"lastModified\":\"2019-08-20T17:47:01.7150778Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"12\",\"eTag\":\"0x8D72596680A6E93\",\"lastModified\":\"2019-08-20T17:47:01.7050771Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/12\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"0\",\"eTag\":\"0x8D72596680BCE0E\",\"lastModified\":\"2019-08-20T17:47:01.714075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"1\",\"eTag\":\"0x8D72596680BF53A\",\"lastModified\":\"2019-08-20T17:47:01.7150778Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"2\",\"eTag\":\"0x8D72596680D54AF\",\"lastModified\":\"2019-08-20T17:47:01.7240751Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"3\",\"eTag\":\"0x8D72596680D2D99\",\"lastModified\":\"2019-08-20T17:47:01.7230745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/3\"\r\n }\r\n ]\r\n}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"merge\",\"eTag\":\"0x8D81157D2D76BDB\",\"lastModified\":\"2020-06-15T18:13:37.0085339Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/merge\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"17\",\"eTag\":\"0x8D81157D2D98E81\",\"lastModified\":\"2020-06-15T18:13:37.0225281Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"15\",\"eTag\":\"0x8D81157D2DEBEB5\",\"lastModified\":\"2020-06-15T18:13:37.0565301Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"12\",\"eTag\":\"0x8D81157D2DBB1BD\",\"lastModified\":\"2020-06-15T18:13:37.0365373Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/12\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"16\",\"eTag\":\"0x8D81157D2DE7099\",\"lastModified\":\"2020-06-15T18:13:37.0545305Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"11\",\"eTag\":\"0x8D81157D2E2412F\",\"lastModified\":\"2020-06-15T18:13:37.0795311Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"9\",\"eTag\":\"0x8D81157D2E2B66A\",\"lastModified\":\"2020-06-15T18:13:37.0825322Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"7\",\"eTag\":\"0x8D81157D2E28F48\",\"lastModified\":\"2020-06-15T18:13:37.0815304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"10\",\"eTag\":\"0x8D81157D2E28F48\",\"lastModified\":\"2020-06-15T18:13:37.0815304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"6\",\"eTag\":\"0x8D81157D2E2B66A\",\"lastModified\":\"2020-06-15T18:13:37.0825322Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"4\",\"eTag\":\"0x8D81157D2E2DD67\",\"lastModified\":\"2020-06-15T18:13:37.0835303Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"13\",\"eTag\":\"0x8D81157D2E2DD67\",\"lastModified\":\"2020-06-15T18:13:37.0835303Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"8\",\"eTag\":\"0x8D81157D2E2DD67\",\"lastModified\":\"2020-06-15T18:13:37.0835303Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"2\",\"eTag\":\"0x8D81157D2E30478\",\"lastModified\":\"2020-06-15T18:13:37.0845304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"1\",\"eTag\":\"0x8D81157D2E32B98\",\"lastModified\":\"2020-06-15T18:13:37.085532Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"5\",\"eTag\":\"0x8D81157D2E30478\",\"lastModified\":\"2020-06-15T18:13:37.0845304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"0\",\"eTag\":\"0x8D81157D2E30478\",\"lastModified\":\"2020-06-15T18:13:37.0845304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"3\",\"eTag\":\"0x8D81157D2F3DEEF\",\"lastModified\":\"2020-06-15T18:13:37.1949807Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/3\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"14\",\"eTag\":\"0x8D81157D2F47B11\",\"lastModified\":\"2020-06-15T18:13:37.1989777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/14\"\r\n }\r\n ]\r\n}" } } }, { "request": { "method": "PATCH", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3?api-version=2019-08-01.10.0", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3?api-version=2020-03-01.11.0", "body": "{\"onAllTasksComplete\": \"terminatejob\"}", "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-batch/8.0.0 Azure-SDK-For-Python batchextensionsclient/7.0.0" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-batch/9.0.0 Azure-SDK-For-Python batchextensionsclient/9.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -18849,13 +17084,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU5MjI0NDUxNywibmJmIjoxNTkyMjQ0NTE3LCJleHAiOjE1OTIzMzEyMTcsImFpbyI6IjQyZGdZQkFSVzc3ZytjZjdYVUhidlFvTDl1YzlCZ0E9IiwiYXBwaWQiOiJiZmEwZGY1Zi00NzgyLTQ4MjktODZlMC0xOWE4MjgyN2IwOTYiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwib2lkIjoiYTJjZDE3NWYtNDhlYS00Zjg5LThkZjgtYjA2NzI4NDE3ZWQ4IiwicmgiOiIwLkFRRUF2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIxX2ZvTC1DUnlsSWh1QVpxQ2duc0pZYUFBQS4iLCJzdWIiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1dGkiOiJkb3h4VkdaMEpVT3VwemE3aWNVQkFBIiwidmVyIjoiMS4wIn0.aswEvRo5H5ug0rEhaKHd9Wz72s1yBkobAIDyjBA3XbZWU8Z-8s7oHfSShRgC82til14OU3iUFm5peS28j1MxhqYxv5QX7HIjWN6nPhwe8RrK0tmhVKYw48-fNd2F7kQ_qDcBs9t-81WW45AE66M656o4COvTXmfBFAMwTUdgpy3nbMzVQKwAHoSgGHGSRPQczLIVl_Y42yKYZYJt339s6o2C6fkajfr5ADjAy0KGbiOVHjvELvWqu409FPH_EfxuhEt_lpdxIzND9BGzN_Ai7Ubv-4aBzJ6UzzfuGHFJ8kagfg8C0-sygwLfbs2ovzPjtva5guDEnn3pmFG4o2EGNw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "83e2eb8c-c372-11e9-ba0c-44032c851686" + "eeebf32c-af33-11ea-b13e-44032c851686" ], "accept-language": [ "en-US" @@ -18871,35 +17106,35 @@ "message": "OK" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3" - ], - "Date": [ - "Tue, 20 Aug 2019 17:47:01 GMT" + "request-id": [ + "842ae2e9-7522-4631-a89d-50c82ee87075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "ETag": [ - "0x8D72596681F6F76" + "0x8D81157D33D4059" ], - "request-id": [ - "b41e04a0-98b0-441e-9c92-ae47a212604c" + "X-Content-Type-Options": [ + "nosniff" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:47:01 GMT" + "Date": [ + "Mon, 15 Jun 2020 18:13:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" + "Last-Modified": [ + "Mon, 15 Jun 2020 18:13:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3" ], "DataServiceVersion": [ "3.0" + ], + "Transfer-Encoding": [ + "chunked" ] }, "body": { diff --git a/tests/recordings/test_batch_upload_live.yaml b/tests/recordings/test_batch_upload_live.yaml index d1591668..3d2f641b 100644 --- a/tests/recordings/test_batch_upload_live.yaml +++ b/tests/recordings/test_batch_upload_live.yaml @@ -4,11 +4,11 @@ { "request": { "method": "GET", - "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2?api-version=2019-08-01", + "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2?api-version=2020-05-01", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-batch/7.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-batch/9.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -20,10 +20,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQzNzk4LCJuYmYiOjE1OTIyNDM3OTgsImV4cCI6MTU5MjMzMDQ5OCwiYWlvIjoiNDJkZ1lGaHhUU2w4UFdmaGs4aC81NU5URm5ndkF3QT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6Im1LSmZGdnM4dmtXcWRmd0NQdTRBQUEiLCJ2ZXIiOiIxLjAifQ.hRq_ft_2qvFHGymWvc5DcFrBwc7ZFBleB8ZLyS4uZJbUI7Idz40hfwBNPajIT3h2C2Lh9N1tUWoVtuALno8oAnWkMwsCp5EVoVxpkbeaPe7nffks82w6TTBQRFs6yQ40EElPL8L4iKQh9Gfus7SiX4OBW6q4vGDzZKqrUlTCE3Fb1I4hgOEgJkN40Ib2l6DFsEieQ7RLyBcDAj_laiA2OpdDorRTWJ6wI8nLxjFYslH3Q6dx5ioDAAdDeSTFLZTIu2tJerT-YT0r1hk39Un9Sf7OBBbekRZYHj64Z-5WAOARb07WOItu45ox8AZLaXbmY5qWvZK7-nkj596ZEaA5hA" ], "x-ms-client-request-id": [ - "620e0246-c36d-11e9-8d5d-44032c851686" + "429d3924-af32-11ea-b3bc-44032c851686" ], "accept-language": [ "en-US" @@ -36,29 +36,32 @@ "message": "OK" }, "headers": { + "Cache-Control": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "ETag": [ + "\"0x8D8110413FDD02A\"" + ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "\"0x8D719F74B1A7775\"" - ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Mon, 15 Jun 2020 18:01:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Cache-Control": [ - "no-cache" + "Last-Modified": [ + "Mon, 15 Jun 2020 08:14:08 GMT" ], - "Date": [ - "Tue, 20 Aug 2019 17:10:18 GMT" + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" @@ -69,15 +72,12 @@ "Expires": [ "-1" ], - "Last-Modified": [ - "Mon, 05 Aug 2019 22:50:20 GMT" - ], "content-length": [ - "2074" + "2447" ] }, "body": { - "string": "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2019-07-16T21:55:40.4909987Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}" + "string": "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2020-06-15T08:14:08.5867562Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"rawr\":\"test\"},\"identity\":{\"type\":\"None\"}}" } } }, @@ -88,7 +88,7 @@ "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -100,13 +100,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQzODAwLCJuYmYiOjE1OTIyNDM4MDAsImV4cCI6MTU5MjMzMDUwMCwiYWlvIjoiNDJkZ1lEaXc4TnlTbWkrNkYxSmlmeWJMM3JsMEZBQT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6IjA4bFRaU0NzNUVLaS1VbEZHeVlCQUEiLCJ2ZXIiOiIxLjAifQ.BwugoCAlsy4Gelp3OUo-2wi3i1WcALvRiMa-RY6MIs4QwIXF3Piwy33XAVOjmMyRFhS8-QrP4OQT29G5Xq7tLHW_joyJGotZZNabA2OEhaaiu9ipHoBiwpMtp9Bj_29DMHGlG1cbHrocuVWSpwZ1tmeUvdrQ_wn3iVK_pgLyVrCPo99KcTZQedDNy-Y3qf6hSIeJ9UvTjWq45-X9JKi0z-HCibSynOZE39CxQbbYxzeXQPq3YG8jFbnxhSnShrXxveDNTDpK2Vz0V3FrGnjthh3l54mtmPArV_nuwbrhiCYWr9G_ScEvNNvAnMoWl6w-ogpx-Ucf6VjXItL6SqsJYw" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "635f8cc8-c36d-11e9-8f2e-44032c851686" + "436aa29c-af32-11ea-9397-44032c851686" ], "accept-language": [ "en-US" @@ -122,29 +122,29 @@ "message": "OK" }, "headers": { + "Cache-Control": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Date": [ + "Mon, 15 Jun 2020 18:01:39 GMT" ], "Content-Type": [ "application/json" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:19 GMT" + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" @@ -171,7 +171,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -180,13 +180,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "639a9b26-c36d-11e9-bd96-44032c851686" + "43d5c376-af32-11ea-9841-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" + "Mon, 15 Jun 2020 18:01:40 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:v7Qz3XrJDiV1hh2gPzfDRZpEwaXRSQlIVDDYAJfIxMQ=" + "SharedKey sdkteststore2:lmO6Sd78KXLDgf2rhdj5A3jUFDtlYlQchlA0QrUCF8E=" ], "Content-Length": [ "0" @@ -195,31 +195,31 @@ }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { + "x-ms-error-code": [ + "ContainerAlreadyExists" + ], + "Date": [ + "Mon, 15 Jun 2020 18:01:40 GMT" + ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "\"0x8D7259147EDD103\"" - ], "Content-Length": [ - "0" + "230" + ], + "Content-Type": [ + "application/xml" ], "x-ms-version": [ "2017-07-29" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:10:20 GMT" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:260e19fb-501e-0074-273f-43e246000000\nTime:2020-06-15T18:01:41.3800405Z" } } }, @@ -230,7 +230,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -239,113 +239,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "63bda924-c36d-11e9-9f01-44032c851686" + "44418176-af32-11ea-9a2e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" + "Mon, 15 Jun 2020 18:01:41 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:5vEpgDf9i7CfmjL971k17Nc+Pk88wELnAFKqF2GpHEY=" + "SharedKey sdkteststore2:3t+4wxCzUisvkPNEekIe2NqMnsNC5uotpIsuLc9/ltM=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-error-code": [ - "BlobNotFound" - ], - "Content-Type": [ - "application/xml" + "ETag": [ + "\"0x8D76D34FC8AD656\"" ], "Date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" - ], - "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:4bdbf2ca-201e-0095-757a-570533000000\nTime:2019-08-20T17:10:20.3918348Z" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-cli-batch-extensions-live-tests/foo.txt", - "body": "1", - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.2560813" - ], - "Content-MD5": [ - "xMpCOKC5I4INzFCab3WEmw==" - ], - "Content-Length": [ - "1" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "63c45fe2-c36d-11e9-a84e-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:luZ7DbzrTNLthPaTz0OPxcuZVcuucyVjpOYOWE5WUyI=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-request-server-encrypted": [ - "true" + "Mon, 15 Jun 2020 18:01:41 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "\"0x8D7259147FB9423\"" + "Last-Modified": [ + "Tue, 19 Nov 2019 21:11:03 GMT" ], "Content-Length": [ "0" ], - "Content-MD5": [ - "xMpCOKC5I4INzFCab3WEmw==" - ], "x-ms-version": [ "2017-07-29" ], - "Date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:10:20 GMT" + "x-ms-meta-lastmodified": [ + "1524153754.2560813" ] }, "body": { @@ -356,11 +285,11 @@ { "request": { "method": "GET", - "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2?api-version=2019-08-01", + "uri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2?api-version=2020-05-01", "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-batch/7.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-batch/9.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -372,10 +301,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQzODAxLCJuYmYiOjE1OTIyNDM4MDEsImV4cCI6MTU5MjMzMDUwMSwiYWlvIjoiNDJkZ1lQaGU1RzM3dmQxcTdxWWlCNmZJN29QMkFBPT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6InhWOEJ0WXgxQ1VxZ2xvT1JLTU1BQUEiLCJ2ZXIiOiIxLjAifQ.cGOzFjh8rW8LpO2oT9FivUqi1kwltLWfH3K7nHpZfg1WO_L6nHgmVvHSEocPLaz3FC9KZthmt9Fsh1zHsxEZFS6u5XUbZv0Yl5FXQs2q1Wq_D0B4HWtjr2M5VTaIbyAAqAbewE0BQJagIEu4Ba3RLRZ0Krwkbt4d3lYwpR369bzSIKVY8tPkxQpji-XxNT-FVxlSv9g4vl2EEMIXRUo994Fgc1mpBggDLRN_P1OadQLalgDydKmdtirKYXAog4yabYd28kaXm65gY-HtaG1v-n0Yue0a6_23MT6JbOEsbiDethlx0dOANM3-RDo_qhPbfz98rBhpchlzG4UCOhGJhA" ], "x-ms-client-request-id": [ - "63f757ec-c36d-11e9-abd6-44032c851686" + "4473dc2e-af32-11ea-8636-44032c851686" ], "accept-language": [ "en-US" @@ -388,29 +317,32 @@ "message": "OK" }, "headers": { + "Cache-Control": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "ETag": [ + "\"0x8D8110413FDD02A\"" + ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "\"0x8D719F74B1A7775\"" - ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Mon, 15 Jun 2020 18:01:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Cache-Control": [ - "no-cache" + "Last-Modified": [ + "Mon, 15 Jun 2020 08:14:08 GMT" ], - "Date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" @@ -421,15 +353,12 @@ "Expires": [ "-1" ], - "Last-Modified": [ - "Mon, 05 Aug 2019 22:50:20 GMT" - ], "content-length": [ - "2074" + "2447" ] }, "body": { - "string": "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2019-07-16T21:55:40.4909987Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}" + "string": "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Batch/batchAccounts/sdktest2\",\"name\":\"sdktest2\",\"type\":\"Microsoft.Batch/batchAccounts\",\"location\":\"westcentralus\",\"properties\":{\"accountEndpoint\":\"sdktest2.westcentralus.batch.azure.com\",\"provisioningState\":\"Succeeded\",\"dedicatedCoreQuota\":20,\"dedicatedCoreQuotaPerVMFamily\":[{\"name\":\"standardA0_A7Family\",\"coreQuota\":20},{\"name\":\"standardDv2Family\",\"coreQuota\":20},{\"name\":\"standardA8_A11Family\",\"coreQuota\":0},{\"name\":\"standardDFamily\",\"coreQuota\":0},{\"name\":\"standardGFamily\",\"coreQuota\":0},{\"name\":\"basicAFamily\",\"coreQuota\":0},{\"name\":\"standardFFamily\",\"coreQuota\":0},{\"name\":\"standardNVFamily\",\"coreQuota\":0},{\"name\":\"standardNVPromoFamily\",\"coreQuota\":0},{\"name\":\"standardNCFamily\",\"coreQuota\":0},{\"name\":\"standardNCPromoFamily\",\"coreQuota\":0},{\"name\":\"standardHFamily\",\"coreQuota\":0},{\"name\":\"standardHPromoFamily\",\"coreQuota\":0},{\"name\":\"standardAv2Family\",\"coreQuota\":0},{\"name\":\"standardMSFamily\",\"coreQuota\":0},{\"name\":\"standardDv3Family\",\"coreQuota\":0},{\"name\":\"standardEv3Family\",\"coreQuota\":0},{\"name\":\"standardDSFamily\",\"coreQuota\":0},{\"name\":\"standardDSv2Family\",\"coreQuota\":0},{\"name\":\"standardDSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSFamily\",\"coreQuota\":0},{\"name\":\"standardESv3Family\",\"coreQuota\":0},{\"name\":\"standardGSFamily\",\"coreQuota\":0},{\"name\":\"standardLSFamily\",\"coreQuota\":0},{\"name\":\"standardLSv2Family\",\"coreQuota\":0},{\"name\":\"standardNCSv2Family\",\"coreQuota\":0},{\"name\":\"standardNDSFamily\",\"coreQuota\":0},{\"name\":\"standardNCSv3Family\",\"coreQuota\":0},{\"name\":\"standardFSv2Family\",\"coreQuota\":0},{\"name\":\"standardHBSFamily\",\"coreQuota\":0},{\"name\":\"standardHCSFamily\",\"coreQuota\":0},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"coreQuota\":0},{\"name\":\"standardDASv4Family\",\"coreQuota\":0},{\"name\":\"standardEAv4Family\",\"coreQuota\":0},{\"name\":\"standardEASv4Family\",\"coreQuota\":0}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":false,\"lowPriorityCoreQuota\":100,\"poolQuota\":100,\"activeJobAndJobScheduleQuota\":300,\"autoStorage\":{\"storageAccountId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdktest/providers/Microsoft.Storage/storageAccounts/sdkteststore2\",\"lastKeySync\":\"2020-06-15T08:14:08.5867562Z\"},\"poolAllocationMode\":\"BatchService\",\"publicNetworkAccess\":\"Enabled\",\"encryption\":{\"keySource\":\"Microsoft.Batch\"}},\"tags\":{\"rawr\":\"test\"},\"identity\":{\"type\":\"None\"}}" } } }, @@ -440,7 +369,7 @@ "body": null, "headers": { "User-Agent": [ - "python/3.6.5 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" + "python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -452,13 +381,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlJSSSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTkyMjQzODAyLCJuYmYiOjE1OTIyNDM4MDIsImV4cCI6MTU5MjMzMDUwMiwiYWlvIjoiNDJkZ1lMaHZ1MW05dHZwQXlkbDgzeGJudjh3ckFRPT0iLCJhcHBpZCI6ImJmYTBkZjVmLTQ3ODItNDgyOS04NmUwLTE5YTgyODI3YjA5NiIsImFwcGlkYWNyIjoiMSIsImlkcCI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJvaWQiOiJhMmNkMTc1Zi00OGVhLTRmODktOGRmOC1iMDY3Mjg0MTdlZDgiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjFfZm9MLUNSeWxJaHVBWnFDZ25zSllhQUFBLiIsInN1YiI6ImEyY2QxNzVmLTQ4ZWEtNGY4OS04ZGY4LWIwNjcyODQxN2VkOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInV0aSI6InMyaEtlaW5CLUV5cTNiMnhlVlFCQUEiLCJ2ZXIiOiIxLjAifQ.EqHDgvaRCL81h7OchWWwWfVqbrtN4QWpCWQtSRNySy7utwKwI5yFSGdgjbcTo0WMtPlrxrIw6BBjomObA-FEDAMvzFjuheD7L4ayR2iLt55SU4DWU9VJ-GfmA9-IgJi1GuL8YMQhweTvUMhdVp8ve084NSwGxtQ6e4LtpPmIP08u3JcLZ9fB72r9YYttGKHzplBHHCiAlObIvdRndaRGyBGgH9x15OfuW8QaTEOITBqxYeUDu_YPLtrd-PZtdQq5m2mX3BP5iaeWfGNDpDrIXVLP-8qhPMWrF8iX1GQd7iyielazGhQN94kKT58WprcdvNISc9iWrGNm3rsoFuPIeA" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "64348c5a-c36d-11e9-bba3-44032c851686" + "44e67882-af32-11ea-a14e-44032c851686" ], "accept-language": [ "en-US" @@ -474,29 +403,29 @@ "message": "OK" }, "headers": { + "Cache-Control": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Date": [ + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Content-Type": [ "application/json" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" + "Vary": [ + "Accept-Encoding" ], "Pragma": [ "no-cache" @@ -523,7 +452,7 @@ "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" @@ -532,13 +461,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "646d2eb6-c36d-11e9-94af-44032c851686" + "4568b5ca-af32-11ea-806e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:1isvSPc/8yB/u2FpErFqYsn4rl5T9zNv2dKWniT5ZqY=" + "SharedKey sdkteststore2:4x4lXCyTq1j6/Qbc2OYBqF055WnrKf6KBKSVsLbXOIc=" ], "Content-Length": [ "0" @@ -551,153 +480,82 @@ "message": "The specified container already exists." }, "headers": { - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-version": [ - "2017-07-29" - ], "x-ms-error-code": [ "ContainerAlreadyExists" ], - "Content-Type": [ - "application/xml" - ], "Date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Content-Length": [ - "230" - ] - }, - "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:2ba5f07f-801e-00d7-587a-572e27000000\nTime:2019-08-20T17:10:21.6712573Z" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-cli-batch-extensions-live-tests/test/data/foo.txt?comp=metadata", - "body": null, - "headers": { - "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" - ], - "Connection": [ - "keep-alive" - ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "64877314-c36d-11e9-b7df-44032c851686" + "Mon, 15 Jun 2020 18:01:43 GMT" ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:aAHSeQqJMQfy81sMSEeHBMNxvc4B5Sq9dWqWou4q/7M=" - ] - } - }, - "response": { - "status": { - "code": 404, - "message": "The specified blob does not exist." - }, - "headers": { "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-error-code": [ - "BlobNotFound" + "Content-Length": [ + "230" ], "Content-Type": [ "application/xml" ], - "Date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Content-Length": [ - "215" + "x-ms-version": [ + "2017-07-29" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:2ba5f090-801e-00d7-677a-572e27000000\nTime:2019-08-20T17:10:21.7162882Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:72e202e3-401e-0049-693f-435760000000\nTime:2020-06-15T18:01:43.4848715Z" } } }, { "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-cli-batch-extensions-live-tests/test/data/foo.txt", - "body": "1", + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-cli-batch-extensions-live-tests/test/data/foo.txt?comp=metadata", + "body": null, "headers": { "User-Agent": [ - "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.6.5; Windows 10)" + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" ], "Connection": [ "keep-alive" ], - "x-ms-blob-type": [ - "BlockBlob" - ], - "x-ms-meta-lastmodified": [ - "1524153754.2560813" - ], - "Content-MD5": [ - "xMpCOKC5I4INzFCab3WEmw==" - ], - "Content-Length": [ - "1" - ], "x-ms-version": [ "2017-07-29" ], "x-ms-client-request-id": [ - "648e5078-c36d-11e9-bd72-44032c851686" + "458257d0-af32-11ea-ada3-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:CA4y9UdmvqQCSTVMsl3UlY5NEZN/hlYLMW8pBl8xt04=" + "SharedKey sdkteststore2:fBHoHE8Kh6iKhWivp4TrAnFEVOxUe8aD13VowH/+7Q8=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 200, + "message": "OK" }, "headers": { - "x-ms-request-server-encrypted": [ - "true" + "ETag": [ + "\"0x8D76D34FD38C1F0\"" + ], + "Date": [ + "Mon, 15 Jun 2020 18:01:43 GMT" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "\"0x8D7259148C5E662\"" + "Last-Modified": [ + "Tue, 19 Nov 2019 21:11:05 GMT" ], "Content-Length": [ "0" ], - "Content-MD5": [ - "xMpCOKC5I4INzFCab3WEmw==" - ], "x-ms-version": [ "2017-07-29" ], - "Date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:10:21 GMT" + "x-ms-meta-lastmodified": [ + "1524153754.2560813" ] }, "body": {