From 8f822cf9ce61d3a770a83880a8918c30c782b7e0 Mon Sep 17 00:00:00 2001 From: Brandon Klein Date: Thu, 9 Apr 2020 15:55:22 -0700 Subject: [PATCH] AAPI update --- HISTORY.rst | 5 + azext/batch/version.py | 2 +- batch-cli-extensions/HISTORY.rst | 5 + batch-cli-extensions/azext_batch/_params.py | 3 + .../azext_batch/azext_metadata.json | 2 +- batch-cli-extensions/azext_batch/custom.py | 23 +- batch-cli-extensions/azext_batch/version.py | 2 +- batch-cli-extensions/setup.py | 2 +- setup.py | 2 +- .../test_batch_extensions_live.yaml | 13976 ++++++---------- tests/recordings/test_batch_upload_live.yaml | 866 +- 11 files changed, 5409 insertions(+), 9479 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c3bb21f..d1aa4c1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ SDK Release History =================== +8.0.0 (2020-04-??) +------------------ + +* Update to match latest Python SDK taking associated breaking changes. + 7.0.0 (2019-08-20) ------------------ diff --git a/azext/batch/version.py b/azext/batch/version.py index 2cfac96..143112f 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 5a33119..321da2b 100644 --- a/batch-cli-extensions/HISTORY.rst +++ b/batch-cli-extensions/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +6.0.0 (2020-04-??) +------------------ + +* 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 5a43540..7c2655b 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 dd5cf75..dc8d29d 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 ad3dd10..05be9d5 100644 --- a/batch-cli-extensions/azext_batch/custom.py +++ b/batch-cli-extensions/azext_batch/custom.py @@ -18,9 +18,20 @@ logger = get_logger(__name__) # 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 8cfc243..5ac82d6 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 1f7fa1b..c7c2442 100644 --- a/batch-cli-extensions/setup.py +++ b/batch-cli-extensions/setup.py @@ -27,7 +27,7 @@ CLASSIFIERS = [ ] 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 a5af722..0c28ee3 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ CLASSIFIERS = [ DEPENDENCIES = [ 'msrestazure>=0.4.14,<1', - 'azure-batch>=8.0,<9', + 'azure-batch>=9.0,<10', 'azure-mgmt-batch>=7.0,<8', '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 b227363..a220608 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" + "e3a53874-7aaf-11ea-a04a-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:39:08 GMT" + "Thu, 09 Apr 2020 22:17:24 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:pXWwZGjW0/MuBWjndgsKTje23wxfE9TQolEFG4GDHWY=" + "SharedKey sdkteststore2:oe7CRJQDu/BtMs9UXRb9CJ4rn5FF43u1wv5F1wTazKY=" ] } }, @@ -33,12 +33,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -46,7 +40,13 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:39:08 GMT" + "Thu, 09 Apr 2020 22:17:24 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { @@ -57,11 +57,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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -73,16 +73,16 @@ "keep-alive" ], "client-request-id": [ - "6a1c4ef0-c371-11e9-9fa5-44032c851686" + "e3bc7e26-7aaf-11ea-9ddb-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "Thu, 09 Apr 2020 22:17:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:WP1bPW3/llJrplS1jWd98aIJgVitv/mizr9fuEg/Qj0=" + "SharedKey sdktest2:7LeNk4V4OmIrBdrXCT/PR95lpTGU/jdqNO8tStANquI=" ] } }, @@ -95,41 +95,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "e141e677-28f7-4d23-b862-46609acd0138" + "9848e9c7-472a-4667-9cc7-4ed35be0298e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:24 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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 16.04\",\"capabilities\":[\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1-smalldisk\",\"version\":\"latest\"\r\n },\"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\":\"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-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 ]\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-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -144,7 +144,7 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "6a476624-c371-11e9-a683-44032c851686" + "e3eac34a-7aaf-11ea-a775-44032c851686" ], "accept-language": [ "en-US" @@ -153,140 +153,131 @@ "248" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "Thu, 09 Apr 2020 22:17:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:DKyBEpswRRv3z4JvQkK9rJwAGfeJ2nZ9yEvbHPBJK5U=" + "SharedKey sdktest2:b5nasPvpyU5/d4rGfp+3Q3E5Aiv9SROfdXZeTiLAxFg=" ] } }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified pool already exists." }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604" + "Content-Type": [ + "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "DataServiceVersion": [ + "3.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "request-id": [ + "2adac6b4-5b91-4f2a-9768-b95629ebd15b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "X-Content-Type-Options": [ "nosniff" ], - "ETag": [ - "0x8D725954EB17F5F" + "Content-Length": [ + "334" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:24 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "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:2adac6b4-5b91-4f2a-9768-b95629ebd15b\\nTime:2020-04-09T22:17:25.0284427Z\"\r\n }\r\n}" + } + } + }, + { + "request": { + "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.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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "e3f4fcae-7aaf-11ea-b27d-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:17:25 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:mxRS6oCzHagf1TLn6hbKag7N1FC4cB+6wIjzU5h1tZY=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "8d621c71-74be-4afe-a9e7-341f556270b2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Location": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604" - ], - "Transfer-Encoding": [ - "chunked" - ], - "request-id": [ - "ae0a2072-8478-41f3-9281-23c72c3046aa" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "6a836c86-c371-11e9-b6a4-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:gwbzkWoEQL4KjRlWZy0bGiwPcRO5gPsK7RDlg0KzKjM=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Thu, 09 Apr 2020 21:58:26 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:24 GMT" ], "ETag": [ - "0x8D725954EB17F5F" + "0x8D7DCD1218C2989" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "d6bbca3d-edff-4cac-b2cc-1117359a8892" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD1218C2989\",\"lastModified\":\"2020-04-09T21:58:26.5323913Z\",\"creationTime\":\"2020-04-09T21:58:26.5323913Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T21:58:26.5323913Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-04-09T21:59:22.7820854Z\",\"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?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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -298,16 +289,16 @@ "keep-alive" ], "client-request-id": [ - "6c56765a-c371-11e9-a076-44032c851686" + "e3fcebc6-7aaf-11ea-9692-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:39:12 GMT" + "Thu, 09 Apr 2020 22:17:25 GMT" ], "Authorization": [ - "SharedKey sdktest2:HsHtu0noEtsf+H9AMbqZ9rhdA2ZdfduWeiG1sLYLECk=" + "SharedKey sdktest2:XEvwLFcfuk79Bc0AGLmkrDCo/p37dK32BH40W/g3Tco=" ] } }, @@ -320,1805 +311,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:39:12 GMT" + "DataServiceVersion": [ + "3.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "request-id": [ + "bea67df4-066e-41a5-8099-4fb5fc5d0000" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "9f1ef8a6-681b-420e-8fe6-efa0087c5f6b" + "X-Content-Type-Options": [ + "nosniff" ], "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "6e2a3a64-c371-11e9-a8f0-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:15 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:04NVwiSjN834FL2Pi17YFtgdY8AWEIU4D79jpNL314A=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], "Date": [ - "Tue, 20 Aug 2019 17:39:15 GMT" + "Thu, 09 Apr 2020 22:17:24 GMT" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "50a6969b-7d7c-468e-ab60-36bd2103ef7d" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "6ffccfb6-c371-11e9-8e66-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:18 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:IQ4V/su9VwoeJVu9PEjB1LKhtRgXBVivo5qB5359LWQ=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:18 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "08d7c6a8-af15-4b69-941b-359c9cf26a1e" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "71cf76a4-c371-11e9-b531-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:21 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:qFgi4+BaOY7Crv/YqrpjP/rHviBjyZYMkjpuexVj0h0=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:21 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "26b8cdf3-f6b2-492f-a916-582e9cbfb1ad" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "73a0a066-c371-11e9-9cce-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:25 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:F1NG1Ttx3RRWNK3kD4uFirndy3TA061PoWsptK2jyt4=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:24 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "28be9f29-41ef-4c76-af64-5d4e81f1b58f" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "7572307a-c371-11e9-98e1-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:28 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:dqDhH0zhCYtqpFAnGV6avNjbbieLNEaMXeJ+LP+zBmQ=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:27 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "fe57710d-fc75-4288-9e72-0433c64c905b" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "7744d77a-c371-11e9-ad1d-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:31 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:lPK36U22cmvdmbHGAyw18O+lXAZsXuZeaeRm3EM+HGI=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:31 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "20b1590c-3e41-46fd-90e2-02010d62e865" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "79183ae2-c371-11e9-a371-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:34 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:yvF1588cOs686ruw2Frp2hZe6TFcV3u2Zh27DAZFsJ8=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:33 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "67878375-15a0-46f9-b62a-9f796c1e27da" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "7aea4e2c-c371-11e9-b29b-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:37 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:EqJhKiYtsOv0ahYOfSKgdH611VBn45UyYkcj6wVesck=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:37 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "a8e774a0-1cb8-405b-8cd0-6c92b161c35b" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "7cbda8ec-c371-11e9-89e9-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:40 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:3woEiTsctogm5pLGhmcRf1hUCplsNxnTpuTlVtvewME=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:39 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "bbbf381b-5a23-449e-8e2f-19b576987977" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "7e91b5ac-c371-11e9-be98-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:43 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:yl+t9V8tczYabu1yejzgay56VSBwNZO4jNBS18RG9lo=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:42 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "71eb7b07-b600-4b86-9f1d-4deae7fcd282" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "806402fa-c371-11e9-8e1d-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:46 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:KgD8HVmlEPFXQ20c0YhzsYFJb7VT41m4CWC6aqidAq8=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:45 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "c494789c-c5fb-4c77-afb3-46435646e75b" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "823558a4-c371-11e9-b956-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:49 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:tKakqhaHp6+4oiK4zo4bNgALetFvIpGwOacU7d/booY=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:49 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "04e1c128-4d0c-4255-9da0-e9c09bc89526" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "840725dc-c371-11e9-81e6-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:52 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:0cLpUfaoIx0mGlaIoMYUi6OBTkMwWG8X7lSHTQcyPJ8=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:52 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "09d528f0-ac98-436f-b6f5-b1052e6fed6d" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "85d8d354-c371-11e9-ab8b-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:55 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:GPPtmRYUL2K5iPBf01lyRZI1BcpfPZvhX0FqZvd2OMs=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:55 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "94868be8-cae4-4f0e-bc00-1ac2ef00d4b4" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "87ae0c68-c371-11e9-8cbb-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:39:58 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:+AV3jMin2QM7857gYUEHzZoW5+v+E9lD0mogrIj1hb4=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:39:58 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "51374efa-79cd-43bd-8827-4d333b2ee720" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "898098f6-c371-11e9-b57d-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:01 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:jw91ur/OHkSoRNTBvQaT3fWdBKVcA+3+su9Hfq//ShQ=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:01 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "772dfeb5-eea1-438b-b917-dc621af48cc3" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "8b51f440-c371-11e9-b5d5-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:04 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:jJxFpvl6x5NiCsndQ04U9cSBcIyx3hm6uZy7v198o8E=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:04 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "0e05282a-7754-4eb7-b137-54dd56bcbaba" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "8d251b9c-c371-11e9-9a9c-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:07 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:ZjgpVQ86BRAp9WwEsZU8yO7EW5ArWrALvrn1hvcY8rg=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:06 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "bc9590e8-9c15-4d5a-87c5-3baff66c7bda" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "8ef6e464-c371-11e9-af6d-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:10 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:/dEsBQxi/Om3fd2t9nwBslsnOUHYK/t8sHR+qMPzzOQ=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:10 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "7419094a-aa16-489e-92aa-36c86b3e2ed5" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "90c8de68-c371-11e9-8b58-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:13 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:29iih/nrq2CFY490bMOnMWMxubgZlf2dMRshBaGkPbs=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:13 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "f686e463-37a3-4e90-ab6f-6de57e64e59f" - ], - "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-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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604?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": [ - "929ccd2c-c371-11e9-a581-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:16 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:uyyC2lyKkdCfEdYJuvl+qIYkJYi1imssW72mYWT1h6M=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725954EB17F5F" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "2482022e-332b-48c5-891b-cbf8710588f9" - ], - "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-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": [ - "92a44834-c371-11e9-ba58-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:17 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:a4AEkGOpd45ojqsfIPZFGGmTvAteV5OaBfPe3f8vymI=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "05c650bd-4bf7-48ea-8d4b-a2c128667859" - ], - "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\":\"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}" - } - } - }, - { - "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": [ - "9475a2ae-c371-11e9-8dd2-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:20 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:KmtmNyWC9j5zNTZ113ABvQlg4E7KEuHbY+K9PQx9EAg=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:20 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "d96567fb-a088-4460-a4e9-dc2b2e87dea8" - ], - "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\":\"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}" - } - } - }, - { - "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": [ - "9648e4ba-c371-11e9-9bf4-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:23 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:5/8Qj4tu0VTvu2Hh9AcnMWoe/QnDLmnIuyYlOSOkUkQ=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:40:23 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "684a0487-829c-48da-b957-ae593c06357d" - ], - "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: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#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T21:59:51.612561Z\",\"lastBootTime\":\"2020-04-09T21:59:51.519644Z\",\"allocationTime\":\"2020-04-09T21:59:22.243813Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_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.17.108\",\"publicFQDN\":\"dns551c0dfe-74cd-4dfe-b3a5-637f3231d9a0-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-04-09T21:59:51.519644Z\",\"version\":\"1.7.14\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "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\", \"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2130,13 +357,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "96aafb54-c371-11e9-b133-44032c851686" + "e4281a76-7aaf-11ea-95dc-44032c851686" ], "accept-language": [ "en-US" @@ -2155,38 +382,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D725957B414460" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:24 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "request-id": [ + "c7b579c9-ccfa-4386-99bc-df685f969b2e" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "0b00045c-89d5-4083-8403-ce95fed68953" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:28 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:17:28 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "ETag": [ + "0x8D7DCD3C9FED85F" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -2197,11 +424,11 @@ { "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\"}}]}", + "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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2213,19 +440,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "970fc98a-c371-11e9-9e75-44032c851686" + "e5cfefee-7aaf-11ea-a242-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "475" + "477" ] } }, @@ -2238,41 +465,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "3192f38a-2fca-4a50-aae5-8e6f63d89d69" + "629e5f9c-b2d1-4e61-92b8-f7ecb6870eba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:28 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D7DCD3CA534F9C\",\"lastModified\":\"2020-04-09T22:17:28.6882204Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\"\r\n }\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/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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2284,16 +511,16 @@ "keep-alive" ], "client-request-id": [ - "9788badc-c371-11e9-a8f9-44032c851686" + "e62e8b2c-7aaf-11ea-bd0f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:25 GMT" + "Thu, 09 Apr 2020 22:17:28 GMT" ], "Authorization": [ - "SharedKey sdktest2:3KTXlKFP3YAcXsdqP5TmifPeUTey8Y1cdLzFORFTfYM=" + "SharedKey sdktest2:jUMBhLpAUvn/a2eIF4JgdykasT9Gh6SSApZkKwksncA=" ] } }, @@ -2303,249 +530,249 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" + "request-id": [ + "5a2cd133-b080-4a03-8106-c7af9380773d" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D725957B414460" + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:24 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "7a6a6ffd-0c46-4bc7-8b2f-884173b7092f" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?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": [ - "9791539a-c371-11e9-9189-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:25 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:1Q8WdxtUeHtCsWjon6xIDaCjvDplImTwYK7Hu9hQd78=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Thu, 09 Apr 2020 22:17:28 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:24 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "cb70c097-c58f-4ba5-971d-908574325587" - ], - "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#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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks?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": [ - "99652236-c371-11e9-b2ed-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:f5M9JAiNFf7w2EN5SpgyyCQyoVty/f9fuOM7oIJIzgI=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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#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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask?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": [ - "996e12a4-c371-11e9-9283-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:kjz4cnyJqmQyihVdFcYxvlJ6weYutUggc+GbppWvBZk=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" + "Thu, 09 Apr 2020 22:17:28 GMT" ], "ETag": [ - "0x8D725957BB9A33F" + "0x8D7DCD3C9FED85F" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:25 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD3C9FED85F\",\"lastModified\":\"2020-04-09T22:17:28.1346655Z\",\"creationTime\":\"2020-04-09T22:17:28.0386899Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:28.1346655Z\",\"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-04-09T22:17:28.1346655Z\",\"poolId\":\"ncj-ubuntu1604\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + } + } + }, + { + "request": { + "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": [ + "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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "e63604b4-7aaf-11ea-92ff-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:17:28 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:uwf6gPdCbEgh/62sRrpNhdhCrNd2CgPlBEOkSVmBmV4=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "80f627a6-bbda-4d51-8ea8-106f743c7457" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "5fbfe903-c7e6-4fd6-b494-7c6b581dbfbd" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 09 Apr 2020 22:17:28 GMT" ], - "DataServiceVersion": [ - "3.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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#tasks\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604/tasks/myTask\",\"eTag\":\"0x8D7DCD3CA534F9C\",\"creationTime\":\"2020-04-09T22:17:28.6882204Z\",\"lastModified\":\"2020-04-09T22:17:28.6882204Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:28.6882204Z\",\"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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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/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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "e8085b98-7aaf-11ea-b2bd-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:17:31 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:/itFSytuRSHh417hvBJtMr2NihqLO1NEdc1XMeitJgc=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "509bfacc-c276-4f18-a6db-20cdd5bf643e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:31 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "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\":\"0x8D7DCD3CA534F9C\",\"creationTime\":\"2020-04-09T22:17:28.6882204Z\",\"lastModified\":\"2020-04-09T22:17:28.6882204Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:17:30.101292Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:17:29.451737Z\",\"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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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-04-09T22:17:29.499284Z\",\"endTime\":\"2020-04-09T22:17:30.101292Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_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/jobs/ncj-ubuntu1604/tasks/myTask?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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "e8108f94-7aaf-11ea-9770-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:17:31 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:b0ANyJHL/ZIYBQEm/Sry2XM2XVXVu2RzjBpp6Ea8Ato=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "e6be7242-b9a9-440a-a580-a8d95d0a8fa2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:28 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:31 GMT" + ], + "ETag": [ + "0x8D7DCD3CA534F9C" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD3CA534F9C\",\"creationTime\":\"2020-04-09T22:17:28.6882204Z\",\"lastModified\":\"2020-04-09T22:17:28.6882204Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:17:30.101292Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:17:29.451737Z\",\"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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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-04-09T22:17:29.499284Z\",\"endTime\":\"2020-04-09T22:17:30.101292Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d/files/workitems/ncj-ubuntu1604/job-1/myTask\"\r\n }\r\n}" } } }, @@ -2556,7 +783,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" @@ -2565,13 +792,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "99764ab4-c371-11e9-abe7-44032c851686" + "e81a0700-7aaf-11ea-be34-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:OdeQVi6+xPhT8YGyuiEPEuDbSyHX7JmyZbN8wIPjoKw=" + "SharedKey sdkteststore2:aCEeRfpNJes9i6N/XUvlcoci06n+OB5LhfOGPdxS6UA=" ] } }, @@ -2581,12 +808,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -2594,22 +815,28 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:40:27 GMT" + "Thu, 09 Apr 2020 22:17:31 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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": "\ufefffileuploaderr.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB2443C90application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB207287506application/octet-streamecSZVw6SEI9/pztIOacL+A==BlockBlobHottrueunlockedavailabletruestderr.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB2247990application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB263FF65application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" } } }, { "request": { "method": "DELETE", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604?api-version=2019-08-01.10.0", + "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2621,7 +848,7 @@ "keep-alive" ], "client-request-id": [ - "9981707a-c371-11e9-bcf8-44032c851686" + "e826cd2e-7aaf-11ea-94a4-44032c851686" ], "accept-language": [ "en-US" @@ -2630,10 +857,10 @@ "0" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:5687sZHEC7H80334YTvh+1WSSh5p6g7tNjrfFvLnA8k=" + "SharedKey sdktest2:nq6NbIfPXRs8HRQq/LNLQom5pw7DNgrl/55DlTPyz5s=" ] } }, @@ -2643,26 +870,26 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:27 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "2bd4fe3b-909c-4617-91c7-adc65b11c304" + "edf474bb-5918-48f9-9fd3-ebaed09f0816" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:31 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -2677,7 +904,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" @@ -2686,13 +913,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "99897dfe-c371-11e9-80a1-44032c851686" + "e83b74b8-7aaf-11ea-9fb6-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:X0g/G2R0yz7yZlccdKrWMZlebmbnM28c0x+eH/bQRLg=" + "SharedKey sdkteststore2:iotdUHw4IodRH0ObFONCZiSt7D/Qsnx1soH6exKIolU=" ] } }, @@ -2702,12 +929,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -2715,11 +936,17 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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": "\ufefffileuploaderr.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB2443C90application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB207287506application/octet-streamecSZVw6SEI9/pztIOacL+A==BlockBlobHottrueunlockedavailabletruestderr.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB2247990application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtThu, 09 Apr 2020 22:17:30 GMT0x8D7DCD3CB263FF65application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" } } }, @@ -2730,7 +957,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" @@ -2739,13 +966,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "99941f9c-c371-11e9-8eb4-44032c851686" + "e847cdc8-7aaf-11ea-971e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:uouaMWiladXCm7Fm9hHRBgfgecPEKF/yUmgwQY3MLfE=" + "SharedKey sdkteststore2:DQXJw/FtgvUKIJxFV67Tan5NVVLbFkgKIeNOMZHMTQ8=" ], "Content-Length": [ "0" @@ -2758,20 +985,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:17:32 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -2786,7 +1013,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" @@ -2795,13 +1022,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "999ae210-c371-11e9-813e-44032c851686" + "e850a63e-7aaf-11ea-be9e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:/LsUUYhaMdhrREEgPAWpioJyQcHdFXQrAnnxx+hiUbM=" + "SharedKey sdkteststore2:Gtn2t1WZQCvy1r3XfiUBLdTL9EEUoGYEPc38orA9PGw=" ], "Content-Length": [ "0" @@ -2814,20 +1041,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:17:32 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -2842,7 +1069,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" @@ -2851,13 +1078,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "99a2c3a8-c371-11e9-9c6e-44032c851686" + "e85735ba-7aaf-11ea-a4b0-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:3QYhqVl9rZO0TEZLAMuamNpL83PakIF/m9S0qy1GFDQ=" + "SharedKey sdkteststore2:umZwSoS2VLlFEAyxYpP5hrrvfalxiWQ/TPkn4ZATiI0=" ], "Content-Length": [ "0" @@ -2870,20 +1097,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:17:32 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -2898,7 +1125,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" @@ -2907,13 +1134,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "99a9f3f4-c371-11e9-a965-44032c851686" + "e85e3a66-7aaf-11ea-9dfe-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:jQNFIhbu4L+M5OQEmeY3aW5mCvW/WfmRYK33Du50oY0=" + "SharedKey sdkteststore2:egLDPQBIsYMC+NsCwwY59YY1Ky/xFGzhfHUh46YRG3Q=" ], "Content-Length": [ "0" @@ -2926,20 +1153,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:17:32 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -2950,11 +1177,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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -2966,16 +1193,16 @@ "keep-alive" ], "client-request-id": [ - "99b0d606-c371-11e9-a8db-44032c851686" + "e864f130-7aaf-11ea-9f44-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:5Lbd2U04jG1knPmswGpVcJ75QCxFDrqTXWU2mAvcFcM=" + "SharedKey sdktest2:0i/kZ0k3epc/NGDj2Eou4tLmCXBujuDhIzCjx+rQU+k=" ] } }, @@ -2988,41 +1215,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "1fdefa5d-9bb9-4e03-b255-5118ce132010" + "916ffe4e-0a64-4add-8771-11cb674d3911" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:32 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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 16.04\",\"capabilities\":[\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1-smalldisk\",\"version\":\"latest\"\r\n },\"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\":\"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-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 ]\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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3037,7 +1264,7 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "99ba509e-c371-11e9-a532-44032c851686" + "e86f2a76-7aaf-11ea-a2bc-44032c851686" ], "accept-language": [ "en-US" @@ -3046,10 +1273,10 @@ "277" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:F2ymTkGpnEg0xP9IR60qQmr3OHGlhTiSq0Hnp3bsT9U=" + "SharedKey sdktest2:Z8UJZ1GEVJqJjXa/BneLyYzVwdTMOfsV9Ahc2rog0OA=" ] } }, @@ -3059,38 +1286,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2" + "DataServiceVersion": [ + "3.0" ], - "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" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "request-id": [ + "af37bb1d-90ed-4bda-b4d9-205de8ebc84e" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "d9ad6909-02b7-45e0-a10e-d638b2cbae0c" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:17:32 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2" + ], + "ETag": [ + "0x8D7DCD3CCAD7735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -3101,11 +1328,11 @@ { "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3117,16 +1344,16 @@ "keep-alive" ], "client-request-id": [ - "99ccccb4-c371-11e9-a38a-44032c851686" + "e881a114-7aaf-11ea-93dc-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:R00scbBql3EXY3jDxoF3lh6htFokFsduKojkwub7P/4=" + "SharedKey sdktest2:GDvgKzfXjo+hkqJ05vbqICGj2H0Oc5YiPbFAAUHJgdo=" ] } }, @@ -3136,124 +1363,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:40:28 GMT" + "request-id": [ + "e4e28c79-8d88-421c-b203-00c052675ba8" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D725957DFB0158" + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "c0cc9e32-83d6-451e-a0e6-8eab51181ea9" - ], - "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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2?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": [ - "9b9e8422-c371-11e9-9593-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:40:32 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:gA6yzFz+4vzX3/TIb/ejzicawcAL2hbI9G6BhiyjCQE=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:32 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:32 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "046d06a5-d922-4e6d-8c21-46072582c220" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3265,16 +1418,16 @@ "keep-alive" ], "client-request-id": [ - "9d71e2b6-c371-11e9-9baa-44032c851686" + "ea55eab6-7aaf-11ea-bac3-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:35 GMT" + "Thu, 09 Apr 2020 22:17:35 GMT" ], "Authorization": [ - "SharedKey sdktest2:7ziKU0DiAti+aHDYLd0p+cEWe4GZ3wrEvvH73YyDzOk=" + "SharedKey sdktest2:PQgcaBv8wHosjOAmAYMyz9jfoXTNXcNoijzX48gqYOo=" ] } }, @@ -3284,50 +1437,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "f9c3e355-c39b-4d12-b189-5c2871449f0e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:35 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:35 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "4f4220ac-ad45-438c-a420-517dc2f9ba1c" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3339,16 +1492,16 @@ "keep-alive" ], "client-request-id": [ - "9f44241e-c371-11e9-909f-44032c851686" + "ec27f51a-7aaf-11ea-8a2a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:38 GMT" + "Thu, 09 Apr 2020 22:17:38 GMT" ], "Authorization": [ - "SharedKey sdktest2:XCV60+Ux6Oo7VWaESbxLAw6mZPbjDwki3LrJd9BQrVw=" + "SharedKey sdktest2:nnYkpRS5QBPanKp+gnZ6e8ul7um7UrQuLQY4EzdEq/c=" ] } }, @@ -3358,50 +1511,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "b5362954-3d8d-4ca5-823e-8f8614646586" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:38 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:38 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "17d9f944-6b96-437f-bc60-8fb7444ae06b" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3413,16 +1566,16 @@ "keep-alive" ], "client-request-id": [ - "a11605b0-c371-11e9-9927-44032c851686" + "edf98e80-7aaf-11ea-ba52-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:41 GMT" + "Thu, 09 Apr 2020 22:17:41 GMT" ], "Authorization": [ - "SharedKey sdktest2:SORMvNF/GI3yMNUU+gOjpwpEh531Ad+dDj6+peJCpCw=" + "SharedKey sdktest2:dVHpQ5/EOwaqbk+sRogBCV1US9nQ4vlFegflWtuMeFc=" ] } }, @@ -3432,50 +1585,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "78bda183-914c-4cd9-b7cf-957fa09f2aa2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:40 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:40 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "bd1c5c9d-167d-40c7-af1e-67c298dde726" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3487,16 +1640,16 @@ "keep-alive" ], "client-request-id": [ - "a2e895f6-c371-11e9-87f9-44032c851686" + "efcbd192-7aaf-11ea-96cc-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:44 GMT" + "Thu, 09 Apr 2020 22:17:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:SKcM0NMj/S082YpsWV+zwMIOUw34ff/ytLXPS5XCwu4=" + "SharedKey sdktest2:jKIrqRehP0pyGy+Z5lf5l6y7BdkEbUj0Tapot6sifgI=" ] } }, @@ -3506,50 +1659,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "3805144a-8420-4183-9418-0a7286be182c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:43 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:44 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "186223c8-11b2-4ff8-a83b-81b46eab7984" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3561,16 +1714,16 @@ "keep-alive" ], "client-request-id": [ - "a4badde8-c371-11e9-b572-44032c851686" + "f19dd51c-7aaf-11ea-944f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:47 GMT" + "Thu, 09 Apr 2020 22:17:47 GMT" ], "Authorization": [ - "SharedKey sdktest2:s3mqw1QmcaimPPz3n6jzL2LqRZpVeNsgbDarKokmrJs=" + "SharedKey sdktest2:ZRqsKPvCewxBL0aDX5IQMBBH8asy3NXWGqYjRYiCPV8=" ] } }, @@ -3580,50 +1733,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "7d4c8193-184e-47ce-b4f3-673570e611c7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:46 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:47 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "0282ad5c-454e-407f-937b-f8b99f3b1b0b" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3635,16 +1788,16 @@ "keep-alive" ], "client-request-id": [ - "a68d5130-c371-11e9-9a2c-44032c851686" + "f36f5af0-7aaf-11ea-b2b8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:50 GMT" + "Thu, 09 Apr 2020 22:17:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:2zqiLk5lBq1WJkCSIqGtnWA6+xtGMqSUgIIp5+fXmBI=" + "SharedKey sdktest2:RLyR4BsOzUeAAc3JEUQTbyoTlnd87F+RVsR4wra8KIw=" ] } }, @@ -3654,50 +1807,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "1ebdaf92-e690-49fd-9468-5de5cd64c272" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:49 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:51 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "53a9a57b-cb96-4c96-bd40-544ad12caf6a" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3709,16 +1862,16 @@ "keep-alive" ], "client-request-id": [ - "a85f19ac-c371-11e9-8914-44032c851686" + "f5409fee-7aaf-11ea-9c9a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:53 GMT" + "Thu, 09 Apr 2020 22:17:54 GMT" ], "Authorization": [ - "SharedKey sdktest2:haRpSaUADnkH2ZE8hT9Kh50FNvdiItTI/0jYfJ4m4J8=" + "SharedKey sdktest2:BCfhcVSpsTgM+If1bW8e1Zt6ZmZsnJ8KDNhknaAkGxg=" ] } }, @@ -3728,50 +1881,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "e37deaa9-0125-4ccb-a8e2-ee4f2164a4b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:53 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "41e77d90-86fb-4ce1-842b-8c173c2145b3" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3783,16 +1936,16 @@ "keep-alive" ], "client-request-id": [ - "aa31141e-c371-11e9-ae6a-44032c851686" + "f71234f4-7aaf-11ea-8cfc-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:56 GMT" + "Thu, 09 Apr 2020 22:17:57 GMT" ], "Authorization": [ - "SharedKey sdktest2:uhFAl0PA2H7QUMGnOC6fshsKusxLv28QtuwV60CJn6w=" + "SharedKey sdktest2:1tuxb9eID9znYDeNocytZZj1kdgMPIx+7vAzh+w3mbM=" ] } }, @@ -3802,50 +1955,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "b844cd0f-4637-44da-8302-a464f85cf7e6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:55 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:57 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "3ca06436-ec0d-4ccf-aca9-d63e9b4321e1" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3857,16 +2010,16 @@ "keep-alive" ], "client-request-id": [ - "ac033188-c371-11e9-abe8-44032c851686" + "f8e60f74-7aaf-11ea-8fe6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:40:59 GMT" + "Thu, 09 Apr 2020 22:18:00 GMT" ], "Authorization": [ - "SharedKey sdktest2:OvCMjgcpdtrevjpNm2wjfboeoKyTNY9wY94av3hTBJ0=" + "SharedKey sdktest2:JYH+A/jUq5QhTqy9o2jHImj/tWMnW/qTr1fbC3xkBJw=" ] } }, @@ -3876,50 +2029,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "5af6ec11-c899-4106-a61c-b255a9f7b732" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:40:58 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:17:59 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "fa79a053-365c-4cf0-9b3f-b807135b400a" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -3931,16 +2084,16 @@ "keep-alive" ], "client-request-id": [ - "add5aacc-c371-11e9-9996-44032c851686" + "fab75386-7aaf-11ea-8704-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:02 GMT" + "Thu, 09 Apr 2020 22:18:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:RWLCsz78rGj2S6B+WoPXM1ANQ2PugH2hDiMMTW2bzYU=" + "SharedKey sdktest2:Naw5Ii6VtpNDxufjmJY88nfx0F3iwuffnPLZobdLK78=" ] } }, @@ -3950,50 +2103,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "2f75c53c-258c-4b7f-b011-5e40e15393fd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:01 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:03 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "350223fe-105c-4b54-b1d8-3263b4d7ab1f" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4005,16 +2158,16 @@ "keep-alive" ], "client-request-id": [ - "afa848b0-c371-11e9-9df4-44032c851686" + "fc89ab5c-7aaf-11ea-8300-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:05 GMT" + "Thu, 09 Apr 2020 22:18:06 GMT" ], "Authorization": [ - "SharedKey sdktest2:8b5fQGpGdv+TwR/FMpfCxHupug9LV2Ky4Dz9N4ssp8Y=" + "SharedKey sdktest2:Z3/U5+M2vU3P0UTrAu6IN6pV2RKxYrW5jmtvc3Y8iaw=" ] } }, @@ -4024,50 +2177,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "a1477d17-922d-4ce2-93f2-722ffc3c0059" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:05 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:06 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "31977adb-2654-4d25-be0d-caeab0036d85" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4079,16 +2232,16 @@ "keep-alive" ], "client-request-id": [ - "b17aeefa-c371-11e9-8729-44032c851686" + "fe5ce5ba-7aaf-11ea-a5f6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:08 GMT" + "Thu, 09 Apr 2020 22:18:09 GMT" ], "Authorization": [ - "SharedKey sdktest2:z93KVdbtdc8lLVmy07XPrrfRcapXplsAzckOVwWo8fU=" + "SharedKey sdktest2:1VLYqmwbAWUJyADA6Q0rUubFpk6GAQwrb5xcThHf5sA=" ] } }, @@ -4098,50 +2251,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "fd435585-3bb5-4749-a286-ee37443a549f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:08 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "7c012e5f-4403-4200-93ec-666197061a49" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4153,16 +2306,16 @@ "keep-alive" ], "client-request-id": [ - "b34cc8b0-c371-11e9-9988-44032c851686" + "003186f4-7ab0-11ea-a97f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:11 GMT" + "Thu, 09 Apr 2020 22:18:12 GMT" ], "Authorization": [ - "SharedKey sdktest2:WmBXsObj794YpGObTmNVSfPqQ8x/YwQ3dbHxbqvswgs=" + "SharedKey sdktest2:OF2B/MKU/S4kQiHUQjtrzGmLGuyaxcvjl0jMOWQJThM=" ] } }, @@ -4172,50 +2325,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "e7c1c71e-5097-4990-8ed9-a2e7139aa397" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:11 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:11 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "611ad7ee-232f-49b8-98a2-5a652149f5b9" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4227,16 +2380,16 @@ "keep-alive" ], "client-request-id": [ - "b51fb57a-c371-11e9-b5df-44032c851686" + "02033bd8-7ab0-11ea-8e24-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:14 GMT" + "Thu, 09 Apr 2020 22:18:15 GMT" ], "Authorization": [ - "SharedKey sdktest2:1R5+vgztVsSDSvk7v68O64407eB4wqwaQd70+2gjey0=" + "SharedKey sdktest2:jopQF+dNw7AaPYvIMmH9/UviVkIADL7o9GTf3dmSaDk=" ] } }, @@ -4246,50 +2399,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "639353dd-a544-43cb-b2a0-0bdd776a0941" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:14 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:14 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "6de937d7-3197-464b-8f41-d99e0602d363" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4301,16 +2454,16 @@ "keep-alive" ], "client-request-id": [ - "b6f5dbd8-c371-11e9-9ce9-44032c851686" + "03d4b502-7ab0-11ea-a7e4-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:17 GMT" + "Thu, 09 Apr 2020 22:18:18 GMT" ], "Authorization": [ - "SharedKey sdktest2:Iz2lo03+ENzJP5UG9/g1jRfjY/lWrKBePa/mlCaGfG4=" + "SharedKey sdktest2:NAgbsHv85qIp8TDn0ziWp6aIoXPbPc84SVGm0wx3zbw=" ] } }, @@ -4320,50 +2473,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "6f60ee96-1088-4a08-a358-5d2b9ae5e17e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:17 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:18 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "243526a3-292b-4bdb-9494-5dae867f7625" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4375,16 +2528,16 @@ "keep-alive" ], "client-request-id": [ - "b8c790d4-c371-11e9-810b-44032c851686" + "05a970ca-7ab0-11ea-a37c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:21 GMT" + "Thu, 09 Apr 2020 22:18:21 GMT" ], "Authorization": [ - "SharedKey sdktest2:JBfCCTq7ByHvfQ/R/D8kz5l1CmOKMq0btOzw1SFntKU=" + "SharedKey sdktest2:RXMCsjZTn58jz4KxAUrAigASPAe5euxQ2sCDi4CNDEo=" ] } }, @@ -4394,50 +2547,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "52747ddc-254e-45a9-90ca-f547165e1121" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:20 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:20 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "2dcae9dc-7872-4ebe-aa7b-84d2be0c1561" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4449,16 +2602,16 @@ "keep-alive" ], "client-request-id": [ - "ba9cfcf4-c371-11e9-9112-44032c851686" + "077be58c-7ab0-11ea-b8be-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:24 GMT" + "Thu, 09 Apr 2020 22:18:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:8n9E9x4oXO2p4gLFbTS0dAsaW8dMCPZGJ5TieVHlBgY=" + "SharedKey sdktest2:wp+1hAOn9yorJI2Wrv4joQnunSv4aduGQBnriF6ypKE=" ] } }, @@ -4468,50 +2621,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "c3e438f2-d453-4527-b395-43ac25821556" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:24 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:24 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "1cf02d2e-5a03-4848-98a1-530a95c9dad8" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4523,16 +2676,16 @@ "keep-alive" ], "client-request-id": [ - "bc70f946-c371-11e9-8b40-44032c851686" + "094db424-7ab0-11ea-bd4c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:27 GMT" + "Thu, 09 Apr 2020 22:18:27 GMT" ], "Authorization": [ - "SharedKey sdktest2:7Zbbp0teBjb0tpn5+UZ++UhAkSV7e2Ua5+P7PI+GRM8=" + "SharedKey sdktest2:fK7UIexqWhFJlgizdEY2jbr1GtAkwfiDHQ8kJA063OA=" ] } }, @@ -4542,50 +2695,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "0e7d816a-d944-4afc-bc92-ff74d026eb73" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:27 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:27 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "816c02da-cd4b-4548-97d0-df8209ea7112" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4597,16 +2750,16 @@ "keep-alive" ], "client-request-id": [ - "be4620ca-c371-11e9-a342-44032c851686" + "0b22b9c6-7ab0-11ea-95d7-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:30 GMT" + "Thu, 09 Apr 2020 22:18:30 GMT" ], "Authorization": [ - "SharedKey sdktest2:vNBjYK+BfJgQynp0+N8rkhD5uFpnlQ+4t7WhSxy5Grs=" + "SharedKey sdktest2:c5Bynmzl1A9XTpzDMsY3fzCMbH58H3Xndt8CRpQwD98=" ] } }, @@ -4616,50 +2769,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "d4171ff5-d546-4cf0-8606-0bea8b88121e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:30 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:30 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "6eb5e6fa-2893-44dd-bf0b-ee8de06b1873" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4671,16 +2824,16 @@ "keep-alive" ], "client-request-id": [ - "c0193368-c371-11e9-be82-44032c851686" + "0cf49098-7ab0-11ea-beb8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:33 GMT" + "Thu, 09 Apr 2020 22:18:33 GMT" ], "Authorization": [ - "SharedKey sdktest2:gEsfvJbcFeWb89NAhIFJ1X4I9eW1SBENctg+t70Ye0k=" + "SharedKey sdktest2:M7Dp579LufW/rUvGV1xx9zLieHEcsBBKjg9DeIn+WlA=" ] } }, @@ -4690,50 +2843,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "18686bf6-7dff-4aa6-a2d8-b5dcf8008c80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:32 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:33 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "e45fab0c-8bff-418d-a697-42157072a3fc" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4745,16 +2898,16 @@ "keep-alive" ], "client-request-id": [ - "c1ed4f62-c371-11e9-8e3d-44032c851686" + "0ec5ed00-7ab0-11ea-a18a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:36 GMT" + "Thu, 09 Apr 2020 22:18:36 GMT" ], "Authorization": [ - "SharedKey sdktest2:0cJQ1tfCuB2w5oNHZv5t7KJbhsr0/ZwGpNAnEWhTcRk=" + "SharedKey sdktest2:OQ9nup6WkTDR5zilZv5WrNWkMrL5qpnXoqafd33PrVU=" ] } }, @@ -4764,50 +2917,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "67702e5c-12a3-4612-91e1-45d3620391db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:36 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:36 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "b4c0dfbd-d542-4d79-89d9-803f64a513bc" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4819,16 +2972,16 @@ "keep-alive" ], "client-request-id": [ - "c3bfe57a-c371-11e9-b983-44032c851686" + "109e6012-7ab0-11ea-817d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:39 GMT" + "Thu, 09 Apr 2020 22:18:39 GMT" ], "Authorization": [ - "SharedKey sdktest2:e/pNhD4XDiulkSl6qTWw6rgh1mOTWzpZcFPAPR5XQCA=" + "SharedKey sdktest2:qc2e946V8/8CavolrJxCiZO97bbwWYAkDUoZP0JisJ0=" ] } }, @@ -4838,50 +2991,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "b0f6b5f3-c1bb-49b9-a2d1-d66e2ec8f19b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:39 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:40 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "82577bc2-8abe-4d7b-b2bb-3e049cab69b1" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4893,16 +3046,16 @@ "keep-alive" ], "client-request-id": [ - "c5919390-c371-11e9-8d44-44032c851686" + "127294a4-7ab0-11ea-b492-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:42 GMT" + "Thu, 09 Apr 2020 22:18:43 GMT" ], "Authorization": [ - "SharedKey sdktest2:eM2sMOfGcdYtJA7EThdh1/31ZMh1Gt4OW45TnHH66pU=" + "SharedKey sdktest2:E5gLk3KTh273Fw+Px+w/6ruYyIctbS9vH3XrUMlC87M=" ] } }, @@ -4912,50 +3065,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "114a1f50-942f-4ce0-8792-3e820576cb48" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:42 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:42 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "3f67631a-11f5-4171-8a0b-1a4f26048467" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -4967,16 +3120,16 @@ "keep-alive" ], "client-request-id": [ - "c768463e-c371-11e9-9cfb-44032c851686" + "14450992-7ab0-11ea-aa1a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" + "Thu, 09 Apr 2020 22:18:46 GMT" ], "Authorization": [ - "SharedKey sdktest2:oVfK3RBatFluF1vNt2IwNLyqnuIDtPYs4lAyQBdOqw4=" + "SharedKey sdktest2:0f3SBdVFZ1HNKcMjXquHcZu6f8oGAmwhG9KYEcbr7EQ=" ] } }, @@ -4986,50 +3139,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "5c9aea32-1938-473a-9aa4-a1b04b7c33ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:17:32 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:18:46 GMT" ], "ETag": [ - "0x8D725957DFB0158" + "0x8D7DCD3CCAD7735" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "37d8d050-7610-4a30-b790-9c4927f5489f" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-04-09T22:18:44.1969095Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5041,16 +3194,16 @@ "keep-alive" ], "client-request-id": [ - "c76f61c2-c371-11e9-b91f-44032c851686" + "144e7e4c-7ab0-11ea-afe4-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" + "Thu, 09 Apr 2020 22:18:46 GMT" ], "Authorization": [ - "SharedKey sdktest2:LC0+Dq9RuXAI0CY9GuFbKa0YabG6WD7mVs04Pjwc1xI=" + "SharedKey sdktest2:vlXvjoXxMiZZtlSMTZixTLvdMaYOBwlF6sxNwQxwrm8=" ] } }, @@ -5063,41 +3216,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:41:45 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "40da48b2-bf61-46fa-8dd1-6728fa331767" + "baf9b8ae-bebd-4820-acf8-92b605a25dc6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:18:46 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5109,16 +3262,16 @@ "keep-alive" ], "client-request-id": [ - "c9422358-c371-11e9-a019-44032c851686" + "162106f8-7ab0-11ea-b71f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:48 GMT" + "Thu, 09 Apr 2020 22:18:49 GMT" ], "Authorization": [ - "SharedKey sdktest2:CdBCg3Yjq02xBZeBuTMVoAPvZNTzVyREmRfVdY+Iyt8=" + "SharedKey sdktest2:Q3qce++Ib2Ci1KJ7MtNP0Qi8iTf+rUsugiHZ7gLonIg=" ] } }, @@ -5131,41 +3284,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:41:48 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "931d13ee-227b-40e3-be69-99a7cd69b345" + "3e275971-ee9a-4674-92da-dc71d21f1881" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:18:48 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5177,16 +3330,16 @@ "keep-alive" ], "client-request-id": [ - "cb15e3a6-c371-11e9-a2f9-44032c851686" + "17f3a182-7ab0-11ea-b4d1-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:51 GMT" + "Thu, 09 Apr 2020 22:18:52 GMT" ], "Authorization": [ - "SharedKey sdktest2:6AEffiDAb2MKwMfr5qgqB8tDjXt6y0B6Ozsi7ZEuMfc=" + "SharedKey sdktest2:BntMCuWOM8Y/823+k1pJMwmThxhKxY+z64+1X3IhlKQ=" ] } }, @@ -5199,41 +3352,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:41:51 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "b9e3cf22-37a5-41be-b4bb-f9a0595f9808" + "8bb59373-6d0a-4e8b-8b78-7b92fca43f82" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:18:52 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5245,16 +3398,16 @@ "keep-alive" ], "client-request-id": [ - "cce855fe-c371-11e9-a609-44032c851686" + "19c5b71a-7ab0-11ea-ad5a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:54 GMT" + "Thu, 09 Apr 2020 22:18:55 GMT" ], "Authorization": [ - "SharedKey sdktest2:ZTmM0rwEtOjhIDjPT5x2AUeAEnciG/eyRgMzXHIV1Sw=" + "SharedKey sdktest2:p70iH28ilWXoEq2ipMBTc2hiFPW10h2ENwVEAF0MJPU=" ] } }, @@ -5267,41 +3420,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:41:54 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "dae9c1a8-baac-4cef-af2a-2c8e13124f71" + "33f7d7a3-d995-4e38-9783-47f12b7ef66d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:18:55 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5313,16 +3466,16 @@ "keep-alive" ], "client-request-id": [ - "cebbae40-c371-11e9-9eae-44032c851686" + "1b984bee-7ab0-11ea-94f4-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:41:57 GMT" + "Thu, 09 Apr 2020 22:18:58 GMT" ], "Authorization": [ - "SharedKey sdktest2:+6RnyXkoqecDvSIBc5j0JOp/l8ZdyaRnsVY3gsTX4F8=" + "SharedKey sdktest2:TIkBRafaiztCn117FpEpzWVk4uxBIFndsg5/bubgTZ0=" ] } }, @@ -5335,41 +3488,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:41:57 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "16ed8b4b-d7bb-4244-980c-7fa935bdd260" + "991cd253-0fef-4075-9d19-f588d0dcfa08" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:18:58 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5381,16 +3534,16 @@ "keep-alive" ], "client-request-id": [ - "d08eb23a-c371-11e9-bfe7-44032c851686" + "1d6b16d2-7ab0-11ea-acb6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:00 GMT" + "Thu, 09 Apr 2020 22:19:01 GMT" ], "Authorization": [ - "SharedKey sdktest2:hgI5TueDMWPo3wnpTU6DsEHYAmV0+lqfRYySYn6j3jc=" + "SharedKey sdktest2:0IjhIP8cw+dRB4LlHjoYHCjNv9UrRkL+mH9TJTRYf6o=" ] } }, @@ -5403,41 +3556,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:00 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "cc5e8a18-34b0-4f76-8e3c-e88c4e0b2187" + "de6cef59-1c2e-40df-81f1-94e442f7a2d8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:01 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5449,16 +3602,16 @@ "keep-alive" ], "client-request-id": [ - "d260f88a-c371-11e9-a64d-44032c851686" + "1f3fc878-7ab0-11ea-8c85-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:03 GMT" + "Thu, 09 Apr 2020 22:19:04 GMT" ], "Authorization": [ - "SharedKey sdktest2:fy9kcRWAiCXjZBlcSLfwX0DiKq6YBYYnAC8Geh82eKo=" + "SharedKey sdktest2:YNWpPDxT9s74paQgE8sjFEdocTI7jacagZBM+IiRjc4=" ] } }, @@ -5471,41 +3624,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:04 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "3f58417b-80a2-49ce-9f55-d2afbcbfc791" + "f764ba40-484c-4b23-8536-6fb9ad9e293a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:03 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5517,16 +3670,16 @@ "keep-alive" ], "client-request-id": [ - "d43535be-c371-11e9-ab4a-44032c851686" + "21123494-7ab0-11ea-aac7-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:07 GMT" + "Thu, 09 Apr 2020 22:19:07 GMT" ], "Authorization": [ - "SharedKey sdktest2:wzATs8D3P/s3GF8d8ETf6vm3R6Pobt0JJ8xqATNHAQs=" + "SharedKey sdktest2:k7jC+sIfcroDaXCdxc43KlaDTHkvTCmd9rIFpkw8oGQ=" ] } }, @@ -5539,41 +3692,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:06 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "8f008fbb-1105-4863-a50d-2130b3a639be" + "d886a0db-659a-4b8a-94e9-3a05526db5e8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:07 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5585,16 +3738,16 @@ "keep-alive" ], "client-request-id": [ - "d607ebe4-c371-11e9-b8d7-44032c851686" + "22e9fe9a-7ab0-11ea-80d2-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:10 GMT" + "Thu, 09 Apr 2020 22:19:10 GMT" ], "Authorization": [ - "SharedKey sdktest2:zmqG5SVF/72FVIdjAN5hPPvzwqsnziv0KOgMtGo3wrA=" + "SharedKey sdktest2:j/hH90SogzdzUVo8TLb2Xk9r8ZdQhpSIVvIrBv9qjUk=" ] } }, @@ -5607,41 +3760,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:10 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "c171ef60-7d9a-45b9-8605-15bfe87b52e1" + "1c9d8e82-d136-4486-8ce5-6c2858dab63b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:09 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5653,16 +3806,16 @@ "keep-alive" ], "client-request-id": [ - "d7dbaf38-c371-11e9-8fac-44032c851686" + "24befbc2-7ab0-11ea-8b9a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:13 GMT" + "Thu, 09 Apr 2020 22:19:13 GMT" ], "Authorization": [ - "SharedKey sdktest2:b631qD+KlnzNeRly0Qqw3RB7kSw+zr3vje/R5DqaPKY=" + "SharedKey sdktest2:WdSLrPLUzc2/1t/RHPZTvAjZBSHiR56rAHY++d99w6U=" ] } }, @@ -5675,41 +3828,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:13 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "177a9bc0-cf1b-48e2-b3e2-7885ccc5e8d7" + "614e4fdf-e2cc-489f-aca0-2faf4b0aa974" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:13 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5721,16 +3874,16 @@ "keep-alive" ], "client-request-id": [ - "d9b033f4-c371-11e9-bbfa-44032c851686" + "2692ad1e-7ab0-11ea-906c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:16 GMT" + "Thu, 09 Apr 2020 22:19:16 GMT" ], "Authorization": [ - "SharedKey sdktest2:QHfDCJdqEkwftyj3x+yVr7ZmzfcDCS72pPTROYrYclo=" + "SharedKey sdktest2:MxzdzqYLFfWL0euuv6x+xbKjAp1EI+W0eFMva2A7bHo=" ] } }, @@ -5743,41 +3896,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "344ef1d0-fb3f-4f2f-89ae-6e4b93f38f63" + "48eec205-2c21-4443-a157-a324fc944129" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:15 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5789,16 +3942,16 @@ "keep-alive" ], "client-request-id": [ - "db8400be-c371-11e9-940f-44032c851686" + "2866d712-7ab0-11ea-9fbb-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:19 GMT" + "Thu, 09 Apr 2020 22:19:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:czuUt7wZd9K4zZsGgesxjhPzm84pIN2920tMcSYhTE4=" + "SharedKey sdktest2:zYxSXEIUH5cMo92NRm+gt9rmmxeh7vkBJ3Y4sL8yGsw=" ] } }, @@ -5811,41 +3964,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:18 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "e7729d35-44dd-40ce-b896-34e474cd0062" + "fc4935b6-cbf6-4613-ad15-728dd4a68128" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:18 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5857,16 +4010,16 @@ "keep-alive" ], "client-request-id": [ - "dd57d13e-c371-11e9-944a-44032c851686" + "2a38f41e-7ab0-11ea-bda6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:22 GMT" + "Thu, 09 Apr 2020 22:19:22 GMT" ], "Authorization": [ - "SharedKey sdktest2:tJGY6VJxAXbxLNrfxVcPLj5lQK56aUep72p1dAQvxaQ=" + "SharedKey sdktest2:/SRw4/fqNgem3BV1s6Bv+kpBPhzIbe6Yc9wWJRPq3D4=" ] } }, @@ -5879,41 +4032,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:22 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "3a7db32f-38ed-4e29-a7c8-faa2cf38f1d3" + "72c8669b-f6d1-49e3-989e-40391c21dad7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:22 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5925,16 +4078,16 @@ "keep-alive" ], "client-request-id": [ - "df2a3dac-c371-11e9-8874-44032c851686" + "2c0b1c98-7ab0-11ea-98d0-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:25 GMT" + "Thu, 09 Apr 2020 22:19:26 GMT" ], "Authorization": [ - "SharedKey sdktest2:n6DYbf3giEHgKp15R64ktuO3zqOPMGr6Apk/dMYDVs8=" + "SharedKey sdktest2:BuLlAbr8UKYNAtgrl60ESKZBB/l6Gp2QYkpMuJszK9I=" ] } }, @@ -5947,41 +4100,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:24 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "102f2791-7f22-4435-97b3-3c36cf69b952" + "31e768f3-dcba-4eb9-bad2-fcae602cb9d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:25 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -5993,16 +4146,16 @@ "keep-alive" ], "client-request-id": [ - "e0fd0b70-c371-11e9-888d-44032c851686" + "2de0ad4a-7ab0-11ea-89da-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:28 GMT" + "Thu, 09 Apr 2020 22:19:29 GMT" ], "Authorization": [ - "SharedKey sdktest2:5muWSggKs0Fic7NUjHA8AHXwkEvSJkzpOtU+ZtZTNkA=" + "SharedKey sdktest2:mi/LRrxHCIgHA1oPNt8Vy97EUAPjgJ7lE+Gk2sThsZw=" ] } }, @@ -6015,41 +4168,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:27 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "527db8df-4cc9-4e79-b862-64a9e7b0715a" + "6ff04db1-3e8a-456f-8b11-5a008eae8c45" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:28 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6061,16 +4214,16 @@ "keep-alive" ], "client-request-id": [ - "e2d11080-c371-11e9-ab3d-44032c851686" + "2fb3fbd4-7ab0-11ea-aa84-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:31 GMT" + "Thu, 09 Apr 2020 22:19:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:TRWXJy3jd0hefXfPMlF7GzvbyDLk5N5mrm4KpSMOjpw=" + "SharedKey sdktest2:lnBglaXqeg9f1W0sugaOuHyKj9mDZZ+9tgeQX9khPIQ=" ] } }, @@ -6083,41 +4236,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:30 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "52dfe9d3-2042-4def-8d4f-a5efe27a525b" + "d2eac258-ba90-4a74-8d70-b3f46afc9e30" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:31 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6129,16 +4282,16 @@ "keep-alive" ], "client-request-id": [ - "e4a48f0a-c371-11e9-aee1-44032c851686" + "3189077a-7ab0-11ea-ab95-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:34 GMT" + "Thu, 09 Apr 2020 22:19:35 GMT" ], "Authorization": [ - "SharedKey sdktest2:2TcBiFnrIQWV3BCk6wzZlzL14ZM5BYOt9/hl+IfyihA=" + "SharedKey sdktest2:eUjwpXSpZd1VRmhCgDfhr4WKv6t0PF2JCplBt3WGwdc=" ] } }, @@ -6151,41 +4304,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:34 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "1379cd55-e2d2-4b95-b1f7-a8d2937ba403" + "9e75ec47-79c3-4c3d-8fe5-060d049b11e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:35 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6197,16 +4350,16 @@ "keep-alive" ], "client-request-id": [ - "e677ae08-c371-11e9-9b32-44032c851686" + "335ea662-7ab0-11ea-a59f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:37 GMT" + "Thu, 09 Apr 2020 22:19:38 GMT" ], "Authorization": [ - "SharedKey sdktest2:cFlPgsCv6Z1zk9uR3EGx54hWYAfUIAVeyZlDv9U4vLY=" + "SharedKey sdktest2:wzO3MscTlmlD5KUl60ZNhc7UwF3nbzBLsuYY9Fkn+cw=" ] } }, @@ -6219,41 +4372,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:37 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "e2db0c84-967b-439c-a4a9-bd7112c6b6fb" + "2b5ef82c-77bf-481d-948b-5b3f2a962a3d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:37 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6265,16 +4418,16 @@ "keep-alive" ], "client-request-id": [ - "e84a1cae-c371-11e9-8048-44032c851686" + "35340ebe-7ab0-11ea-bbfa-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:40 GMT" + "Thu, 09 Apr 2020 22:19:41 GMT" ], "Authorization": [ - "SharedKey sdktest2:eUMDdOBJ701z5jDsRl3OKTr9Lx5ABFCWExnMTAt7up8=" + "SharedKey sdktest2:/6ofS8GE1LMIec5cDA0nq+MzsC8WM5EtH1MMTiOixwQ=" ] } }, @@ -6287,41 +4440,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:40 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "ccc04524-db84-406d-972e-9e99228aaa59" + "925f8064-e7d9-4e31-9a40-3a1bdad3b015" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:41 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6333,16 +4486,16 @@ "keep-alive" ], "client-request-id": [ - "ea1c46ee-c371-11e9-8268-44032c851686" + "3707caac-7ab0-11ea-8079-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:43 GMT" + "Thu, 09 Apr 2020 22:19:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:we7/a3isIFKApsLnCbIllEWmjZ2gRksnq9zfDtwkJVY=" + "SharedKey sdktest2:ae4bChlC+0OPFVCi36Cze6yQ5It4Qm8HFuw7khXK7B8=" ] } }, @@ -6355,41 +4508,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:43 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "0738a939-3ca9-4e42-8d81-f50dca417b49" + "e54d2af3-59a1-4ba6-8301-82e723ad5fbe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:44 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6401,16 +4554,16 @@ "keep-alive" ], "client-request-id": [ - "ebef1988-c371-11e9-a55b-44032c851686" + "38da0e94-7ab0-11ea-8e79-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:46 GMT" + "Thu, 09 Apr 2020 22:19:47 GMT" ], "Authorization": [ - "SharedKey sdktest2:HkIIPzsNmyEXS/w2ne6HQjn6Xb6m/nSuAn92GAVw2cY=" + "SharedKey sdktest2:PsidowRJfHWpoHh3rCfQWq0Gckf6NiMOYv4/vm5TmAQ=" ] } }, @@ -6423,41 +4576,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:46 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "c8c56492-3800-43a1-b2b7-3e502dad8a8c" + "0d598855-e99d-4e86-b573-27b927edf670" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:47 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6469,16 +4622,16 @@ "keep-alive" ], "client-request-id": [ - "edc15dc6-c371-11e9-b809-44032c851686" + "3aac2ee4-7ab0-11ea-bfad-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:49 GMT" + "Thu, 09 Apr 2020 22:19:50 GMT" ], "Authorization": [ - "SharedKey sdktest2:Hfdn/yPCwk/uhZOKAlM53CzH2r2hDidUBp66SucCXhE=" + "SharedKey sdktest2:PzwNF9BSmvFdKQxbsnttocra3R1rCBufE9oM2UkUQgc=" ] } }, @@ -6491,41 +4644,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:49 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "c341a0d6-c654-4eb1-9f53-04036bfe66b8" + "d1de00f7-313b-414f-8447-df82f6880c53" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:50 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6537,16 +4690,16 @@ "keep-alive" ], "client-request-id": [ - "ef945d98-c371-11e9-b2b6-44032c851686" + "3c7e9608-7ab0-11ea-b2b6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:52 GMT" + "Thu, 09 Apr 2020 22:19:53 GMT" ], "Authorization": [ - "SharedKey sdktest2:1JM/HfLaOGq4cvkqgQRkBm7NIX0ksrZHDz3PivPW0lo=" + "SharedKey sdktest2:9845YmyYqLaGiZZj47hZF1Ix+2+oNY0spRROgLAuDvc=" ] } }, @@ -6559,41 +4712,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "59fcf763-f82b-4d83-aaee-ac5ad6e3cf4c" + "801e3408-2dc7-4b82-93b3-d9237a8c2433" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:53 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6605,16 +4758,16 @@ "keep-alive" ], "client-request-id": [ - "f1672450-c371-11e9-b063-44032c851686" + "3e5a4e74-7ab0-11ea-908e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:56 GMT" + "Thu, 09 Apr 2020 22:19:56 GMT" ], "Authorization": [ - "SharedKey sdktest2:cq125RybWWMRJfNLUcMX46KtwB93My8nxem4rvH0Wgw=" + "SharedKey sdktest2:PZLzMPiNlPQCT5TWzRFbe6FBaSHQVUdIimxcfcZzBJM=" ] } }, @@ -6627,41 +4780,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:56 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "1e06e582-caa1-4ee5-a815-9498ae7fc446" + "ad9986a4-459e-47ba-8d7f-431048a71548" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:56 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6673,16 +4826,16 @@ "keep-alive" ], "client-request-id": [ - "f33a9df6-c371-11e9-b0b3-44032c851686" + "402d4d14-7ab0-11ea-8d2c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:42:59 GMT" + "Thu, 09 Apr 2020 22:19:59 GMT" ], "Authorization": [ - "SharedKey sdktest2:OJ1VOG8/H+J9MXg4DHluInpY6WeRygZa9tBHFyQolA8=" + "SharedKey sdktest2:S3XOsD410kxUY8+2wldUQvhKnHErGvypaBocXOTv+F8=" ] } }, @@ -6695,41 +4848,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:42:59 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "f0bae67d-de0c-4ec6-8381-3bd693c5aeae" + "0dbc12de-d2d8-46bf-bace-9700580d8936" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:19:58 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6741,16 +4894,16 @@ "keep-alive" ], "client-request-id": [ - "f5117d22-c371-11e9-bf41-44032c851686" + "42015f68-7ab0-11ea-acaa-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:02 GMT" + "Thu, 09 Apr 2020 22:20:02 GMT" ], "Authorization": [ - "SharedKey sdktest2:KfV0Ryl3d77YVYXjyS6tqiQkMHXln0UZWsYJ79z6NJE=" + "SharedKey sdktest2:Fq33iMNUMEp36hLy4vF1NGkzj+lnsdKfIq8j+48ddgk=" ] } }, @@ -6763,41 +4916,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:01 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "165a8916-dc36-4988-86d9-c33274820fb8" + "0c2cffe8-8d90-44f0-a0f3-60dd40b9da6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:02 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6809,16 +4962,16 @@ "keep-alive" ], "client-request-id": [ - "f6e49c36-c371-11e9-9e67-44032c851686" + "43d625be-7ab0-11ea-8939-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:05 GMT" + "Thu, 09 Apr 2020 22:20:05 GMT" ], "Authorization": [ - "SharedKey sdktest2:w4+G0iajCf8AM2Y6eDL0KQ3FTpjQbAuytH+xfr2WOmU=" + "SharedKey sdktest2:jm8lsQshnYmBALg+BMUDUeyEmAZwd2tApzmKMV9Cbcw=" ] } }, @@ -6831,41 +4984,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:05 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "eff0dc42-fc78-41ea-8414-fd5a01d7baed" + "f1180da4-8b90-4e3a-afc3-31106625e697" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:05 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6877,16 +5030,16 @@ "keep-alive" ], "client-request-id": [ - "f8b7cc00-c371-11e9-970b-44032c851686" + "45ab905c-7ab0-11ea-8ddf-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:08 GMT" + "Thu, 09 Apr 2020 22:20:08 GMT" ], "Authorization": [ - "SharedKey sdktest2:deswNwPf5Iqwtnkmu4DPpjsVD3MYy9eEysIDYNGUSMY=" + "SharedKey sdktest2:q5KX7J8KkkR1JAbGcYPfJjm4ux43o1tAvhadz+t2XvM=" ] } }, @@ -6899,41 +5052,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:07 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "ee0a7c77-b789-480b-b01e-01ccb469c48f" + "eaa2207b-65b2-44cf-99a2-a8ceb13adc8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:08 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -6945,16 +5098,16 @@ "keep-alive" ], "client-request-id": [ - "fa8a304a-c371-11e9-8fdb-44032c851686" + "477e7b82-7ab0-11ea-bdb6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:11 GMT" + "Thu, 09 Apr 2020 22:20:12 GMT" ], "Authorization": [ - "SharedKey sdktest2:A5gcpOL45VaxZo0kTYTwzPyPsnUfQiSEd/X1/8lIPtE=" + "SharedKey sdktest2:q6mV37MeFzBiOcajOGcnrXoUk5QL0cu6BQvh01b8qHY=" ] } }, @@ -6967,41 +5120,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:10 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "2b44011f-5547-4eb8-a88c-17bb67c4d72a" + "7ccfc769-3679-43d5-aa79-94e10f83eae6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:11 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7013,16 +5166,16 @@ "keep-alive" ], "client-request-id": [ - "fc5d991c-c371-11e9-940e-44032c851686" + "4950c05e-7ab0-11ea-b834-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:14 GMT" + "Thu, 09 Apr 2020 22:20:15 GMT" ], "Authorization": [ - "SharedKey sdktest2:LDlEHWCoIUL7cV16//NzDzUadkoPhV9suleSPV5Qo2E=" + "SharedKey sdktest2:I/FH46ZKNN6EgYPeRwdaIFrSEjUoUh3hrCF5VO+AwSI=" ] } }, @@ -7035,41 +5188,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:13 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "0a083b2f-c4ea-4857-b63e-3f0fc1d2b878" + "882cf13d-673d-410e-b8d2-fd6ec37976b1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:15 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7081,16 +5234,16 @@ "keep-alive" ], "client-request-id": [ - "fe3075b4-c371-11e9-8c68-44032c851686" + "4b25fbc6-7ab0-11ea-a353-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:17 GMT" + "Thu, 09 Apr 2020 22:20:18 GMT" ], "Authorization": [ - "SharedKey sdktest2:MiV6TED3WJsA1bSI4ILvaZ6b5CURXbFIUYrlTeYzz2I=" + "SharedKey sdktest2:JiTuj0DlIz8n96BaTWcyYXJaaFV4mfY0a+nlXqkkcjM=" ] } }, @@ -7103,41 +5256,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "0ede8f38-087c-4f09-bfd0-d22a9226c3d2" + "e97ece07-3fa2-4853-9c97-76edabefcb8c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:17 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7149,16 +5302,16 @@ "keep-alive" ], "client-request-id": [ - "0002f8ec-c372-11e9-9bc6-44032c851686" + "4cfa6e34-7ab0-11ea-8df6-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:20 GMT" + "Thu, 09 Apr 2020 22:20:21 GMT" ], "Authorization": [ - "SharedKey sdktest2:A0IRJdHRCA9PlG5r+hjl1BWEjxrudg1SPLlERpTf3po=" + "SharedKey sdktest2:q99OgAK2MitxGM4HOk7WcDpN366TvFioHpMTZ3tbR8M=" ] } }, @@ -7171,41 +5324,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:20 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "100b2c6b-7136-4b53-aade-ee5f621a6a90" + "7fe1a690-27d1-4cc8-a8d8-b72074a34300" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:21 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7217,16 +5370,16 @@ "keep-alive" ], "client-request-id": [ - "01d654fa-c372-11e9-b7f1-44032c851686" + "4ecfb564-7ab0-11ea-af66-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:23 GMT" + "Thu, 09 Apr 2020 22:20:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:6ZcO/H5QTo0CKUOphAGD1KA05AE2B6Px8QBbT/uTp3A=" + "SharedKey sdktest2:YkGz/xjyc9dP7aU3jnx1NxJ6Drz5DoOK9vMpro/7Wmo=" ] } }, @@ -7239,41 +5392,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:22 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "ed4ae2d1-93d2-451d-af62-4de9837a532e" + "3cbafacf-4416-4138-b85f-56c3a39d577a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:24 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7285,16 +5438,16 @@ "keep-alive" ], "client-request-id": [ - "03a92858-c372-11e9-ad53-44032c851686" + "50a4cb70-7ab0-11ea-9404-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:26 GMT" + "Thu, 09 Apr 2020 22:20:27 GMT" ], "Authorization": [ - "SharedKey sdktest2:anHrO7CpfrRhBS59HfD89cGFFRDgMegNTmhTmVkfI68=" + "SharedKey sdktest2:EenDcdDP9UsrbehjymBA10k2zZgl6ugZj5kpua2pa9o=" ] } }, @@ -7307,41 +5460,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:25 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "647f2d86-17cc-4e84-8052-c23938111b67" + "63983ee2-876a-4617-a5de-5859ff6fd54f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:27 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7353,16 +5506,16 @@ "keep-alive" ], "client-request-id": [ - "057bde12-c372-11e9-a7bf-44032c851686" + "5279eed4-7ab0-11ea-a7ef-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:29 GMT" + "Thu, 09 Apr 2020 22:20:30 GMT" ], "Authorization": [ - "SharedKey sdktest2:43Tx8vGzumrFvGvjMm+uy9KAEGVd3uij1n7FhoWRsYs=" + "SharedKey sdktest2:pcITlyNUjD4CWTy0jcT9yukpDoV9GXxGp8SzhOZ19yo=" ] } }, @@ -7375,41 +5528,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:29 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "95c63292-9a3e-4ceb-804f-2999166b7f90" + "2ec82eef-4f01-4114-8642-d8aca4fe8bdf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:30 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7421,16 +5574,16 @@ "keep-alive" ], "client-request-id": [ - "074e515e-c372-11e9-bbf4-44032c851686" + "544c7542-7ab0-11ea-ae2f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:32 GMT" + "Thu, 09 Apr 2020 22:20:33 GMT" ], "Authorization": [ - "SharedKey sdktest2:2swh41u8OCgVnZDv0Gj6O8pNEpl0rr7BZVzdxef4GaU=" + "SharedKey sdktest2:1YclRP4SiMIfS5QY5PyCn/+Flgt2HuV4f/C81tVJgnQ=" ] } }, @@ -7443,41 +5596,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:32 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "27e2d0b4-acf1-4058-bd34-827961039d79" + "8c07ab99-b07f-468d-a4b1-44712967fd13" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:33 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7489,16 +5642,16 @@ "keep-alive" ], "client-request-id": [ - "092118f6-c372-11e9-bc3b-44032c851686" + "561f5c6e-7ab0-11ea-b0c3-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:35 GMT" + "Thu, 09 Apr 2020 22:20:36 GMT" ], "Authorization": [ - "SharedKey sdktest2:3/5JG2BYPUfPhILvOv7uRm+jNFGesppGVi5pa2REH8g=" + "SharedKey sdktest2:mCe6oTVawTSoNTCv8ARup0vflZsLRm3HFkv+3YE/p58=" ] } }, @@ -7511,41 +5664,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:35 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "b41df8cc-2aa7-4239-8f19-432b08418d3b" + "c53a30fa-ec8a-4e13-aaa3-5e33b9f7cbe0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:36 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7557,16 +5710,16 @@ "keep-alive" ], "client-request-id": [ - "0af451ee-c372-11e9-af1e-44032c851686" + "57f1e2ee-7ab0-11ea-9485-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:38 GMT" + "Thu, 09 Apr 2020 22:20:39 GMT" ], "Authorization": [ - "SharedKey sdktest2:aWO1kxKH8KpJx05kbnptjFm0dzRggkVX387YOOICJsc=" + "SharedKey sdktest2:h2sSotiwyo9pQo3d7LK+T/PndlNV9LWXxjz/BLtJOGM=" ] } }, @@ -7579,41 +5732,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:38 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "956ea9cc-439b-4941-bb13-36b760afad06" + "47db0a4e-e4a5-4558-8c12-57f0f087d5b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:39 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7625,16 +5778,16 @@ "keep-alive" ], "client-request-id": [ - "0cc69070-c372-11e9-9710-44032c851686" + "59ca9f9e-7ab0-11ea-a732-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:41 GMT" + "Thu, 09 Apr 2020 22:20:42 GMT" ], "Authorization": [ - "SharedKey sdktest2:Lkr1pQLJEVtiPEmdcsX0q8gK0qS9oUw6Vt2O7GjPWeo=" + "SharedKey sdktest2:PTaKwLmK9mZApKcPB9JrpH9eKhs+IVOc5nZSRVvoGuI=" ] } }, @@ -7647,41 +5800,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:41 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "2bf64980-c5ad-4985-95b6-e44c5ffac385" + "732441cb-5ece-43c4-acc5-5203184eca38" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:41 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7693,16 +5846,16 @@ "keep-alive" ], "client-request-id": [ - "0e9916c0-c372-11e9-a288-44032c851686" + "5b9dc428-7ab0-11ea-a84d-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:45 GMT" + "Thu, 09 Apr 2020 22:20:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:5t9mY1x+JCtteK2lWfBQEx+6uDLVwuQxp0a1SQsKjY8=" + "SharedKey sdktest2:LavKdQxmu1ZR+MhPw2BC5JkrFMtfphG37KHyQyQPyZM=" ] } }, @@ -7715,41 +5868,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:44 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "185daa7e-e4ff-439e-b1a5-0f3719673f46" + "38a91fbb-947d-4d95-8074-bd23b9232433" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:45 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7761,16 +5914,16 @@ "keep-alive" ], "client-request-id": [ - "106db0cc-c372-11e9-a6d7-44032c851686" + "5d6faed4-7ab0-11ea-ad1e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:48 GMT" + "Thu, 09 Apr 2020 22:20:48 GMT" ], "Authorization": [ - "SharedKey sdktest2:kZ3/kI3PK+0B8N3EhkbbMI/0lWQz0LUlGIp8JKL69hA=" + "SharedKey sdktest2:lFifQXewNTbCdt5exKRL7z7Vdi60XjPTzagDyvF6ojI=" ] } }, @@ -7783,41 +5936,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:48 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "59355773-648e-4506-bc30-5cef790f6289" + "23699278-11bc-48cb-884c-0b96d8b16a7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:48 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7829,16 +5982,16 @@ "keep-alive" ], "client-request-id": [ - "1240f50c-c372-11e9-9d81-44032c851686" + "5f41f1ba-7ab0-11ea-98ef-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:51 GMT" + "Thu, 09 Apr 2020 22:20:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:9XudOJxRe/5xKato7GWEhlN25a8IXxJFucvBDgfJliA=" + "SharedKey sdktest2:dBKTqeikAJxG9K+YoxPeC8UyfRQTBxdIpH+d79lFPto=" ] } }, @@ -7851,41 +6004,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:50 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "0cabbac9-aa98-4ffc-9a39-4c81d3b4fdf5" + "34a52a15-0899-4fb7-84d7-c79bd0f1ec2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:51 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7897,16 +6050,16 @@ "keep-alive" ], "client-request-id": [ - "141331fa-c372-11e9-9fbd-44032c851686" + "611c69e4-7ab0-11ea-b5cf-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:54 GMT" + "Thu, 09 Apr 2020 22:20:55 GMT" ], "Authorization": [ - "SharedKey sdktest2:TghPHMFKOq2juoGk+h4Ppl3LwZ2b4yYtEocD7J4LDnE=" + "SharedKey sdktest2:EJHU/ew+wSIzjc6GDR9yASCfJfQQGMk23XU2g8+e4h4=" ] } }, @@ -7919,41 +6072,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "0aded115-b4d6-4501-86d6-c883b783a4ff" + "aa24d246-575a-46e1-8ebb-1ae6f465639e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:54 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -7965,16 +6118,16 @@ "keep-alive" ], "client-request-id": [ - "15e69224-c372-11e9-9db9-44032c851686" + "62fd3cd8-7ab0-11ea-9c75-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:43:57 GMT" + "Thu, 09 Apr 2020 22:20:58 GMT" ], "Authorization": [ - "SharedKey sdktest2:zSRaxLFDrdwST//Qk9efueZBuz3rR7IGRQWhsGy7+jc=" + "SharedKey sdktest2:30lbok2LuxTQpAXkF4GhHXhanJ3NENdhywkvP8/RcnI=" ] } }, @@ -7987,41 +6140,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:43:56 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "7e1ea6dc-15a2-4454-890a-b7fd25cb792c" + "352d7348-a4ac-4518-b9d4-804f25124ca2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:20:58 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8033,16 +6186,16 @@ "keep-alive" ], "client-request-id": [ - "17bdfecc-c372-11e9-b290-44032c851686" + "64cf74ca-7ab0-11ea-a2ec-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:00 GMT" + "Thu, 09 Apr 2020 22:21:01 GMT" ], "Authorization": [ - "SharedKey sdktest2:s6ZRmzJD7IMeZRsmuU6OG2Xr+orU0B/dtMFoHi0Un50=" + "SharedKey sdktest2:hiAqet3NRaIUsInlI/ZYsbXglkR42mokgz1u0rrDebs=" ] } }, @@ -8055,41 +6208,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:00 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "de879a37-4872-4470-9588-a82935ccddf1" + "4552b14a-6aea-4577-95cf-271f49c1d6cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:01 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8101,16 +6254,16 @@ "keep-alive" ], "client-request-id": [ - "199081c6-c372-11e9-9f92-44032c851686" + "66a34d9e-7ab0-11ea-ba7f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:03 GMT" + "Thu, 09 Apr 2020 22:21:04 GMT" ], "Authorization": [ - "SharedKey sdktest2:p84B27l9Y254IxDSWLlQ1H6ITDvjvM/uHCkx34FM0Hk=" + "SharedKey sdktest2:0vm/S94Tn334FlxEUnQb4oOy+WP4yTotnqh4NfzuZU4=" ] } }, @@ -8123,41 +6276,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:03 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "c6b1096b-b29b-44ca-8d59-7445640165ad" + "6e991dd3-b14b-48db-b022-940618ae1a01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:03 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8169,16 +6322,16 @@ "keep-alive" ], "client-request-id": [ - "1b63f190-c372-11e9-bc6c-44032c851686" + "68758d50-7ab0-11ea-9a84-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:06 GMT" + "Thu, 09 Apr 2020 22:21:07 GMT" ], "Authorization": [ - "SharedKey sdktest2:76qFMzDtMbnjeLaFnNq/9aHs615SjdFn9CUANtSPfpA=" + "SharedKey sdktest2:j0Qfa2vfE8dc8zYN4cXyjj91maXTjzNvZH1jV3rwNlA=" ] } }, @@ -8191,41 +6344,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:05 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "6c0dc042-2079-487a-8701-462d1d80dc1f" + "94a2258b-200d-4a0e-adf0-020dca40b2a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:07 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8237,16 +6390,16 @@ "keep-alive" ], "client-request-id": [ - "1d35e510-c372-11e9-b346-44032c851686" + "6a482e4c-7ab0-11ea-bdf7-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:09 GMT" + "Thu, 09 Apr 2020 22:21:10 GMT" ], "Authorization": [ - "SharedKey sdktest2:UkG9ARtwQmP3qx9+lGNnfNXuCOVh/UIAYzycPnCYeSo=" + "SharedKey sdktest2:kIeDic0z0Ov4vcHMXLgm67yyjsYiGZ5Xh8sVZE4LXe4=" ] } }, @@ -8259,41 +6412,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:09 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "0bd89020-51f2-410c-871b-a6b90012c000" + "491407c8-5b58-4015-971e-680cdb63b900" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:09 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8305,16 +6458,16 @@ "keep-alive" ], "client-request-id": [ - "1f080276-c372-11e9-a864-44032c851686" + "6c19eb8a-7ab0-11ea-90f8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:12 GMT" + "Thu, 09 Apr 2020 22:21:13 GMT" ], "Authorization": [ - "SharedKey sdktest2:pMXET6AZ26rD7hR6SYbzzUD/VIY8PkiyOSmKojdKfDA=" + "SharedKey sdktest2:dZdOUvMFAWdTOpAreafnWM/woJq7CS58rgINRle3GxQ=" ] } }, @@ -8327,41 +6480,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:11 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "175ec19a-31df-4ff5-8c0e-c9128fe1e2da" + "cdf0ae98-575a-40b7-8454-ac988055ccf0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:13 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8373,16 +6526,16 @@ "keep-alive" ], "client-request-id": [ - "20db7c8c-c372-11e9-a64d-44032c851686" + "6dee2aba-7ab0-11ea-9ef5-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:15 GMT" + "Thu, 09 Apr 2020 22:21:16 GMT" ], "Authorization": [ - "SharedKey sdktest2:BdUHaC1rvH8Grk8Dy/yePosRiM3Oy9tTtHtsya02QM4=" + "SharedKey sdktest2:klFZxb2sIfKlb3BxRFztEXJuCcYx+EvxMMnFvg+SHEs=" ] } }, @@ -8395,41 +6548,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:15 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "e87104e8-42fd-437a-bcc4-b0b1e339368d" + "55681c96-68b2-4ca4-a94b-a38dc4f5a561" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:16 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8441,16 +6594,16 @@ "keep-alive" ], "client-request-id": [ - "22af0a52-c372-11e9-9b9c-44032c851686" + "6fc08ee4-7ab0-11ea-9b58-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:18 GMT" + "Thu, 09 Apr 2020 22:21:19 GMT" ], "Authorization": [ - "SharedKey sdktest2:e3ycw+PeF3KgtdFitwGde3LFK+7eiAO8tUlKTJNvxaE=" + "SharedKey sdktest2:GUiptXd+rvz07210Ucv6JNGnG2JmVsSJj4f4TUNeQyc=" ] } }, @@ -8463,41 +6616,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:18 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "0d3fd65b-1c07-47f6-95c4-efb48b2bcb1b" + "4cfae516-874f-4af9-aa07-7e0c1a9732ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:18 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:18:44.1243422Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -8509,16 +6662,16 @@ "keep-alive" ], "client-request-id": [ - "2481aa1c-c372-11e9-9d21-44032c851686" + "7192e1b8-7ab0-11ea-8853-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:21 GMT" + "Thu, 09 Apr 2020 22:21:22 GMT" ], "Authorization": [ - "SharedKey sdktest2:IcQDc1P9G1Q5kXdiilOyEfuvTTO4i8aH58WljRw98qU=" + "SharedKey sdktest2:VCSsrXMI0izpdFeg5QTlZgb4kJyuTicnpTO5onjDM4Y=" ] } }, @@ -8531,653 +6684,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:21 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "9f18a63c-33de-40b9-9708-fa4fb04ac92c" + "d229489f-7f26-4a89-959c-39680986c189" ], "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_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}" - } - } - }, - { - "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, - "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": [ - "26542408-c372-11e9-8794-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:24 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:ovPEZPTLdNSV4zgo82RzUPdBlr31+RSCApNDQerzB7s=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Transfer-Encoding": [ + "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:44:24 GMT" + "Thu, 09 Apr 2020 22:21:22 GMT" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "98577927-d844-46c2-9b8b-6855ee1cafe3" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "28267dd4-c372-11e9-9f41-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:27 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:ED8tzvugMXqaK9XURD1uFMXtV4U9sgHLBtUh32z1Dvc=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "29f8974c-c372-11e9-af48-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:30 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:0k5sxVHU+GypTf04ZBW9qSx5098jDY9Xi/Rw6yzjt1k=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "2bcb65d8-c372-11e9-b273-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:33 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:6J7JmPDTeHUCTVu7JJPCulYAuudpJFv2tEXpU1MICXE=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:33 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "22f54385-26f6-40b3-aa2d-7c7d04d13ab3" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "2d9edc6e-c372-11e9-894b-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:37 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:hsFSDU/94pWmsN6Keg2CKpQirP2laesTYB6xzPX8yTE=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "2f718f36-c372-11e9-818f-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:40 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:D0olf8xEQUQGNjZy1ND64MVgHogC/a44N9ahKfYWUos=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:40 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "49fcd5e7-5f25-4195-ac9e-c8e2686bf616" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "314494e6-c372-11e9-97b7-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:43 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:w35GmR8i0d25XonEMb5qzQXKgc7YCp6p7BSIOfw32n4=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "3316fba2-c372-11e9-9735-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:46 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:qv7VwP4MkjXCyv6NXCOf4xbRRQYSBRrNlx9rJ5FrWKA=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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_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}" - } - } - }, - { - "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, - "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": [ - "34ea90d4-c372-11e9-a91e-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:49 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:1HgGOzTvkHP8UP1TWcx8R0jL6xK3zIPmhV3TgI9Q0Sk=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:49 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "ed7fb884-05be-43cb-bb46-1ac1b6756194" - ], - "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_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#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:21:20.127651Z\",\"lastBootTime\":\"2020-04-09T22:21:19.215709Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-04-09T22:21:19.215709Z\",\"version\":\"1.7.14\"\r\n }\r\n }\r\n ]\r\n}" } } }, { "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\", \"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9189,13 +6730,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "3518a5a6-c372-11e9-b6fb-44032c851686" + "71c9848c-7ab0-11ea-a1db-44032c851686" ], "accept-language": [ "en-US" @@ -9214,38 +6755,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "DataServiceVersion": [ + "3.0" ], - "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" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "request-id": [ + "25f15d38-911d-4f32-8e40-e886d5f04b10" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "6f413b44-c0e2-41ba-8426-851dcaf3d109" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:23 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:21:23 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "ETag": [ + "0x8D7DCD4566C11D6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -9256,11 +6797,11 @@ { "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\"}}]}", + "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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9272,19 +6813,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "35c02a80-c372-11e9-8b22-44032c851686" + "723d30d2-7ab0-11ea-b916-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "480" + "482" ] } }, @@ -9297,41 +6838,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:50 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "f4364c5e-0770-4b56-977b-fbf898085125" + "ad63b440-1669-458b-9f44-903be07ef1f9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:24 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"myTask\",\"eTag\":\"0x8D7DCD456CC27DC\",\"lastModified\":\"2020-04-09T22:21:24.3612124Z\",\"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/jobs/ncj-windows-2012-r2?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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9343,16 +6884,16 @@ "keep-alive" ], "client-request-id": [ - "35f88f76-c372-11e9-8423-44032c851686" + "72a75a70-7ab0-11ea-b6dd-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:44:51 GMT" + "Thu, 09 Apr 2020 22:21:24 GMT" ], "Authorization": [ - "SharedKey sdktest2:c3SjP2Z5TDuoAdLqkK4VgaV/UEbwHoTfp8M+/KtfBuQ=" + "SharedKey sdktest2:49ND+6TrAYN9cIJjTIoBuzeC5eOm6sMEQPTuhCNFbmc=" ] } }, @@ -9362,249 +6903,249 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:44:50 GMT" + "request-id": [ + "e42ff5f4-a916-472b-a7fb-d789f661d28b" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D7259619F1E38A" + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:44:50 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "cdc71dc7-4c99-4967-9c34-961ced37c9bd" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks?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": [ - "3601b72e-c372-11e9-bd4a-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:51 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:09u9b/SvpMgiDeZ82VI2GtFwOVJ1mDtYF3+Tjtr1OWk=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Thu, 09 Apr 2020 22:21:23 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:44:50 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "14bc663a-faaa-4f17-a258-feeaf6ee0d65" - ], - "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#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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks?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": [ - "37d61308-c372-11e9-be6c-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:54 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:U+uIjZHLFPXiaQX+7zZ8qLhKX4I1mgueAHi7HVdX0UA=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "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" - ], - "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#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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2/tasks/myTask?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": [ - "37dfa68c-c372-11e9-be46-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:44:54 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:/lu9QFjAcSU+lFPy0P3jVesFnmo9JrkhN3MnZO2agpo=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:44:54 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 09 Apr 2020 22:21:23 GMT" ], "ETag": [ - "0x8D725961A19321F" + "0x8D7DCD4566C11D6" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:44:50 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD4566C11D6\",\"lastModified\":\"2020-04-09T22:21:23.731503Z\",\"creationTime\":\"2020-04-09T22:21:23.7164725Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:23.731503Z\",\"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-04-09T22:21:23.731503Z\",\"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/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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "72b64e00-7ab0-11ea-9c3c-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:24 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:T0Wvhvr4hKfna0RcL5+kIu7gl3TP0D6jMQBOQS/+nyk=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "c0a2054e-3b9b-4f3b-a29d-a8f0005c36e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "c81c4b07-4d0d-4704-9e34-c7f0300fe57e" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 09 Apr 2020 22:21:23 GMT" ], - "DataServiceVersion": [ - "3.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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": "{\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\":\"0x8D7DCD456CC27DC\",\"creationTime\":\"2020-04-09T22:21:24.3612124Z\",\"lastModified\":\"2020-04-09T22:21:24.3612124Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:24.3612124Z\",\"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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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/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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "748a4af0-7ab0-11ea-a35e-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:27 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:01wT7Pl2MNZYJclcGWQIpPhqMWM9TrAGzSBDxQ4UEJA=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "add37d48-683f-4897-8867-c29bdfe79dd3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:27 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "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\":\"0x8D7DCD456CC27DC\",\"creationTime\":\"2020-04-09T22:21:24.3612124Z\",\"lastModified\":\"2020-04-09T22:21:24.3612124Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:21:25.420063Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:21:24.726954Z\",\"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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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-04-09T22:21:24.815503Z\",\"endTime\":\"2020-04-09T22:21:25.420063Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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/jobs/ncj-windows-2012-r2/tasks/myTask?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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "74936c8a-7ab0-11ea-b606-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:27 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:idVzla9cz/eCjlTvFRhiR58bPZZJKRcQak1Sgk912mE=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "c09df47d-677f-4671-81e7-31550546a645" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:24 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:27 GMT" + ], + "ETag": [ + "0x8D7DCD456CC27DC" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD456CC27DC\",\"creationTime\":\"2020-04-09T22:21:24.3612124Z\",\"lastModified\":\"2020-04-09T22:21:24.3612124Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:21:25.420063Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:21:24.726954Z\",\"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-04-09T22%3A17%3A24Z&se=2020-04-10T22%3A17%3A24Z&sp=rw&sv=2017-07-29&sr=c&sig=DWg%2B6ntU547WZLSEyViL72eEbzKnxv324ydhjcKtNa8%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-04-09T22:21:24.815503Z\",\"endTime\":\"2020-04-09T22:21:25.420063Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"taskRootDirectory\":\"workitems\\\\ncj-windows-2012-r2\\\\job-1\\\\myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d/files/workitems/ncj-windows-2012-r2/job-1/myTask\"\r\n }\r\n}" } } }, @@ -9615,7 +7156,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" @@ -9624,13 +7165,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "37e93302-c372-11e9-9ff3-44032c851686" + "749c1f1c-7ab0-11ea-b8a9-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:07 GMT" + "Thu, 09 Apr 2020 22:21:44 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:vFjgezCgXYwB9gBneM83XvFTiAcR6wfhkLB4D3acIwA=" + "SharedKey sdkteststore2:Q86AI7sN15hxAW2HXAFVgVnHvZZKODocd36CxL3kKjY=" ] } }, @@ -9640,12 +7181,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -9653,22 +7188,28 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:45:07 GMT" + "Thu, 09 Apr 2020 22:21:44 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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": "\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": "DELETE", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2?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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9680,7 +7221,7 @@ "keep-alive" ], "client-request-id": [ - "401cc3c2-c372-11e9-9d78-44032c851686" + "7ef188d8-7ab0-11ea-99a0-44032c851686" ], "accept-language": [ "en-US" @@ -9689,10 +7230,10 @@ "0" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Thu, 09 Apr 2020 22:21:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:4uT8P6RATBgsBNFtHK4NIV0Orr1jLHjxnPcoa6IcoOg=" + "SharedKey sdktest2:d/q/sILqd460Ju9zAdz21XAcR5fsFgIOrLy8LB31UeI=" ] } }, @@ -9702,26 +7243,26 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "3b3de2bd-485d-40a1-ac3b-6dc3fb7ff8ab" + "834e1b79-0d69-43d1-9c86-8285ee7b5ccd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:44 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -9736,7 +7277,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" @@ -9745,54 +7286,275 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "40264dda-c372-11e9-94f7-44032c851686" + "7efad634-7ab0-11ea-ac60-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Thu, 09 Apr 2020 22:21:45 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:3ne9gnvYTa8u9jFGyrPNH5iRKISz4XROeO8l5K7s4IY=" + "SharedKey sdkteststore2:l+0Qdunlzvy8PAth5xALceAsA0dmaS2ZU/6cp/V/12Q=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified container does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-error-code": [ - "ContainerNotFound" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:44 GMT" ], "x-ms-version": [ "2017-07-29" ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:07 GMT" - ], - "Content-Length": [ - "225" + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerNotFoundThe specified container does not exist.\nRequestId:7774310e-c01e-001c-0a7f-57bc17000000\nTime:2019-08-20T17:45:08.1858842Z" + "string": "\ufefffileuploaderr.txtMon, 13 Jan 2020 23:22:37 GMT0x8D7987F7A4898850application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtMon, 13 Jan 2020 23:22:37 GMT0x8D7987F7A4A1F7D525application/octet-stream7OwYWI7FA3GXBAQZ6HY0XA==BlockBlobHottrueunlockedavailabletruestderr.txtMon, 13 Jan 2020 23:22:37 GMT0x8D7987F7A4BCD6F0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtMon, 13 Jan 2020 23:22:37 GMT0x8D7987F7A4D2D434application/octet-streamCY9rzUYh03PK3k6DJie09g==BlockBlobHottrueunlockedavailabletrue" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output/fileuploaderr.txt", + "body": null, + "headers": { + "User-Agent": [ + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" + ], + "Connection": [ + "keep-alive" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-client-request-id": [ + "7f06961e-7ab0-11ea-9c3b-44032c851686" + ], + "x-ms-date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "Authorization": [ + "SharedKey sdkteststore2:abl2ld2fkhxC+SmqgkC8smHpVTvN9/eDUiD7b2Q3oL4=" + ], + "Content-Length": [ + "0" + ] + } + }, + "response": { + "status": { + "code": 202, + "message": "Accepted" + }, + "headers": { + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + ], + "Content-Length": [ + "0" + ], + "x-ms-delete-type-permanent": [ + "true" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:44 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output/fileuploadout.txt", + "body": null, + "headers": { + "User-Agent": [ + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" + ], + "Connection": [ + "keep-alive" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-client-request-id": [ + "7f0de8fe-7ab0-11ea-9c11-44032c851686" + ], + "x-ms-date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "Authorization": [ + "SharedKey sdkteststore2:arMdzu1fRkcUlXgAG2KHPItFurKZpfnasjOEt28m4Qw=" + ], + "Content-Length": [ + "0" + ] + } + }, + "response": { + "status": { + "code": 202, + "message": "Accepted" + }, + "headers": { + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + ], + "Content-Length": [ + "0" + ], + "x-ms-delete-type-permanent": [ + "true" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-output/stderr.txt", + "body": null, + "headers": { + "User-Agent": [ + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" + ], + "Connection": [ + "keep-alive" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-client-request-id": [ + "7f164d64-7ab0-11ea-a23c-44032c851686" + ], + "x-ms-date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "Authorization": [ + "SharedKey sdkteststore2:t3Mth8+H1Z6PnWvX6S7jBYl3pBqPzIcVuIulq4W+08c=" + ], + "Content-Length": [ + "0" + ] + } + }, + "response": { + "status": { + "code": 202, + "message": "Accepted" + }, + "headers": { + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + ], + "Content-Length": [ + "0" + ], + "x-ms-delete-type-permanent": [ + "true" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "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.7.3; Windows 10)" + ], + "Connection": [ + "keep-alive" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-client-request-id": [ + "7f1d5262-7ab0-11ea-8d8d-44032c851686" + ], + "x-ms-date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "Authorization": [ + "SharedKey sdkteststore2:8kctIEZOKEHJMJC9PsyugGHQPaAgOUjN8+0+U9z/v7w=" + ], + "Content-Length": [ + "0" + ] + } + }, + "response": { + "status": { + "code": 202, + "message": "Accepted" + }, + "headers": { + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + ], + "Content-Length": [ + "0" + ], + "x-ms-delete-type-permanent": [ + "true" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ] + }, + "body": { + "string": "" } } }, { "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9804,16 +7566,16 @@ "keep-alive" ], "client-request-id": [ - "402ed95c-c372-11e9-ac69-44032c851686" + "7f24cc54-7ab0-11ea-840a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Thu, 09 Apr 2020 22:21:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:4jCSKGtc1/VzTf9bgeYU6HQCNLJ+lD/ufb+VVegs0jE=" + "SharedKey sdktest2:3oi+FjaKcsPgX/hyGrpM2yE/KaCxfNWQTQoS/49HuTk=" ] } }, @@ -9826,41 +7588,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "3e5c493b-085c-4945-8e5a-bc7ad1573f9a" + "f95dd906-25ef-4599-b550-763e5fd1abe8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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 16.04\",\"capabilities\":[\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1-smalldisk\",\"version\":\"latest\"\r\n },\"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\":\"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-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 ]\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-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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9875,7 +7637,7 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "403987a6-c372-11e9-bcff-44032c851686" + "7f2ea6c0-7ab0-11ea-bc82-44032c851686" ], "accept-language": [ "en-US" @@ -9884,10 +7646,10 @@ "248" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Thu, 09 Apr 2020 22:21:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:9HlWXAwOKnUZW1DN7JEbM91mCbJ+drOivOR/VXS2HYM=" + "SharedKey sdktest2:2ONKaFt5YhXnuBKMYcD6bQezS/hPdZK9o/eTOhKEM2Q=" ] } }, @@ -9900,14 +7662,11 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "59a509f7-71d3-4ce8-a8ef-97e376477f4a" + "178218c3-299a-4777-ab54-c03dd60e1d9d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -9915,26 +7674,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" - ], "Content-Length": [ "334" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolExists\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool already exists.\\nRequestId:178218c3-299a-4777-ab54-c03dd60e1d9d\\nTime:2020-04-09T22:21:45.5174419Z\"\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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -9946,16 +7708,16 @@ "keep-alive" ], "client-request-id": [ - "4047df90-c372-11e9-b81c-44032c851686" + "7f38930c-7ab0-11ea-93ed-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Thu, 09 Apr 2020 22:21:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:WHdhVUt9UpYSQv/yCLrZAlPUG7M9DiNrJQ7t8NJOo10=" + "SharedKey sdktest2:oPx4yWmyqbUdy4f678Xre8O7aVTtdw/KJom+rJuzN1E=" ] } }, @@ -9965,50 +7727,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "request-id": [ + "42663cd6-5ecb-48b2-b90e-9bbe02ed346b" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D725954EB17F5F" + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:39:09 GMT" + "Thu, 09 Apr 2020 21:58:26 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" ], - "request-id": [ - "40bf1b98-4a01-4ef9-b672-a90255deb51a" + "ETag": [ + "0x8D7DCD1218C2989" ], - "Transfer-Encoding": [ - "chunked" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD1218C2989\",\"lastModified\":\"2020-04-09T21:58:26.5323913Z\",\"creationTime\":\"2020-04-09T21:58:26.5323913Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T21:58:26.5323913Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-04-09T21:59:22.7820854Z\",\"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", + "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10020,16 +7782,16 @@ "keep-alive" ], "client-request-id": [ - "405026d8-c372-11e9-a4e9-44032c851686" + "7f3fa648-7ab0-11ea-8522-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" + "Thu, 09 Apr 2020 22:21:45 GMT" ], "Authorization": [ - "SharedKey sdktest2:T5/eohhbVrpv9MEKJm+mpWFl1pKPzicTFSkXKiJvcDc=" + "SharedKey sdktest2:oE5q/hC3S4d/niKnOSCj0ds1OtTiwCC1r6t2lM+9260=" ] } }, @@ -10042,30 +7804,30 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "d1cfbff1-dc5a-4959-9b02-95e57876a15a" + "2d47f1e3-1e4b-429c-8d79-da8734c39e8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:45 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:17:30.129372Z\",\"lastBootTime\":\"2020-04-09T21:59:51.519644Z\",\"allocationTime\":\"2020-04-09T21:59:22.243813Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_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-04-09T22:17:29.499284Z\",\"endTime\":\"2020-04-09T22:17:30.101292Z\",\"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.17.108\",\"publicFQDN\":\"dns551c0dfe-74cd-4dfe-b3a5-637f3231d9a0-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-04-09T21:59:51.519644Z\",\"version\":\"1.7.14\"\r\n }\r\n }\r\n ]\r\n}" } } }, @@ -10076,7 +7838,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-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/7.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -10088,10 +7850,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "x-ms-client-request-id": [ - "4085678c-c372-11e9-ae88-44032c851686" + "7f749910-7ab0-11ea-bf35-44032c851686" ], "accept-language": [ "en-US" @@ -10104,40 +7866,40 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:08 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ - "2729" + "2820" + ], + "Vary": [ + "Accept-Encoding" ], "x-ms-original-request-ids": [ - "65653993-abb7-44ba-9070-2e176961dbff", - "0a63772d-594c-4233-8c67-1adead346419" + "34729a78-0862-4faa-9f55-11e431b04cb0", + "9067b03c-273f-40cf-b78e-26e1fbb02d01" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:46 GMT" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], - "Pragma": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, "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/\"}}},{\"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},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"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-01-09T20:16:08.6234908Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" } } }, @@ -10148,7 +7910,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 +7922,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "40de58ac-c372-11e9-b51a-44032c851686" + "7fc85f74-7ab0-11ea-b2c3-44032c851686" ], "accept-language": [ "en-US" @@ -10182,38 +7944,38 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:09 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Accept-Encoding" + ], "Transfer-Encoding": [ "chunked" ], + "Date": [ + "Thu, 09 Apr 2020 22:21:46 GMT" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Pragma": [ - "no-cache" + "Content-Type": [ + "application/json" ], "content-length": [ "288" @@ -10231,7 +7993,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 +8002,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "41177f90-c372-11e9-8c45-44032c851686" + "7ff0c080-7ab0-11ea-8b9e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:09 GMT" + "Thu, 09 Apr 2020 22:21:46 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:4h2q9L3MdHdVaNqR5kNfdbi5dOvGSuWjlgM588LGMBg=" + "SharedKey sdkteststore2:y2N2wPX2MhPunhONU0VxVwBi6HwUwFJWGkwikhRYTyM=" ], "Content-Length": [ "0" @@ -10255,42 +8017,42 @@ }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259625642E21\"" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:09 GMT" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:09 GMT" - ], "Content-Length": [ - "0" + "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:46 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:ca178cf5-401e-00c1-2cbd-0eefb9000000\nTime:2020-04-09T22:21:46.8849016Z" } } }, { "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10302,13 +8064,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "413b2a66-c372-11e9-84f1-44032c851686" + "8009ebe4-7ab0-11ea-ba75-44032c851686" ], "accept-language": [ "en-US" @@ -10327,38 +8089,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:10 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D725962617779D" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:11 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "request-id": [ + "ddbeeb5f-d9ba-498e-9924-25ce9cbfc51c" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "63a51513-af28-42cc-825f-6595cf5850a3" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:47 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:21:47 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "ETag": [ + "0x8D7DCD46497E66E" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -10369,11 +8131,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-04-09T22%3A06%3A46Z&se=2020-04-16T22%3A21%3A46Z&sp=w&sv=2017-07-29&sr=c&sig=edxPMD3DxASPtYkA7cU1prtE/ppf6Nhxe5qRD3andDg%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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10385,19 +8147,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "41e5bc22-c372-11e9-8009-44032c851686" + "80690c92-7ab0-11ea-88a2-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "471" + "469" ] } }, @@ -10410,41 +8172,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "b67fd7ee-0fbf-4f2e-9e21-050537cc7980" + "b78c2b86-6659-4246-8789-d90b38ef945f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:48 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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\":\"0x8D7DCD464E86545\",\"lastModified\":\"2020-04-09T22:21:48.0343877Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10456,16 +8218,16 @@ "keep-alive" ], "client-request-id": [ - "423ac0a6-c372-11e9-a981-44032c851686" + "80ba2e40-7ab0-11ea-9813-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "Thu, 09 Apr 2020 22:21:48 GMT" ], "Authorization": [ - "SharedKey sdktest2:GYi8g5Cycczhzv/MC4FhfWAk7iiQ9knRkD38XxYuul4=" + "SharedKey sdktest2:RDQ/xnWxEFBskIdUjYNqiIXTxdJrMwOuxZqsokKPHhU=" ] } }, @@ -10475,249 +8237,249 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "request-id": [ + "ffe3cb7e-4cf1-468b-95ff-983789ecaffb" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D725962617779D" + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:11 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "e180a6f6-5dfe-4143-a066-0cb2956fd60b" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks?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": [ - "42447acc-c372-11e9-b1e5-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:uzooMKAK+UFzRA+iUErDxX8EdMJBrU/IJrG8RrS/B5g=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Thu, 09 Apr 2020 22:21:47 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:45:11 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "09a8cbe9-cda5-42e0-9608-b440c544f700" - ], - "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#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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks?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": [ - "4418ebd2-c372-11e9-9359-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:2DE1XgHgXeHvj+bXKMOaTi/dEDolM/ddhCA9gx1QY5M=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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#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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask?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": [ - "44226e40-c372-11e9-979c-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:+sAC6seGiXdmK0QUFayRgjscmY7fj5DrzCfjoUD+2fk=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" + "Thu, 09 Apr 2020 22:21:47 GMT" ], "ETag": [ - "0x8D72596266B7123" + "0x8D7DCD46497E66E" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:11 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD46497E66E\",\"lastModified\":\"2020-04-09T22:21:47.5068526Z\",\"creationTime\":\"2020-04-09T22:21:47.4918071Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:47.5068526Z\",\"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-04-09T22:21:47.5068526Z\",\"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=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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "80c2cdb6-7ab0-11ea-a4b6-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:48 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:HcF994rnofyp76L5eDoszVylz5x6VRN8/QiskhNp3V8=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "ef834677-85a9-413e-99cc-a9f0a778f1ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "e9c88c9c-79ea-419b-8e7d-b9f769030406" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 09 Apr 2020 22:21:47 GMT" ], - "DataServiceVersion": [ - "3.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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\",\"value\":[\r\n {\r\n \"id\":\"myTask\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-ubuntu1604-1/tasks/myTask\",\"eTag\":\"0x8D7DCD464E86545\",\"creationTime\":\"2020-04-09T22:21:48.0343877Z\",\"lastModified\":\"2020-04-09T22:21:48.0343877Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:48.0343877Z\",\"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-04-09T22%3A06%3A46Z&se=2020-04-16T22%3A21%3A46Z&sp=w&sv=2017-07-29&sr=c&sig=edxPMD3DxASPtYkA7cU1prtE/ppf6Nhxe5qRD3andDg%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=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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "8295877a-7ab0-11ea-9664-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:IupqBs2cfcXJfXjjRKw3EW8fOuegar7emkOY8FdZe3k=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "8d907c1c-e0aa-4a09-9478-6ac19c0287a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:50 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "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\":\"0x8D7DCD464E86545\",\"creationTime\":\"2020-04-09T22:21:48.0343877Z\",\"lastModified\":\"2020-04-09T22:21:48.0343877Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:21:50.263263Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:21:49.697363Z\",\"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-04-09T22%3A06%3A46Z&se=2020-04-16T22%3A21%3A46Z&sp=w&sv=2017-07-29&sr=c&sig=edxPMD3DxASPtYkA7cU1prtE/ppf6Nhxe5qRD3andDg%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-04-09T22:21:49.739374Z\",\"endTime\":\"2020-04-09T22:21:50.263263Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604-1/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_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=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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "829f25ac-7ab0-11ea-8047-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:k9OCHwbwtT8tsczqs8Xk2HhE/8w423Jdbgxlhx7k86I=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "3b97ee9d-9788-43e8-90d5-dfb0da792b80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:48 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:50 GMT" + ], + "ETag": [ + "0x8D7DCD464E86545" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD464E86545\",\"creationTime\":\"2020-04-09T22:21:48.0343877Z\",\"lastModified\":\"2020-04-09T22:21:48.0343877Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:21:50.263263Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:21:49.697363Z\",\"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-04-09T22%3A06%3A46Z&se=2020-04-16T22%3A21%3A46Z&sp=w&sv=2017-07-29&sr=c&sig=edxPMD3DxASPtYkA7cU1prtE/ppf6Nhxe5qRD3andDg%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-04-09T22:21:49.739374Z\",\"endTime\":\"2020-04-09T22:21:50.263263Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"poolId\":\"ncj-ubuntu1604\",\"nodeId\":\"tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d\",\"taskRootDirectory\":\"workitems/ncj-ubuntu1604-1/job-1/myTask\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-ubuntu1604/nodes/tvmps_c19487cab40bbf2d66f8fde9ed30ebb8ef7465e4ba01c062edd52d6bf4e35fc0_d/files/workitems/ncj-ubuntu1604-1/job-1/myTask\"\r\n }\r\n}" } } }, @@ -10728,7 +8490,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 +8499,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "442e9122-c372-11e9-9417-44032c851686" + "82a8e9a4-7ab0-11ea-b4b7-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:x3VlCtM/x0xgsyc0czlkO0eMd0h1MQBYhaKvQ8O4HKE=" + "SharedKey sdkteststore2:TkHWJ51iwzNNECG2rlnv6Uafj/Kx07/S56ElzSbQZLw=" ] } }, @@ -10753,12 +8515,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -10766,22 +8522,28 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD46634D06D0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD466314D57512application/octet-streamu3c5YUCMIjurBy3zFfuqPw==BlockBlobHottrueunlockedavailabletruestderr.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD4663349850application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD4663630395application/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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -10793,7 +8555,7 @@ "keep-alive" ], "client-request-id": [ - "443ad030-c372-11e9-8287-44032c851686" + "82b4828c-7ab0-11ea-8feb-44032c851686" ], "accept-language": [ "en-US" @@ -10802,10 +8564,10 @@ "0" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:2d6k4MNm6y9zXvGsQ6qSCL3bI+OD+NXUH6soqYP3kNc=" + "SharedKey sdktest2:kjuKXVP/Bl8u6noJOUwc7dqDHeSneCwekCZANP90K2M=" ] } }, @@ -10815,26 +8577,26 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "d733f566-2eee-4150-a93a-c01e6352e8e5" + "22fac7dc-3816-4f40-a5b0-8f910f887bbb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:50 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -10849,7 +8611,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 +8620,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "44436798-c372-11e9-8c1b-44032c851686" + "82c439e6-7ab0-11ea-b1a8-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:2qk1GtO2Qz8TiYWpSTP3EoEPpBNnLtjftVnaBNzCQAM=" + "SharedKey sdkteststore2:CWPJURpp1qzVkBcXg0x6TfawMUMnkxLhFW1moE4aOig=" ] } }, @@ -10874,12 +8636,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -10887,11 +8643,17 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD46634D06D0application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruefileuploadout.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD466314D57512application/octet-streamu3c5YUCMIjurBy3zFfuqPw==BlockBlobHottrueunlockedavailabletruestderr.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD4663349850application/octet-stream1B2M2Y8AsgTpgAmY7PhCfg==BlockBlobHottrueunlockedavailabletruestdout.txtThu, 09 Apr 2020 22:21:50 GMT0x8D7DCD4663630395application/octet-stream2Oj8otwPiW/Xy0ywAxuiSQ==BlockBlobHottrueunlockedavailabletrue" } } }, @@ -10902,7 +8664,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 +8673,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "444fca3e-c372-11e9-9a80-44032c851686" + "82d0bcec-7ab0-11ea-bead-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:aUXLqH7Q/+C4lOihJgOYj+jGdA/aLmcMBLnEp1fyzGY=" + "SharedKey sdkteststore2:O3bR+G9JCnMperT+R0wmsu8eVuaMd6sn+l/CgX7Wko8=" ], "Content-Length": [ "0" @@ -10930,20 +8692,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -10958,7 +8720,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 +8729,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "4457b058-c372-11e9-bc94-44032c851686" + "82d8d346-7ab0-11ea-9a97-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:nrvYabCdvNYiXTcv5dE10UEpJa5FNQVY4HMIxMKmvMw=" + "SharedKey sdkteststore2:IV3sVxN7ZAlh/cXjxg4wptBH0CCHTy6xP2CYA7gzwak=" ], "Content-Length": [ "0" @@ -10986,20 +8748,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -11014,7 +8776,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 +8785,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "445f51a8-c372-11e9-ac85-44032c851686" + "82e0c29e-7ab0-11ea-90d4-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:76B7T3kYtjypQAeUP7jLcLeLVmZwqIpFZDoQ9Tn7zKY=" + "SharedKey sdkteststore2:+fyIvlucFdl5uXXCQE2hsnYPkTJFRI++nJVLuOYLZBo=" ], "Content-Length": [ "0" @@ -11042,20 +8804,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -11070,7 +8832,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 +8841,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "4466ca7e-c372-11e9-89e4-44032c851686" + "82e863a4-7ab0-11ea-b396-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:BZb/FO9L0YjFH0KUNy9bfPKh71O+zrKCvun63Ix6Dak=" + "SharedKey sdkteststore2:D6R8whYbnh6bYCexViBvr1tbUSQ0Vr6FF5zsVcebxL8=" ], "Content-Length": [ "0" @@ -11098,20 +8860,20 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "0" + ], "x-ms-delete-type-permanent": [ "true" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "x-ms-version": [ + "2017-07-29" ] }, "body": { @@ -11122,11 +8884,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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11138,16 +8900,16 @@ "keep-alive" ], "client-request-id": [ - "446ee9e2-c372-11e9-8150-44032c851686" + "82efdf28-7ab0-11ea-b9c4-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:HeMf6GhqUC9nZHLofWCNXvDDzAXG2xLA4amGN8KJ+5M=" + "SharedKey sdktest2:gwf6CZ5uvpa5hER5rNDPdPjG5hPygzZcepsbtqaZ6W8=" ] } }, @@ -11160,41 +8922,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "68035f8f-41ca-496b-adef-2211f3f2fa2d" + "8af18e1e-0a18-4fdd-9ef8-a8b822acce5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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 16.04\",\"capabilities\":[\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1\",\"version\":\"latest\"\r\n },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1-smalldisk\",\"version\":\"latest\"\r\n },\"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\":\"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-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 ]\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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11209,7 +8971,7 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "447ad4cc-c372-11e9-91ea-44032c851686" + "82fbebca-7ab0-11ea-99f7-44032c851686" ], "accept-language": [ "en-US" @@ -11218,10 +8980,10 @@ "277" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:MYPpSapN7cxQpDcyyhM+QitUie8hQ8biclNO7XpQCiM=" + "SharedKey sdktest2:2uqecSxJR8OUag47i2ZbuVFU0AQ1Y1/UDqB++UQBtcY=" ] } }, @@ -11234,14 +8996,11 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "9a5644b3-e6be-4308-a4f7-5c7fd231165c" + "7e961ab0-4a43-4896-9148-dc045d6f24b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -11249,26 +9008,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" - ], "Content-Length": [ "334" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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:7e961ab0-4a43-4896-9148-dc045d6f24b2\\nTime:2020-04-09T22:21:51.9016970Z\"\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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11280,16 +9042,16 @@ "keep-alive" ], "client-request-id": [ - "44866942-c372-11e9-ac75-44032c851686" + "8306c118-7ab0-11ea-80ef-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:NIaG0PnfWRfpY1MNixscIgIiFKBcr1vfLNzIObX9sHg=" + "SharedKey sdktest2:6xbaCv6jYlRnJaZwY53/RCXmb1K+5BjRZtjcXSU0qX4=" ] } }, @@ -11299,50 +9061,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" + "request-id": [ + "00b953f7-ee4f-440f-8b48-292ea4628e7a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D725957DFB0158" + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:40:29 GMT" + "Thu, 09 Apr 2020 22:17:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" ], - "request-id": [ - "a1b930b6-ff15-419f-8df5-e6f7c836ace6" + "ETag": [ + "0x8D7DCD3CCAD7735" ], - "Transfer-Encoding": [ - "chunked" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD3CCAD7735\",\"lastModified\":\"2020-04-09T22:17:32.6345013Z\",\"creationTime\":\"2020-04-09T22:17:32.6345013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:17:32.6345013Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-04-09T22:18:44.1969095Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11354,16 +9116,16 @@ "keep-alive" ], "client-request-id": [ - "448dee90-c372-11e9-a2e6-44032c851686" + "830efeae-7ab0-11ea-a54c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:15 GMT" + "Thu, 09 Apr 2020 22:21:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:BYIeN7EVjONerdTZbysxRso2w8Y/5SodQSrJYInSw7k=" + "SharedKey sdktest2:WRjrao4r/rr7Z4wM32relwug5Vmd1fblW8q2QodSXDw=" ] } }, @@ -11376,30 +9138,30 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:14 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "37dd8839-b7db-4ab8-b71d-05870676743e" + "d7c947ab-64d4-40cc-8080-4f8c347ccf90" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:51 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-04-09T22:21:25.467005Z\",\"lastBootTime\":\"2020-04-09T22:21:19.215709Z\",\"allocationTime\":\"2020-04-09T22:18:43.5231312Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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-04-09T22:21:24.815503Z\",\"endTime\":\"2020-04-09T22:21:25.420063Z\",\"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.170\",\"publicFQDN\":\"dns0496ab55-5672-4d03-8991-7bd82313207e-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":3389\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-04-09T22:21:19.215709Z\",\"version\":\"1.7.14\"\r\n }\r\n }\r\n ]\r\n}" } } }, @@ -11410,7 +9172,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-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/7.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -11422,10 +9184,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "x-ms-client-request-id": [ - "44ba866e-c372-11e9-a07b-44032c851686" + "835124ac-7ab0-11ea-ab4e-44032c851686" ], "accept-language": [ "en-US" @@ -11438,40 +9200,40 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ - "2729" + "2820" + ], + "Vary": [ + "Accept-Encoding" ], "x-ms-original-request-ids": [ - "1a4bba4d-043b-4e32-8cc3-4a641aa58b81", - "21497a40-928d-4fbe-be78-cd0823fb21b3" + "0ac76ac1-b3a9-49d4-824f-6b13b7fa4980", + "871c0ad6-64f0-4464-a425-40ba4df00cf8" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:52 GMT" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], - "Pragma": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, "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/\"}}},{\"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},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"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-01-09T20:16:08.6234908Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" } } }, @@ -11482,7 +9244,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 +9256,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "44fc2042-c372-11e9-8aee-44032c851686" + "839bc22e-7ab0-11ea-9555-44032c851686" ], "accept-language": [ "en-US" @@ -11516,38 +9278,38 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Accept-Encoding" + ], "Transfer-Encoding": [ "chunked" ], + "Date": [ + "Thu, 09 Apr 2020 22:21:53 GMT" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Pragma": [ - "no-cache" + "Content-Type": [ + "application/json" ], "content-length": [ "288" @@ -11565,7 +9327,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 +9336,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "4524af9c-c372-11e9-81f1-44032c851686" + "83d8cb30-7ab0-11ea-9042-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" + "Thu, 09 Apr 2020 22:21:53 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:sV/dojC3vEOKaPoV7vK/EIjr+KTkokgD49Wgqa//HnE=" + "SharedKey sdkteststore2:XUZw9N1pELe6s8nmb3qmp7dfHmXX8V3swqveeHWH01I=" ], "Content-Length": [ "0" @@ -11593,38 +9355,38 @@ "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:45:15 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:52 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:dca95ec6-901e-00ae-80bd-0e476d000000\nTime:2020-04-09T22:21:53.4665116Z" } } }, { "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11636,13 +9398,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "45414f66-c372-11e9-8570-44032c851686" + "83f6172c-7ab0-11ea-8fd2-44032c851686" ], "accept-language": [ "en-US" @@ -11661,38 +9423,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D72596299AC0BF" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:16 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "request-id": [ + "05d479c9-246f-4578-bba0-360e809b7dd9" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "53478f48-65be-4ca7-b7b8-999655f48af6" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:54 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:21:53 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "ETag": [ + "0x8D7DCD4688DA589" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -11703,11 +9465,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-04-09T22%3A06%3A53Z&se=2020-04-16T22%3A21%3A53Z&sp=w&sv=2017-07-29&sr=c&sig=7Bk6I%2BhS9YEW2aEnJnuOZ2z2Wg4lsbWdZYOcjPg4wkE%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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11719,19 +9481,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "456929be-c372-11e9-8c04-44032c851686" + "845ec3fe-7ab0-11ea-baeb-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "474" + "476" ] } }, @@ -11744,41 +9506,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "c4bc77d9-2c4d-42dc-9843-7e9fbd0a0ec7" + "086b7fed-48a1-4195-ba17-e13cd28f02e8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:53 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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\":\"0x8D7DCD468EEAFAE\",\"lastModified\":\"2020-04-09T22:21:54.7865006Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -11790,16 +9552,16 @@ "keep-alive" ], "client-request-id": [ - "45abb300-c372-11e9-8af5-44032c851686" + "84c0ba24-7ab0-11ea-bafb-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" + "Thu, 09 Apr 2020 22:21:54 GMT" ], "Authorization": [ - "SharedKey sdktest2:o6KUMWoXLdqzIk5JfpZBeP7S1GSYDuQ5zAFh6LAfdww=" + "SharedKey sdktest2:NKN4tNwAyYaglPAvHAYvJvOCfdIpQplkWZxIdQN5CEk=" ] } }, @@ -11809,249 +9571,249 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" + "request-id": [ + "b439be87-2465-405a-8d77-efa747149dd2" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "0x8D72596299AC0BF" + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" ], "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:16 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "350079b9-2118-4fb7-8edb-8328bfdc1c94" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ] - }, - "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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?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": [ - "45b60ec6-c372-11e9-b906-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:TnyDHUqfGG++OCjU2ToThb19pHa957TE8Sy/CfytQcM=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Thu, 09 Apr 2020 22:21:54 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:45:17 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "request-id": [ - "73c27ea7-edab-4c74-b383-b8698b8abded" - ], - "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#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}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/ncj-windows-2012-r2-1/tasks?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": [ - "478a8b4c-c372-11e9-b188-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:/le2GBHN9MKRVtoNO4PoGUJ3gKZCRijaeK/FLxWPmQU=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" - ], - "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#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}" - } - } - }, - { - "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", - "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": [ - "47946966-c372-11e9-9c40-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:Pqp1LVID6HMpKmMiKIJJ4WcYcReN7QJpOfm8L+272i4=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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" + "Thu, 09 Apr 2020 22:21:54 GMT" ], "ETag": [ - "0x8D7259629DC8103" + "0x8D7DCD4688DA589" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:17 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD4688DA589\",\"lastModified\":\"2020-04-09T22:21:54.1505417Z\",\"creationTime\":\"2020-04-09T22:21:54.1305864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:54.1505417Z\",\"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-04-09T22:21:54.1505417Z\",\"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=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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "84c94652-7ab0-11ea-b58e-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:54 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:wob3a0G1m6mw7bqEin865CcvSSkPH5AaP7u+bQp9BiE=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "d1c8d29f-7bcc-4800-894c-b34cd2ea5f48" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "10efabb0-f391-4955-9578-26d695dbecb6" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 09 Apr 2020 22:21:54 GMT" ], - "DataServiceVersion": [ - "3.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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\":\"0x8D7DCD468EEAFAE\",\"creationTime\":\"2020-04-09T22:21:54.7865006Z\",\"lastModified\":\"2020-04-09T22:21:54.7865006Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:54.7865006Z\",\"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-04-09T22%3A06%3A53Z&se=2020-04-16T22%3A21%3A53Z&sp=w&sv=2017-07-29&sr=c&sig=7Bk6I%2BhS9YEW2aEnJnuOZ2z2Wg4lsbWdZYOcjPg4wkE%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=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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "869c77c0-7ab0-11ea-9e14-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:57 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:XOOgoPsB1tr6NgSlPLkHtWfxXf9txKjA+bhzwhCtNiY=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;odata=minimalmetadata" + ], + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "6ac17229-d2d6-45c8-a398-472f647d2149" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:58 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "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\":\"0x8D7DCD468EEAFAE\",\"creationTime\":\"2020-04-09T22:21:54.7865006Z\",\"lastModified\":\"2020-04-09T22:21:54.7865006Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:21:56.338141Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:21:55.73792Z\",\"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-04-09T22%3A06%3A53Z&se=2020-04-16T22%3A21%3A53Z&sp=w&sv=2017-07-29&sr=c&sig=7Bk6I%2BhS9YEW2aEnJnuOZ2z2Wg4lsbWdZYOcjPg4wkE%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-04-09T22:21:55.784811Z\",\"endTime\":\"2020-04-09T22:21:56.338141Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d/files/workitems/ncj-windows-2012-r2-1/job-1/myTask\"\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=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/8.0.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "client-request-id": [ + "86adb5ac-7ab0-11ea-8fb4-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "ocp-date": [ + "Thu, 09 Apr 2020 22:21:58 GMT" + ], + "Authorization": [ + "SharedKey sdktest2:1tszubo+b6yfUM/oWtYXj3SECyArjsMmSXHm+laINZ0=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "DataServiceVersion": [ + "3.0" + ], + "request-id": [ + "377783b2-06d5-4301-9cad-d363591acccf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:54 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:58 GMT" + ], + "ETag": [ + "0x8D7DCD468EEAFAE" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" + ] + }, + "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\":\"0x8D7DCD468EEAFAE\",\"creationTime\":\"2020-04-09T22:21:54.7865006Z\",\"lastModified\":\"2020-04-09T22:21:54.7865006Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-09T22:21:56.338141Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-09T22:21:55.73792Z\",\"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-04-09T22%3A06%3A53Z&se=2020-04-16T22%3A21%3A53Z&sp=w&sv=2017-07-29&sr=c&sig=7Bk6I%2BhS9YEW2aEnJnuOZ2z2Wg4lsbWdZYOcjPg4wkE%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-04-09T22:21:55.784811Z\",\"endTime\":\"2020-04-09T22:21:56.338141Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/ncj-windows-2012-r2/nodes/tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d\",\"poolId\":\"ncj-windows-2012-r2\",\"nodeId\":\"tvmps_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_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_f6c2b762bf3286d76d77123d2de1eae9a7ed77968fe5c0bf225b045ee8dec59b_d/files/workitems/ncj-windows-2012-r2-1/job-1/myTask\"\r\n }\r\n}" } } }, @@ -12062,7 +9824,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" @@ -12071,13 +9833,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "479e95ca-c372-11e9-b8ca-44032c851686" + "86b83bee-7ab0-11ea-b4b6-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "Thu, 09 Apr 2020 22:21:58 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:V/UZfT6VOri2g7A27qdzLqllxvir/pooZRSX4aUionA=" + "SharedKey sdkteststore2:ENzY15onHWChv1kjDblwN2HUfn8xGVSK1VlpRBdsgVc=" ] } }, @@ -12087,12 +9849,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -12100,22 +9856,28 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:45:19 GMT" + "Thu, 09 Apr 2020 22:21:57 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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": "\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": "DELETE", - "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12127,7 +9889,7 @@ "keep-alive" ], "client-request-id": [ - "47aa580a-c372-11e9-8d64-44032c851686" + "86c3fb94-7ab0-11ea-b37c-44032c851686" ], "accept-language": [ "en-US" @@ -12136,10 +9898,10 @@ "0" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "Thu, 09 Apr 2020 22:21:58 GMT" ], "Authorization": [ - "SharedKey sdktest2:3e/clmvwyBmJVTrI90SmYPcE3XHtVAkT455y792HKus=" + "SharedKey sdktest2:++YHEXJXmMe1/5xVElb6k6XrAx8gj03efXmuZH/i6Gc=" ] } }, @@ -12149,26 +9911,26 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "5039fb54-1cb0-4b76-a0cf-e16fddd14f9f" + "911b130c-d106-4431-b21d-cdc1e232d4de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:21:58 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -12179,11 +9941,11 @@ { "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\": \"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12198,7 +9960,7 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "47b4d5ca-c372-11e9-bb31-44032c851686" + "86cd99c2-7ab0-11ea-99e7-44032c851686" ], "accept-language": [ "en-US" @@ -12207,10 +9969,10 @@ "757" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" + "Thu, 09 Apr 2020 22:21:58 GMT" ], "Authorization": [ - "SharedKey sdktest2:Nbd1SyrR1LL0C+r9LMZPVSmo8eoQwVCwsn3iyW8YQc4=" + "SharedKey sdktest2:SD2z5d2OcDgNoMU1l+xMwJeHO1wGQKutHk5RCzycat0=" ] } }, @@ -12220,38 +9982,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1" + "DataServiceVersion": [ + "3.0" ], - "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" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "request-id": [ + "bebd6933-4e27-4d9c-b923-61ff93cf509d" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "f3ca63b2-6f68-426c-ab9f-99923cff795e" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:21:58 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/pools/blobsource1" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -12262,11 +10024,11 @@ { "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12278,16 +10040,16 @@ "keep-alive" ], "client-request-id": [ - "47eca2ac-c372-11e9-810b-44032c851686" + "872e5808-7ab0-11ea-9aab-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "Thu, 09 Apr 2020 22:21:58 GMT" ], "Authorization": [ - "SharedKey sdktest2:VVmV7Y4ckii4aKVHUX7L0hCHIBxrv9AcaDpeQSzNLHg=" + "SharedKey sdktest2:NAdhLLZdVxqCACYugTrGj8qgo7fkx3mBswZBN7aXBn8=" ] } }, @@ -12297,50 +10059,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:20 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "900b9df9-0201-483a-b873-9104b12e3072" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "839d3d5d-5814-437e-b5a7-bdcf430d0129" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:21:58 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12352,16 +10114,16 @@ "keep-alive" ], "client-request-id": [ - "49c01926-c372-11e9-8444-44032c851686" + "89052ad4-7ab0-11ea-8337-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:24 GMT" + "Thu, 09 Apr 2020 22:22:01 GMT" ], "Authorization": [ - "SharedKey sdktest2:CHsDCW2JEyxhM/tzIFueAWbXXM2W8Tz0cxGkjKkQJtE=" + "SharedKey sdktest2:zgO7lkS9xVHoFkpJiSsMcFleTNCSPSfd/itFNR9NUYg=" ] } }, @@ -12371,50 +10133,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:23 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "111b6206-af87-4ad9-8bb3-940d4c92a3ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "1b8c07e6-6074-4850-a237-467cad41d7ec" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:01 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12426,16 +10188,16 @@ "keep-alive" ], "client-request-id": [ - "4b93d6ae-c372-11e9-a3e3-44032c851686" + "8ad81fa8-7ab0-11ea-a2d8-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:27 GMT" + "Thu, 09 Apr 2020 22:22:05 GMT" ], "Authorization": [ - "SharedKey sdktest2:atJV14scQOZoo2OEbJoN8LvAY0WExJZCzIDM9aWOMrg=" + "SharedKey sdktest2:Ok1RyRuEJref+yWMB+yWsHDpIA3ePT7n6fH9ce4ncRo=" ] } }, @@ -12445,50 +10207,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:27 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "a53fefd4-de95-4d28-aad4-698c9c5efd1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "3dd66382-3cce-4f21-9c57-0920531636e8" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:05 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12500,16 +10262,16 @@ "keep-alive" ], "client-request-id": [ - "4d68c5c6-c372-11e9-a3c4-44032c851686" + "8cab3428-7ab0-11ea-8b3b-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:30 GMT" + "Thu, 09 Apr 2020 22:22:08 GMT" ], "Authorization": [ - "SharedKey sdktest2:n2gFWdi/b6F7vO/JHpr9ICD4KRRfCm+4PIeGIcMg6zA=" + "SharedKey sdktest2:KqDuyXgJO3oswHbExuNe8etHr+HiBtc080A+Pdml9MM=" ] } }, @@ -12519,50 +10281,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:29 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "6cda5319-a7e4-43c5-8d3e-c0c7e72e7326" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "c8624a04-9833-461c-9a5b-648d548e44cd" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:08 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12574,16 +10336,16 @@ "keep-alive" ], "client-request-id": [ - "4f3d608a-c372-11e9-a1ee-44032c851686" + "8e7e5c90-7ab0-11ea-af26-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:33 GMT" + "Thu, 09 Apr 2020 22:22:11 GMT" ], "Authorization": [ - "SharedKey sdktest2:O/8+sj6pomr4ISqqO9N7IS7+uZO7md/OJJ8XRzesnjE=" + "SharedKey sdktest2:vVRGP8gIPtdbjoXIQ/6aN+MNqvN0+3jDAWNnmePM1Qg=" ] } }, @@ -12593,50 +10355,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:33 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "ad6bafe7-1b81-4e42-a4da-a8f0c92690ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "be444d3a-4774-45f5-b5bb-6ae858d64424" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:11 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12648,16 +10410,16 @@ "keep-alive" ], "client-request-id": [ - "51114b68-c372-11e9-b836-44032c851686" + "905a2a0c-7ab0-11ea-b019-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:36 GMT" + "Thu, 09 Apr 2020 22:22:14 GMT" ], "Authorization": [ - "SharedKey sdktest2:X80axkerQm+C3mFT6UQKtWRS2rkWSFkAc0acT2lfBOA=" + "SharedKey sdktest2:Sd5MGWZPfQRLKR0H5N/h05U1Zb6+cwT99oNNRXEilvY=" ] } }, @@ -12667,50 +10429,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:35 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "8dce5057-59a5-4ac6-8a99-9df01d705a7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "93702ffe-8e8d-4b88-b630-c34ddf932cf0" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:14 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12722,16 +10484,16 @@ "keep-alive" ], "client-request-id": [ - "52e48be4-c372-11e9-aeed-44032c851686" + "922d9088-7ab0-11ea-8a06-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:39 GMT" + "Thu, 09 Apr 2020 22:22:17 GMT" ], "Authorization": [ - "SharedKey sdktest2:bKFtiYVRU3Z1dOYdXfu7n49G5TZ+1BRrF74wKo8aINs=" + "SharedKey sdktest2:8muFV7GnL43NzUAt+mqpdZ+trCv775KFgC+vXLRYxcU=" ] } }, @@ -12741,50 +10503,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:39 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "8b6759eb-92da-4c5e-ad5f-d0aa9084cc95" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "1425543d-fb03-4307-bc1f-81f19ed45112" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:17 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12796,16 +10558,16 @@ "keep-alive" ], "client-request-id": [ - "54b7d9a6-c372-11e9-91b0-44032c851686" + "940313c0-7ab0-11ea-be26-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:42 GMT" + "Thu, 09 Apr 2020 22:22:20 GMT" ], "Authorization": [ - "SharedKey sdktest2:ZcdNTD1N2TWBwwGe+YMNxIXIXrcFyAPtsvogQuax7FA=" + "SharedKey sdktest2:LJ2F3Ud9HSfhbL4QOFaOMKU9V900hZM9CRApnN8Xoy0=" ] } }, @@ -12815,50 +10577,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:42 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "67217baa-f631-4211-8409-390f48c69eaf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "d1ca0d37-115e-48be-b809-ab6988e837bd" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:19 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12870,16 +10632,16 @@ "keep-alive" ], "client-request-id": [ - "568dc242-c372-11e9-b2b7-44032c851686" + "95d61470-7ab0-11ea-8b73-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:45 GMT" + "Thu, 09 Apr 2020 22:22:23 GMT" ], "Authorization": [ - "SharedKey sdktest2:bbeAKBlsA+34ho857UnsgL8KsEB2rqLMo2ZobsFjuwU=" + "SharedKey sdktest2:1hdjpreRsbMilcgztFszsjcujTKfunaG9FSctELww+0=" ] } }, @@ -12889,50 +10651,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:45 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "edf8d426-36b5-4922-aa17-ebc64ace155d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "75e3361f-cedf-4cd0-a5c5-f53d9a909abe" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:23 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -12944,16 +10706,16 @@ "keep-alive" ], "client-request-id": [ - "5860a7f6-c372-11e9-99bb-44032c851686" + "97a94b64-7ab0-11ea-a49a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:48 GMT" + "Thu, 09 Apr 2020 22:22:26 GMT" ], "Authorization": [ - "SharedKey sdktest2:sccm3YU5dTg28SNdrE1oCaqefGO5k6tfpQB16Rn9wjI=" + "SharedKey sdktest2:o2IF5m/XgTJQy+jgmo0YmoO9rNQL0Nuov2nQSoQovTI=" ] } }, @@ -12963,50 +10725,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:48 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "0dd18a37-f9d0-4abe-8836-b485fecaf6bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "7ee81982-65ea-4a7c-9f48-fda518631571" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:25 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13018,16 +10780,16 @@ "keep-alive" ], "client-request-id": [ - "5a37574a-c372-11e9-92a7-44032c851686" + "997bc786-7ab0-11ea-aeb3-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:51 GMT" + "Thu, 09 Apr 2020 22:22:29 GMT" ], "Authorization": [ - "SharedKey sdktest2:X2GO1nWxAzV8ql1PeBCWJ2fe6rKsznlmqwCyKG64S6E=" + "SharedKey sdktest2:gAv+bpnR1v176jYUBnOQi2xzCwo7i2LgEH3OI8VbmpA=" ] } }, @@ -13037,50 +10799,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:51 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "faf7962e-2133-4b36-81ca-4da24860f27c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "53a42575-d0c2-46e8-b276-4e93fa0fc219" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:29 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13092,16 +10854,16 @@ "keep-alive" ], "client-request-id": [ - "5c0fa686-c372-11e9-b91c-44032c851686" + "9b4ec264-7ab0-11ea-bf4e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:54 GMT" + "Thu, 09 Apr 2020 22:22:32 GMT" ], "Authorization": [ - "SharedKey sdktest2:/Mw2aVV9YAA/uA5EhWuXVNjPglx16rTYtJyA9vq22U8=" + "SharedKey sdktest2:DIAkUuhIvWOW0U/o9PSxuIDEGW+S2Ab+32EmLQHIHo4=" ] } }, @@ -13111,50 +10873,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:54 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "2f395b0f-f053-4303-88ec-5c99702819a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "82b2078d-6a5e-4ad2-b801-0a1489a826c3" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:32 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13166,16 +10928,16 @@ "keep-alive" ], "client-request-id": [ - "5de3b250-c372-11e9-ad92-44032c851686" + "9d2202c6-7ab0-11ea-a51a-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:45:58 GMT" + "Thu, 09 Apr 2020 22:22:35 GMT" ], "Authorization": [ - "SharedKey sdktest2:8WQ9mYqxkoX138Galbp0Yx5sEQyW1a7Hl6Db3qtbYIM=" + "SharedKey sdktest2:68XKQ/3K3o0UAPv3DpAgLvu3K+W+aFMSWv+VdAUDqro=" ] } }, @@ -13185,50 +10947,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:45:57 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "442e1325-c32f-4e2e-86dd-c7d3646cfe71" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "143807ae-2c22-493b-9ce2-31c74719b5ef" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:35 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13240,16 +11002,16 @@ "keep-alive" ], "client-request-id": [ - "5fba9c5c-c372-11e9-b9f2-44032c851686" + "9ef5039c-7ab0-11ea-b72c-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:01 GMT" + "Thu, 09 Apr 2020 22:22:38 GMT" ], "Authorization": [ - "SharedKey sdktest2:7X4QuUKm51a+kUygJBcMXDUx2QATnlrUm1l5pxP/jRA=" + "SharedKey sdktest2:DZB8turiisvo9PGjIfZiSfeH/1XQVm3j5oj8tCDMnxo=" ] } }, @@ -13259,50 +11021,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:01 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "7693ea96-0cdf-4489-a455-d7ba4a8ec3be" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "b302e78d-6439-49d5-bc85-dbf167d70c69" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:38 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13314,16 +11076,16 @@ "keep-alive" ], "client-request-id": [ - "61923d1c-c372-11e9-b01b-44032c851686" + "a0c8c2ae-7ab0-11ea-b1c1-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:04 GMT" + "Thu, 09 Apr 2020 22:22:41 GMT" ], "Authorization": [ - "SharedKey sdktest2:gTbr+5VkwhTNNIXSF5wu+h5ifou19fOwh2HQMoefFFM=" + "SharedKey sdktest2:5DVXT2uQ7pTZ9VDZht3NN4MpXbyTc0NkH8txfyrQvrA=" ] } }, @@ -13333,50 +11095,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:03 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "e10a8921-67c5-4950-bde7-70313b8fe764" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "bb55b372-7e59-4b7c-8948-a70782433662" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:41 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13388,16 +11150,16 @@ "keep-alive" ], "client-request-id": [ - "6367a9de-c372-11e9-9ec3-44032c851686" + "a29cd72e-7ab0-11ea-8335-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:07 GMT" + "Thu, 09 Apr 2020 22:22:44 GMT" ], "Authorization": [ - "SharedKey sdktest2:ALOSRO+vz38KYlRxlsPy1mayK+lm6UuIyF5GK/wtYJM=" + "SharedKey sdktest2:DJoSenqnxExqS2PZuJTyz/nG48rsi6vSLLvQppWEYO4=" ] } }, @@ -13407,50 +11169,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:06 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "d87c5f19-6b8d-4924-b0a4-9d6d9783e597" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "032f5991-361f-4e50-a562-cf5df41ec619" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:44 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13462,16 +11224,16 @@ "keep-alive" ], "client-request-id": [ - "653cf14a-c372-11e9-9b94-44032c851686" + "a4742478-7ab0-11ea-84d5-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:10 GMT" + "Thu, 09 Apr 2020 22:22:48 GMT" ], "Authorization": [ - "SharedKey sdktest2:/f+geWjGZyK1Rc0sTRs7nggTKkX6DzLqxe5CyI5+p4w=" + "SharedKey sdktest2:WR3jS7PqSzuphwk7qsNpKLmPlY8X1bcGBGYWkBY8cC0=" ] } }, @@ -13481,50 +11243,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:10 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "6281d7ed-0667-4ffa-83f3-5f8e6c5ba70d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "e5b37bc7-8c7e-445f-b036-1b62064b65f1" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:48 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13536,16 +11298,16 @@ "keep-alive" ], "client-request-id": [ - "670f98e2-c372-11e9-bd73-44032c851686" + "a64c3468-7ab0-11ea-a839-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:13 GMT" + "Thu, 09 Apr 2020 22:22:51 GMT" ], "Authorization": [ - "SharedKey sdktest2:wtWUHV/+pQ9x5nl1JO3thwwBk+XGq/LzU5hC4Zd6zDw=" + "SharedKey sdktest2:waKD3BRbjKVM7yPditvERCIQUy+6TR22mrv5qKcA290=" ] } }, @@ -13555,50 +11317,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:13 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "51c64ede-9570-42f2-a5fc-535707614223" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "99c76b74-d005-46e9-afd7-3f88f908c68b" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:50 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13610,16 +11372,16 @@ "keep-alive" ], "client-request-id": [ - "68e313c0-c372-11e9-a881-44032c851686" + "a8200782-7ab0-11ea-bba1-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:16 GMT" + "Thu, 09 Apr 2020 22:22:54 GMT" ], "Authorization": [ - "SharedKey sdktest2:JcdqGi3P2XAXRS0JDayWC7yp9RWCh8qUzBR4vqnNGCA=" + "SharedKey sdktest2:uuIVJdItfXrtBUsng7mmQEtfvMBCGKsNLjMgbOrwwng=" ] } }, @@ -13629,50 +11391,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:16 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "d3458433-39d2-4f25-8775-d6a974bd4050" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "5cf54389-9bf7-4581-ad45-34b21384bea3" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:53 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13684,16 +11446,16 @@ "keep-alive" ], "client-request-id": [ - "6ab6f8b4-c372-11e9-a0c8-44032c851686" + "a9f62f76-7ab0-11ea-a8b0-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:19 GMT" + "Thu, 09 Apr 2020 22:22:57 GMT" ], "Authorization": [ - "SharedKey sdktest2:nkRkRvY4DTVViGGqxYg6Y4GbIEe+DkZBgsbJh/E4O5o=" + "SharedKey sdktest2:my/gcQ2PtkFyYzMn2FEdR0i9Nu6w+AsuQC+btDXBWd8=" ] } }, @@ -13703,50 +11465,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:19 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "bb2cdbad-b3b0-4b34-8052-0bf1cb58d9de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "0a94af53-d0ec-4c04-b3ce-97b665235eea" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:56 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13758,16 +11520,16 @@ "keep-alive" ], "client-request-id": [ - "6c904654-c372-11e9-9d4d-44032c851686" + "abcae94c-7ab0-11ea-986f-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:22 GMT" + "Thu, 09 Apr 2020 22:23:00 GMT" ], "Authorization": [ - "SharedKey sdktest2:J79K//NC0/jRnQiRaLu9N0T8LgI1mEeXcMM9BC6ckjQ=" + "SharedKey sdktest2:m75yhRiugIsWnmnLwixBzDaRraUSJpFYM4G0DGeyplA=" ] } }, @@ -13777,50 +11539,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:21 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "398c3a56-69e0-4947-96ee-a56fe7c1f6b9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "af2f280d-d411-493c-afa3-b6d9da16aa1b" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:22:59 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13832,16 +11594,16 @@ "keep-alive" ], "client-request-id": [ - "6e665b68-c372-11e9-9e79-44032c851686" + "ad9f2ea8-7ab0-11ea-906e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:25 GMT" + "Thu, 09 Apr 2020 22:23:03 GMT" ], "Authorization": [ - "SharedKey sdktest2:8uzNcOB5A5/IGgKQ8v/z1cGU72tLlFTKBq4/fdmNz0w=" + "SharedKey sdktest2:GW4Av/HU+lm4sqDj1Nc+MFJatLCwP0iHNstOMiTyMXQ=" ] } }, @@ -13851,50 +11613,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:25 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "ca3fa695-ef56-4609-8f5f-cbdb714c3098" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "dfd8a08e-5ee0-4240-9ff7-d0bf10e5a6dc" + "X-Content-Type-Options": [ + "nosniff" ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:23:02 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json;odata=minimalmetadata" ] }, "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -13906,16 +11668,16 @@ "keep-alive" ], "client-request-id": [ - "703b9292-c372-11e9-80b8-44032c851686" + "af72682e-7ab0-11ea-981e-44032c851686" ], "accept-language": [ "en-US" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:28 GMT" + "Thu, 09 Apr 2020 22:23:06 GMT" ], "Authorization": [ - "SharedKey sdktest2:5i4EP2WPEtovbPGofxzhdjSwDJhYxuj7YhiWFxIKUfU=" + "SharedKey sdktest2:HyGCuhJDJDt2JJnEQWRm8SSBk8iScqU6zToNfp4Y/cs=" ] } }, @@ -13925,642 +11687,50 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:27 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D725962C1A843B" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" + "request-id": [ + "659bbd1b-864a-4dde-8b53-cf0b87da5565" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "request-id": [ - "cc6b86c8-82b8-418c-a143-8ba566e7143e" + "X-Content-Type-Options": [ + "nosniff" ], "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": [ - "720f5d1a-c372-11e9-8120-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:31 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:LqZBE3t/qp4E7FGtl2eNlp5Pg6MNHzRsb67VaXjzlCY=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:21:58 GMT" ], "Date": [ - "Tue, 20 Aug 2019 17:46:31 GMT" + "Thu, 09 Apr 2020 22:23:06 GMT" + ], + "ETag": [ + "0x8D7DCD46B59BEC5" ], "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": [ - "db9735d7-0546-4e9e-a51a-04a5cca3631e" - ], - "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": [ - "73e48082-c372-11e9-a9f5-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:34 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:pIUDSeQn7ujWmscYWU4ubB+KmPTOD5k207+ftO+4g4U=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:34 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": [ - "daaed897-1f2b-48db-aebd-058e6cf0b2af" - ], - "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": [ - "75b809b4-c372-11e9-9fb2-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:38 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:ThwCIFWg59ctGHQL1uTzjQu2AKVNe6YjipdPgcA8Znw=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:37 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": [ - "87a259dd-2f97-4cb9-875b-dc52bccf2e3a" - ], - "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": [ - "778bd4da-c372-11e9-96bd-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:41 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:9jO83v6JYKMU7pIffeJK6xikqkmMoxIn62m7fCFtfWA=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "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" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:45:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "1d5059e6-c785-4d14-b57e-198a2a0a7b42" - ], - "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": [ - "79601f54-c372-11e9-bde6-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:44 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:YBl5KHi3iYOH0EKy8Qouk6pwZc5BGrlVHy3LOiVxPC4=" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json;odata=minimalmetadata" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:43 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": [ - "90d3ad71-1823-4618-9c3e-0d5ff5437ef2" - ], - "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": [ - "7b337940-c372-11e9-8689-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 20 Aug 2019 17:46:47 GMT" - ], - "Authorization": [ - "SharedKey sdktest2:RY+p42LY4oCMYdO7k9XBA6XxQjU3MCX5jMarVHne0+Y=" - ] - } - }, - "response": { - "status": { - "code": 200, - "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}" + "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\":\"0x8D7DCD46B59BEC5\",\"lastModified\":\"2020-04-09T22:21:58.8435653Z\",\"creationTime\":\"2020-04-09T22:21:58.8435653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-09T22:21:58.8435653Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-04-09T22:23:04.8637682Z\",\"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", + "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14572,7 +11742,7 @@ "keep-alive" ], "client-request-id": [ - "7ee6ae28-c372-11e9-85f8-44032c851686" + "af7b6628-7ab0-11ea-96d0-44032c851686" ], "accept-language": [ "en-US" @@ -14581,10 +11751,10 @@ "0" ], "ocp-date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" + "Thu, 09 Apr 2020 22:23:06 GMT" ], "Authorization": [ - "SharedKey sdktest2:sw0Ru0r1hk+uWbtvVWSy/y2EeBc+clW/u8ytk8rUaDY=" + "SharedKey sdktest2:51f8TVaDE1tCIUJ7oUGMEnE5AF7PCbJL9sWyJNJ938M=" ] } }, @@ -14594,26 +11764,26 @@ "message": "Accepted" }, "headers": { - "Date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "747d94a8-712d-4af2-814e-50b396ee5ef0" + "7a911df7-10d4-4ad6-a070-c5b69aff7d26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:06 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -14624,11 +11794,11 @@ { "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\": \"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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14640,13 +11810,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "7f1a2d76-c372-11e9-aec1-44032c851686" + "afb22a2c-7ab0-11ea-aa09-44032c851686" ], "accept-language": [ "en-US" @@ -14665,38 +11835,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "DataServiceVersion": [ + "3.0" ], - "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" + "request-id": [ + "3f4539d4-348b-4246-bb0b-8c3c15daf7b3" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "14cb0d4c-8d64-4cd1-b558-c4f955a61f55" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:07 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:23:07 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "ETag": [ + "0x8D7DCD4946133EE" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -14707,11 +11877,11 @@ { "request": { "method": "POST", - "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/job123/addtaskcollection?api-version=2019-08-01.10.0", + "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14723,13 +11893,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "7f8b457e-c372-11e9-8010-44032c851686" + "b0320af6-7ab0-11ea-817d-44032c851686" ], "accept-language": [ "en-US" @@ -14748,41 +11918,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:53 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "ba8403b7-edc4-4ade-a88f-ee1ad083527d" + "3b62803b-bc83-4e94-9810-098d584424bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:08 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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}" + "string": "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"1\",\"eTag\":\"0x8D7DCD494AEB240\",\"lastModified\":\"2020-04-09T22:23:08.1868864Z\",\"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", + "uri": "https://sdktest2.westcentralus.batch.azure.com/jobs/job123?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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -14794,13 +11964,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "7fadc10c-c372-11e9-abc9-44032c851686" + "b0876922-7ab0-11ea-afd8-44032c851686" ], "accept-language": [ "en-US" @@ -14816,35 +11986,35 @@ "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" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "fd61eb7a-8863-441f-aa5d-a5578f7f261e" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:54 GMT" + "7d82ea7c-5b5b-430c-9736-1253594abd4c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:08 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:07 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job123" + ], + "ETag": [ + "0x8D7DCD494C5668D" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -14859,7 +12029,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-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/7.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -14871,10 +12041,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "x-ms-client-request-id": [ - "7fe35b92-c372-11e9-8a63-44032c851686" + "b0c818cc-7ab0-11ea-8375-44032c851686" ], "accept-language": [ "en-US" @@ -14887,40 +12057,40 @@ "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" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ - "2729" + "2820" + ], + "Vary": [ + "Accept-Encoding" ], "x-ms-original-request-ids": [ - "f6451908-52f2-4fe9-937d-76d9012e29af", - "779308ae-5bb3-442c-bccd-cb92c54137f0" + "d37952fd-76bf-46df-8fe7-3201b57e99c2", + "29806387-63e8-4b33-8bb7-57ac237fbc44" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:08 GMT" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], - "Pragma": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, "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/\"}}},{\"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},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"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-01-09T20:16:08.6234908Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" } } }, @@ -14931,7 +12101,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" @@ -14943,13 +12113,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "8028bfa2-c372-11e9-9035-44032c851686" + "b111d2b4-7ab0-11ea-8f4c-44032c851686" ], "accept-language": [ "en-US" @@ -14965,38 +12135,38 @@ "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" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Accept-Encoding" + ], "Transfer-Encoding": [ "chunked" ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Pragma": [ - "no-cache" + "Content-Type": [ + "application/json" ], "content-length": [ "288" @@ -15014,7 +12184,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" @@ -15023,13 +12193,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80608112-c372-11e9-a4bf-44032c851686" + "b153a8e8-7ab0-11ea-8a24-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" + "Thu, 09 Apr 2020 22:23:09 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:kSj4yabG3dDvxSHTtdVMC6Irdl2tYoImswKXUww/ctE=" + "SharedKey sdkteststore2:wdJV+V9Nfr50g5Ge2252cw9EqwhwfgA1onmCk253WG0=" ], "Content-Length": [ "0" @@ -15038,31 +12208,31 @@ }, "response": { "status": { - "code": 201, - "message": "Created" + "code": 409, + "message": "The specified container already exists." }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259664B9CF06\"" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "x-ms-error-code": [ + "ContainerAlreadyExists" ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:55 GMT" - ], "Content-Length": [ - "0" + "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9719-601e-0077-4cbd-0ee141000000\nTime:2020-04-09T22:23:09.8123381Z" } } }, @@ -15073,7 +12243,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" @@ -15082,113 +12252,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "808bec6e-c372-11e9-9ffb-44032c851686" + "b177ab86-7ab0-11ea-a217-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:09 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:J5/0NQDRDfcE8qLM2AzV3zQM1tEWXv1RsGMWxI+dcRo=" + "SharedKey sdkteststore2:/gR4nG75WpjUegp4Wx4XsPlgphpQv6UMgYhTcbYpYZM=" ] } }, "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" - ], - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.0615716" ], - "Content-MD5": [ - "GhvIqLxdhgZSxhi6CdQjLQ==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:24 GMT" ], - "Content-Length": [ - "1377" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "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" + "\"0x8D75C8385B13218\"" ] }, "body": { @@ -15203,7 +12302,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" @@ -15212,13 +12311,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80a2fb68-c372-11e9-bb67-44032c851686" + "b180853a-7ab0-11ea-a71d-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:09 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:CyBt37svbXQVkDm8TcIxt1XrynCFsfjwUyns4Py+IkA=" + "SharedKey sdkteststore2:fiIgUJojRfDHJPNrSX4m2tERop1vuJRLAUEO46DQDG8=" ], "Content-Length": [ "0" @@ -15231,27 +12330,27 @@ "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" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de5ef-401e-00ac-277f-574597000000\nTime:2019-08-20T17:46:56.3717012Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9756-601e-0077-03bd-0ee141000000\nTime:2020-04-09T22:23:09.9184133Z" } } }, @@ -15262,7 +12361,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" @@ -15271,113 +12370,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80aae9a2-c372-11e9-8322-44032c851686" + "b187d898-7ab0-11ea-8248-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:09 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:Zf0ra2bs/ZMFW3S78TLZ/z/EX6VhGnfPZfKDFZUbLXc=" + "SharedKey sdkteststore2:nwiYwryko7zRFs6pqPq6nEwkD0q45yd2HdUX0TOL0b8=" ] } }, "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" - ], - "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" + "0" ], "x-ms-meta-lastmodified": [ "1524153754.252081" ], - "Content-MD5": [ - "xbCZcjm1pOMcwR8Td2yo9w==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], - "Content-Length": [ - "219" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "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" + "\"0x8D75C8385CAD93B\"" ] }, "body": { @@ -15392,7 +12420,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" @@ -15401,13 +12429,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80c1da5e-c372-11e9-809d-44032c851686" + "b190b262-7ab0-11ea-a91f-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:QrJ+WqbEoIEXu7zSgKaKmPGHnAJ7KRCdy7hIq3TD9ks=" + "SharedKey sdkteststore2:5Rn3oUu+UO/7yOtoPVU6xVd78Totj32MWRkrnnqGX0M=" ], "Content-Length": [ "0" @@ -15420,27 +12448,27 @@ "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" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de61a-401e-00ac-4e7f-574597000000\nTime:2019-08-20T17:46:56.5748448Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9796-601e-0077-3cbd-0ee141000000\nTime:2020-04-09T22:23:10.0274915Z" } } }, @@ -15451,7 +12479,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" @@ -15460,113 +12488,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80c9d28c-c372-11e9-b2d0-44032c851686" + "b1987b9c-7ab0-11ea-8c79-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:f5u7CiEeMWCzw0bHzb9rlYbRNLL98Fy7DWb21qgaTcg=" + "SharedKey sdkteststore2:sosYkrbxbjYWLgJ0HBJzh/5dkaMLIujTJf8+x1/RIuo=" ] } }, "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" - ], - "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" + "0" ], "x-ms-meta-lastmodified": [ "1524153754.252081" ], - "Content-MD5": [ - "HBCHz/rBYi8V9ILMKx0o+g==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], - "Content-Length": [ - "146" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "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" + "\"0x8D75C8385E28432\"" ] }, "body": { @@ -15581,7 +12538,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" @@ -15590,13 +12547,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80dc7146-c372-11e9-8009-44032c851686" + "b1a0bd50-7ab0-11ea-871d-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:sUojwrH72/0EicyVIqMB9p0yBqvTbPzFkvTFhIPIXOI=" + "SharedKey sdkteststore2:AhQFQf/Ji7uGd5vsxNBRe550hR8+cq6VvAnjbRxuowk=" ], "Content-Length": [ "0" @@ -15609,27 +12566,27 @@ "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" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de649-401e-00ac-7a7f-574597000000\nTime:2019-08-20T17:46:56.7499687Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad97fc-601e-0077-1abd-0ee141000000\nTime:2020-04-09T22:23:10.1335667Z" } } }, @@ -15640,7 +12597,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" @@ -15649,113 +12606,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80e4d51e-c372-11e9-b260-44032c851686" + "b1a88e74-7ab0-11ea-ad2b-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:DHEDR4AV6oYRQVKtAFTDuWRsnVHWFPQH4jIKjQ/IqOY=" + "SharedKey sdkteststore2:nW5CSkOtnMVoMdxhYDTgHAYq0fB6Q0RrPIvGk6PFD5A=" ] } }, "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" - ], - "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" + "0" ], "x-ms-meta-lastmodified": [ "1524153754.253081" ], - "Content-MD5": [ - "PFiBkLMhFseOyDvKgJXaRA==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], - "Content-Length": [ - "187" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "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" + "\"0x8D75C8385FA5640\"" ] }, "body": { @@ -15770,7 +12656,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" @@ -15779,13 +12665,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "80fbae86-c372-11e9-a753-44032c851686" + "b1b13a28-7ab0-11ea-a298-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:n3w3i86k0P2B1nLdVvuIWDom3JePIeMsg/fEleo3Xr4=" + "SharedKey sdkteststore2:7ZYgNDiE1Onm77R8+DE38GJTSZ5t+kFb8WJScQjm4HM=" ], "Content-Length": [ "0" @@ -15798,27 +12684,27 @@ "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" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de680-401e-00ac-2b7f-574597000000\nTime:2019-08-20T17:46:56.9531128Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad983b-601e-0077-55bd-0ee141000000\nTime:2020-04-09T22:23:10.2416441Z" } } }, @@ -15829,7 +12715,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" @@ -15838,113 +12724,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8103a108-c372-11e9-bf44-44032c851686" + "b1b92b36-7ab0-11ea-814c-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:EoWcxGtkN+HSIuUK+4q6+XjPJVkVfGePJQ7iqmCyRX4=" + "SharedKey sdkteststore2:wIeXDndcPKggNCPd3FwcwzpfjevfJrSxa/+KEdyKN+8=" ] } }, "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" - ], - "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" + "0" ], "x-ms-meta-lastmodified": [ "1524153754.253081" ], - "Content-MD5": [ - "IvRrVHIc/lLy/wSkE22LeA==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], - "Content-Length": [ - "206" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "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\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-MD5": [ - "IvRrVHIc/lLy/wSkE22LeA==" - ], - "Content-Length": [ - "0" + "\"0x8D75C838614E7F2\"" ] }, "body": { @@ -15959,7 +12774,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" @@ -15968,13 +12783,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81166c0c-c372-11e9-8fac-44032c851686" + "b1c1cee6-7ab0-11ea-857e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:uv+enZU+r9LvCpPwwR/D5B6Zg4VoYBEw7JZo9cUp/qE=" + "SharedKey sdkteststore2:NnwsF1VLD4zTFhHKatIW5t7x53fszjLTTnPHEgnTmeI=" ], "Content-Length": [ "0" @@ -15987,27 +12802,27 @@ "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" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de6cf-401e-00ac-767f-574597000000\nTime:2019-08-20T17:46:57.1282358Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9861-601e-0077-76bd-0ee141000000\nTime:2020-04-09T22:23:10.3497212Z" } } }, @@ -16018,7 +12833,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" @@ -16027,113 +12842,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "811e4fc6-c372-11e9-8821-44032c851686" + "b1c99a9c-7ab0-11ea-b676-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:y6GoVnW8MR3LwBf7FK65lFZ2rUxZGqtD6/ZAtroigo4=" + "SharedKey sdkteststore2:E+o2Jktejo0oz+2CEPS1KtyLWI0FYLQWsT6DZbIo1+U=" ] } }, "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" - ], - "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:1b8de6de-401e-00ac-057f-574597000000\nTime:2019-08-20T17:46:57.1862773Z" - } - } - }, - { - "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", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.0625725" ], - "Content-MD5": [ - "27HmU8S9AEeu90aG5z1x1A==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], - "Content-Length": [ - "740" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "8127eb74-c372-11e9-9d93-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:kqibZJeMVRAejeyXRhBLMMuMCMXwhaPBLynhWJwWyFk=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D7259665628AED\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-MD5": [ - "27HmU8S9AEeu90aG5z1x1A==" - ], - "Content-Length": [ - "0" + "\"0x8D75C83863175C7\"" ] }, "body": { @@ -16148,7 +12892,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 +12901,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81313b92-c372-11e9-890f-44032c851686" + "b1d18ada-7ab0-11ea-92bd-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:JdxZIXYV2umwVb2BkNy0GmB/ay78/GiWSKm1uUe8W0o=" + "SharedKey sdkteststore2:M94L0zS0kiurxXsQxgUMVMMhhWVJAYCRw9oxayGY+MY=" ], "Content-Length": [ "0" @@ -16176,27 +12920,27 @@ "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" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:8dad987d-601e-0077-0fbd-0ee141000000\nTime:2020-04-09T22:23:10.4507932Z" } } }, @@ -16207,7 +12951,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" @@ -16216,113 +12960,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "813903c2-c372-11e9-b043-44032c851686" + "b1d903e2-7ab0-11ea-9f21-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:puj+aKP8+0gxbZAqQnUt8D9XY5YZe+UbYqIhKuDgeCI=" + "SharedKey sdkteststore2:u/2JRA1y8jyPA5AMZY7NzZ09FXe72CheiU10WTAX78s=" ] } }, "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" - ], - "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:1b8de714-401e-00ac-397f-574597000000\nTime:2019-08-20T17:46:57.3764113Z" - } - } - }, - { - "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", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1524153754.2540834" ], - "Content-MD5": [ - "eSn7zZA04to5Rccq3nxw1A==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:25 GMT" ], - "Content-Length": [ - "240" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "8144c26c-c372-11e9-8e11-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:WlzjrlzCx8rM/moNwAuOR19YCfKtQCdx+lTm+NKJlE4=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D72596657F3FDC\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:56 GMT" - ], - "Content-MD5": [ - "eSn7zZA04to5Rccq3nxw1A==" - ], - "Content-Length": [ - "0" + "\"0x8D75C8386496EEC\"" ] }, "body": { @@ -16337,7 +13010,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" @@ -16346,13 +13019,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "814dea2e-c372-11e9-97ef-44032c851686" + "b1e0a62e-7ab0-11ea-9ad0-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:+nZzWhxwZ1zYhQQzQuddEu/syDaFhuqNrYEARJyzw+U=" + "SharedKey sdkteststore2:Pa+20kG2WrBGeFCqdPWfIrkMlCWGXQ0R2F5Fhvjxs8E=" ], "Content-Length": [ "0" @@ -16365,27 +13038,27 @@ "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" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de745-401e-00ac-657f-574597000000\nTime:2019-08-20T17:46:57.4904920Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad98a7-601e-0077-35bd-0ee141000000\nTime:2020-04-09T22:23:10.5518648Z" } } }, @@ -16396,7 +13069,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" @@ -16405,113 +13078,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8155aff6-c372-11e9-8a35-44032c851686" + "b1e86d30-7ab0-11ea-bfe0-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:FG2OfkFLZ7szN33Qze4KaZ7+IGfOCCcDB7/4QhUqRfo=" + "SharedKey sdkteststore2:H7GpeJUId0XO2nKUO9HEFeIf35Syeq0tdP6sa//elrg=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de753-401e-00ac-737f-574597000000\nTime:2019-08-20T17:46:57.5455314Z" - } - } - }, - { - "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}", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.0829573" ], - "Content-MD5": [ - "sWJuTwpMQ9cWToECYRCNiQ==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], - "Content-Length": [ - "1363" + "Date": [ + "Thu, 09 Apr 2020 22:23:09 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "815ed718-c372-11e9-a956-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:vt5gmV/PO3c8e7ibn7aXQ5D9Fn7lhuyS/R/GIfI80aA=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D7259665993529\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-MD5": [ - "sWJuTwpMQ9cWToECYRCNiQ==" - ], - "Content-Length": [ - "0" + "\"0x8D75C83866140FA\"" ] }, "body": { @@ -16526,7 +13128,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 +13137,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8167f09a-c372-11e9-86ed-44032c851686" + "b1f0f8be-7ab0-11ea-92bb-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:BYZqkMgpVii/0xt+fCoQXTlCxclIs64US79BIfNni6w=" + "SharedKey sdkteststore2:A+7qrupryVQB1OgiRmjNAzN/udc6EWHmacuJK6BwIP8=" ], "Content-Length": [ "0" @@ -16554,27 +13156,27 @@ "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:57 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:8dad98d7-601e-0077-63bd-0ee141000000\nTime:2020-04-09T22:23:10.6619437Z" } } }, @@ -16585,7 +13187,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" @@ -16594,113 +13196,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81709a14-c372-11e9-b736-44032c851686" + "b1f94b46-7ab0-11ea-b2e4-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:qRJqHxX1XyE4sxXdvs1Nnnj6Jr+pT4Fv3BLukoXzSj8=" + "SharedKey sdkteststore2:vL3A4wENeVSLl3lyvxZe9N6FlZ/5ld8GNtAbBon5578=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de777-401e-00ac-167f-574597000000\nTime:2019-08-20T17:46:57.7226567Z" - } - } - }, - { - "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", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1552419189.7367494" ], - "Content-MD5": [ - "2ILRwlJk1kyfaTTP253tiA==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], - "Content-Length": [ - "4072" + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "81799c10-c372-11e9-a794-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:HiIiePiYS4ozAlO534lkkMl341I+OmeS1+/lkRmnACY=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D7259665B43C13\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-MD5": [ - "2ILRwlJk1kyfaTTP253tiA==" - ], - "Content-Length": [ - "0" + "\"0x8D75C8386793A24\"" ] }, "body": { @@ -16715,7 +13246,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" @@ -16724,13 +13255,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81830890-c372-11e9-bbd3-44032c851686" + "b2019b7e-7ab0-11ea-8a5c-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:ENnOAE8WLYXq8+5XuZ2jB5g/lqfjVteRU2nwOFysp4k=" + "SharedKey sdkteststore2:EmRGes2/AVsBYZ8i2eeDU8pOncTySO0Dn6tdNcaopmY=" ], "Content-Length": [ "0" @@ -16743,27 +13274,27 @@ "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:57 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de792-401e-00ac-2f7f-574597000000\nTime:2019-08-20T17:46:57.8397390Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad990f-601e-0077-17bd-0ee141000000\nTime:2020-04-09T22:23:10.7680191Z" } } }, @@ -16774,7 +13305,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" @@ -16783,113 +13314,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "818b1362-c372-11e9-aee9-44032c851686" + "b20989da-7ab0-11ea-aeb4-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:ebzKMRM9P3zAIF/g/BQhdOxLuZnO5JHkhdw6Q4aBqH4=" + "SharedKey sdkteststore2:8EaNe4c8vhsgnC6kcNCVo81T6M7YOxi5fz2cKaVzfCA=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de7a1-401e-00ac-3d7f-574597000000\nTime:2019-08-20T17:46:57.8947784Z" - } - } - }, - { - "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}", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1524153754.2550833" ], - "Content-MD5": [ - "acLZykn1NMEO1oxenbC6dw==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], - "Content-Length": [ - "254" + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "8193e32e-c372-11e9-91af-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:vwJrUdNT+37UkMIrHd04MJDxS8H+Bt9eN/6Du8s5+ms=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D7259665CE7F92\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-MD5": [ - "acLZykn1NMEO1oxenbC6dw==" - ], - "Content-Length": [ - "0" + "\"0x8D75C838694DD6E\"" ] }, "body": { @@ -16904,7 +13364,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 +13373,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "819d3200-c372-11e9-9696-44032c851686" + "b2132738-7ab0-11ea-a856-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:GrHTIYcck903br+PBymwklMeomrK0OqTSeXYDnsHlsk=" + "SharedKey sdkteststore2:/MPvqqv6QWjeW7Rt3BUvxy0T4GPpdERfwcsYYwaNEOA=" ], "Content-Length": [ "0" @@ -16932,27 +13392,27 @@ "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:57 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:8dad9934-601e-0077-38bd-0ee141000000\nTime:2020-04-09T22:23:10.8861025Z" } } }, @@ -16963,7 +13423,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" @@ -16972,113 +13432,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81a507e8-c372-11e9-bacc-44032c851686" + "b21b8b42-7ab0-11ea-9b71-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:smSKYxOG/nW2OQlNWK58MMNO2NPikBLrx/uhIqw4Sr0=" + "SharedKey sdkteststore2:Cg4VI2txGkp5iY+hM2vit4rGvHMYHMVH4YWiAYzFlKw=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de805-401e-00ac-087f-574597000000\nTime:2019-08-20T17:46:58.0669001Z" - } - } - }, - { - "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", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.1117144" ], - "Content-MD5": [ - "BvsOoLG3cYJ873sw8nI4/Q==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], - "Content-Length": [ - "3565" + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "81ae3462-c372-11e9-a5ed-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:d7pt1RTWtfUce12jQQYyo9nnE7orsW5BDmLW6320GGE=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D7259665E89BF1\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-MD5": [ - "BvsOoLG3cYJ873sw8nI4/Q==" - ], - "Content-Length": [ - "0" + "\"0x8D75C8386ADC11E\"" ] }, "body": { @@ -17093,7 +13482,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" @@ -17102,13 +13491,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81b7f852-c372-11e9-a2c4-44032c851686" + "b2250118-7ab0-11ea-956f-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:10 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:sJ0htrNRkNxVYOXFRHhjUglkUW2Y09UfdS+iZdomGOg=" + "SharedKey sdkteststore2:vGfNR0OwHmMYRq/bZkUUUNntzEdDukzPL2p4oxaKc9Y=" ], "Content-Length": [ "0" @@ -17121,27 +13510,27 @@ "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:57 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de865-401e-00ac-567f-574597000000\nTime:2019-08-20T17:46:58.1879853Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9969-601e-0077-63bd-0ee141000000\nTime:2020-04-09T22:23:11.0011839Z" } } }, @@ -17152,7 +13541,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" @@ -17161,43 +13550,46 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81c00e9e-c372-11e9-8e87-44032c851686" + "b22d1764-7ab0-11ea-a20a-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:UlRP30gLyVD7Mw7bMg7Eg74qJ8H+jJVCO9x8Ix8F+fY=" + "SharedKey sdkteststore2:5Sm0B6dscJv+KT7poAryx4FPCOhJjSE6SnLbTrJ23fY=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-error-code": [ - "BlobNotFound" + "Content-Length": [ + "0" + ], + "x-ms-meta-lastmodified": [ + "1572278664.3386257" + ], + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], "x-ms-version": [ "2017-07-29" ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], - "Content-Length": [ - "215" + "ETag": [ + "\"0x8D75C8386C62F8C\"" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de883-401e-00ac-6d7f-574597000000\nTime:2019-08-20T17:46:58.2460268Z" + "string": "" } } }, @@ -17208,7 +13600,7 @@ "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}", "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" @@ -17217,7 +13609,7 @@ "BlockBlob" ], "x-ms-meta-lastmodified": [ - "1566231778.0575619" + "1582559736.597129" ], "Content-MD5": [ "9iVvz/Pf/FsbJv0miSuvzw==" @@ -17229,13 +13621,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81c90f4a-c372-11e9-8b60-44032c851686" + "b2357d18-7ab0-11ea-ae7e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:04WI+EvqlU97Q+P7w/MrRu0A14cAzqJdTzBL5N4Bipc=" + "SharedKey sdkteststore2:j5m8j3oJUHZB2Pxyfr/O6YT1g+JmE1VI109763gSANo=" ] } }, @@ -17245,29 +13637,29 @@ "message": "Created" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259666041824\"" + "Content-MD5": [ + "9iVvz/Pf/FsbJv0miSuvzw==" ], "x-ms-request-server-encrypted": [ "true" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 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==" - ], "Content-Length": [ "0" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:11 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "ETag": [ + "\"0x8D7DCD4966DA2C8\"" ] }, "body": { @@ -17282,7 +13674,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 +13683,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81d2cf48-c372-11e9-8f39-44032c851686" + "b23ef21c-7ab0-11ea-bec3-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:XB6Aa5jJzu0j4BMfQBmzCsliJE1VV971w6N6G2HxNuA=" + "SharedKey sdkteststore2:zRtbzL3Pqj4nJd6sDdwzmL+jm9gayDiAZ4SZ/NhBnDI=" ], "Content-Length": [ "0" @@ -17310,27 +13702,27 @@ "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:57 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:8dad99e0-601e-0077-45bd-0ee141000000\nTime:2020-04-09T22:23:11.1703030Z" } } }, @@ -17341,7 +13733,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" @@ -17350,113 +13742,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81dba8e8-c372-11e9-ab63-44032c851686" + "b246ba54-7ab0-11ea-9599-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:EAhUSZGNzbaJVrU9u6AyrO9mlrk/wixV7l7LLEJbSKA=" + "SharedKey sdkteststore2:GTjBT2WzgmUg1cCfYGXOLF2tJ0tQ+QCAlH6JKkpGRiU=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:57 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de8be-401e-00ac-197f-574597000000\nTime:2019-08-20T17:46:58.4241524Z" - } - } - }, - { - "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}", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.1238391" ], - "Content-MD5": [ - "kPzKWo4J2zRaerzJw2Z2xg==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:26 GMT" ], - "Content-Length": [ - "1140" + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "81e4e49c-c372-11e9-b4ab-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:bISP5Ol4D+TPYD0ta5Ybw17Ebd8GxbauTubj1MKisb4=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D72596661F1F0E\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-MD5": [ - "kPzKWo4J2zRaerzJw2Z2xg==" - ], - "Content-Length": [ - "0" + "\"0x8D75C8386DE76E0\"" ] }, "body": { @@ -17471,7 +13792,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" @@ -17480,13 +13801,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81f05674-c372-11e9-a484-44032c851686" + "b24f1ea6-7ab0-11ea-8abc-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:oyLddcBj+iVceEOZoqE3E9y2bf2OZP1jYzdLZEZGULA=" + "SharedKey sdkteststore2:KNqqIqw23iKKYHFSV00sKJB79zBbEHe1VC7WXZQ0QuM=" ], "Content-Length": [ "0" @@ -17499,27 +13820,27 @@ "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:58 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de8f5-401e-00ac-4e7f-574597000000\nTime:2019-08-20T17:46:58.5572469Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9a01-601e-0077-66bd-0ee141000000\nTime:2020-04-09T22:23:11.2763784Z" } } }, @@ -17530,7 +13851,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" @@ -17539,113 +13860,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "81f86ca2-c372-11e9-a77b-44032c851686" + "b2570eec-7ab0-11ea-922f-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:tnQy9IhNBOzKHrDR7Ott+CpU/7ZUjiCDrKMkr7GybVQ=" + "SharedKey sdkteststore2:chumC61wynLeszs+z6vJohPHOlXq7T4aouy3j8DErXw=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de91a-401e-00ac-707f-574597000000\nTime:2019-08-20T17:46:58.6142873Z" - } - } - }, - { - "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}", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.1388402" ], - "Content-MD5": [ - "rdYsR2RLvOnr9kOYg2y5NQ==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], - "Content-Length": [ - "1117" + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "8201bc02-c372-11e9-9adf-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:bY5Gtj+1Ra4tusu05O2bYhKeXxyAH8Om4nXmhARWVo4=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D72596663C2230\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-MD5": [ - "rdYsR2RLvOnr9kOYg2y5NQ==" - ], - "Content-Length": [ - "0" + "\"0x8D75C8386F7F6E7\"" ] }, "body": { @@ -17660,7 +13910,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 +13919,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "820ac286-c372-11e9-9f17-44032c851686" + "b25f9aee-7ab0-11ea-a1ac-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:LFWBY+5I/pKxw3MmBv+WIQjVyfrOu1ZfCVOo0lDd/IQ=" + "SharedKey sdkteststore2:9WpXd0RPaLwpioS5+BRxDxYgwgVDBmaA6eCBzCWJXzo=" ], "Content-Length": [ "0" @@ -17688,27 +13938,27 @@ "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:58 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:8dad9a3d-601e-0077-17bd-0ee141000000\nTime:2020-04-09T22:23:11.3894579Z" } } }, @@ -17719,7 +13969,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" @@ -17728,113 +13978,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "82130300-c372-11e9-b03b-44032c851686" + "b268265e-7ab0-11ea-a690-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:UioNHQOJD7oL1mMPbk48X5r7euTVzPox7yr4JT2lZbo=" + "SharedKey sdkteststore2:FlGtSfYHITc+l8NwjGvEjmXymOwjJCp2NXcKO9/qg3A=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de95a-401e-00ac-287f-574597000000\nTime:2019-08-20T17:46:58.7884104Z" - } - } - }, - { - "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}", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1524153754.2550833" ], - "Content-MD5": [ - "UJHCaZ8IYHwM3l1BfEkTHQ==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], - "Content-Length": [ - "52" + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "821c4634-c372-11e9-8fe6-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:+tgEQGeVKMlMIhqlmsiu4czySuXJILtsTvXGNrsXZNA=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D72596665665A6\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-MD5": [ - "UJHCaZ8IYHwM3l1BfEkTHQ==" - ], - "Content-Length": [ - "0" + "\"0x8D75C8387101728\"" ] }, "body": { @@ -17849,7 +14028,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" @@ -17858,13 +14037,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "822517cc-c372-11e9-870a-44032c851686" + "b271000a-7ab0-11ea-b2e6-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:CZn13JpC0XnXhV+3xEFUlxobODKO24NbyKJobG3qpOg=" + "SharedKey sdkteststore2:h8mk/Yjwrh9+0dmrcgvOIeVOkEVupfNsCUaFCqTUjJw=" ], "Content-Length": [ "0" @@ -17877,27 +14056,27 @@ "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:58 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8de97a-401e-00ac-407f-574597000000\nTime:2019-08-20T17:46:58.9054928Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9a67-601e-0077-3ebd-0ee141000000\nTime:2020-04-09T22:23:11.4965336Z" } } }, @@ -17908,7 +14087,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" @@ -17917,113 +14096,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "822d99ca-c372-11e9-a34e-44032c851686" + "b2787ac0-7ab0-11ea-8a57-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:JPdXM45kJJwrdzLYkONNHPwo2NkL9KECdauuLyTdBtA=" + "SharedKey sdkteststore2:RmzQm/Q6CUbgT8usyk7BieOTT+E+2OKrzX1lHhRjd04=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de992-401e-00ac-547f-574597000000\nTime:2019-08-20T17:46:58.9605317Z" - } - } - }, - { - "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}", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.1398392" ], - "Content-MD5": [ - "Vx+oh7HSZQSJ/EMS4CWYdQ==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], - "Content-Length": [ - "1685" + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "82367d46-c372-11e9-bd92-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:D6j6/po+OnhhMT07uTIVXop0EhsKI/dWKJtHZqwCsKE=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D725966671457D\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:59 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==" - ], - "Content-Length": [ - "0" + "\"0x8D75C83872CA4FC\"" ] }, "body": { @@ -18038,7 +14146,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 +14155,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "823fdf88-c372-11e9-a487-44032c851686" + "b281558a-7ab0-11ea-a8ff-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:ekw/OceRkjtyG7lgDjjFg7Mp8gFyWI+pNVvB30bYlT8=" + "SharedKey sdkteststore2:n9+BzTaCvG1yhvyXX5uzvMf6y4rjIVebFpzG59QHcgI=" ], "Content-Length": [ "0" @@ -18066,27 +14174,27 @@ "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:58 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:10 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:8dad9a9e-601e-0077-6ebd-0ee141000000\nTime:2020-04-09T22:23:11.6076125Z" } } }, @@ -18097,7 +14205,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" @@ -18106,113 +14214,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8248b924-c372-11e9-a7f3-44032c851686" + "b2899306-7ab0-11ea-85cb-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:dhBH8ZtJZrANHlnhWRCMLOfN9vaKXaWHM7Thnoxr9Jc=" + "SharedKey sdkteststore2:B7J32UthCU5ipBHm8evLQ+iPipgZv72V2HnBcuhj510=" ] } }, "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" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8de9ea-401e-00ac-1e7f-574597000000\nTime:2019-08-20T17:46:59.1416607Z" - } - } - }, - { - "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}", - "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" + "0" ], "x-ms-meta-lastmodified": [ "1551725410.1458392" ], - "Content-MD5": [ - "sLKLnAZ4LgaLVKq3l8hvhw==" + "Last-Modified": [ + "Tue, 29 Oct 2019 15:20:27 GMT" ], - "Content-Length": [ - "1675" + "Date": [ + "Thu, 09 Apr 2020 22:23:11 GMT" ], - "x-ms-version": [ - "2017-07-29" - ], - "x-ms-client-request-id": [ - "82525618-c372-11e9-84ff-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:EARC47wmD6K78Xf2aLF74ONWXcvPVO/8Ay9A4EALlxM=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { "x-ms-version": [ "2017-07-29" ], "ETag": [ - "\"0x8D72596668D8528\"" - ], - "x-ms-request-server-encrypted": [ - "true" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:59 GMT" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-MD5": [ - "sLKLnAZ4LgaLVKq3l8hvhw==" - ], - "Content-Length": [ - "0" + "\"0x8D75C838747D306\"" ] }, "body": { @@ -18227,7 +14264,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" @@ -18236,13 +14273,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "825c4118-c372-11e9-b559-44032c851686" + "b2924580-7ab0-11ea-801d-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:803MP01txGMeSWWdWQYX6fRajrQU2TYHk4/T8wPPipQ=" + "SharedKey sdkteststore2:kkTKoHcUzPuznlRVzbzB0PWOATdUO/5EZ9WfKA57E+o=" ], "Content-Length": [ "0" @@ -18255,27 +14292,27 @@ "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:58 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:11 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "body": { - "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:1b8dea0f-401e-00ac-407f-574597000000\nTime:2019-08-20T17:46:59.2627459Z" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:8dad9ac5-601e-0077-14bd-0ee141000000\nTime:2020-04-09T22:23:11.7156885Z" } } }, @@ -18286,7 +14323,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" @@ -18295,43 +14332,46 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "82640948-c372-11e9-bd15-44032c851686" + "b29a0f00-7ab0-11ea-9da6-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:kRH7irBX3VIpPr0DdP/H18gqyCrnWUTk6ugdwfUfmYo=" + "SharedKey sdkteststore2:90lFVqKZQAzD8vSJg3E4yZM6hgZ0BbtYsJ6Vc+to2TM=" ] } }, "response": { "status": { - "code": 404, - "message": "The specified blob does not exist." + "code": 200, + "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-error-code": [ - "BlobNotFound" + "Content-Length": [ + "0" + ], + "x-ms-meta-lastmodified": [ + "1578956434.9124143" + ], + "Last-Modified": [ + "Mon, 13 Jan 2020 23:23:55 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:11 GMT" ], "x-ms-version": [ "2017-07-29" ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:58 GMT" - ], - "Content-Length": [ - "215" + "ETag": [ + "\"0x8D7987FA8C292FF\"" ] }, "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:1b8dea19-401e-00ac-477f-574597000000\nTime:2019-08-20T17:46:59.3217877Z" + "string": "" } } }, @@ -18342,7 +14382,7 @@ "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}", "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" @@ -18351,7 +14391,7 @@ "BlockBlob" ], "x-ms-meta-lastmodified": [ - "1566231778.058535" + "1582559736.617499" ], "Content-MD5": [ "8QUSX+KCWV/drjPRRW4cpA==" @@ -18363,13 +14403,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "826d1e1a-c372-11e9-9e88-44032c851686" + "b2a2e878-7ab0-11ea-a823-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" + "Thu, 09 Apr 2020 22:23:11 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:i8cXonXbgca6hMBplsXz3LdRX5FXBYKBXy+ydBhdLPM=" + "SharedKey sdkteststore2:F6+ny6aiCyYm1y3pe0qc/cwv8TbsVWTBLwuAmd7ilXw=" ] } }, @@ -18379,29 +14419,29 @@ "message": "Created" }, "headers": { - "x-ms-version": [ - "2017-07-29" - ], - "ETag": [ - "\"0x8D7259666A88C11\"" + "Content-MD5": [ + "8QUSX+KCWV/drjPRRW4cpA==" ], "x-ms-request-server-encrypted": [ "true" ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:46:59 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==" - ], "Content-Length": [ "0" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:11 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:11 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "ETag": [ + "\"0x8D7DCD496DAD086\"" ] }, "body": { @@ -18416,7 +14456,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-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/7.0.0 Azure-SDK-For-Python" ], "Accept-Encoding": [ "gzip, deflate" @@ -18428,10 +14468,10 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "x-ms-client-request-id": [ - "82998366-c372-11e9-9e3b-44032c851686" + "b2ddcd7a-7ab0-11ea-bc09-44032c851686" ], "accept-language": [ "en-US" @@ -18444,40 +14484,40 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "content-length": [ - "2729" + "2820" + ], + "Vary": [ + "Accept-Encoding" ], "x-ms-original-request-ids": [ - "3b657330-ec08-41c6-8ef2-7e18f8e8b064", - "4f86fc36-4ea9-4941-b558-9768b236889e" + "9f3df1c5-8c16-49e1-a868-4f81b80c1a7e", + "a7e25f12-f086-42c5-8e17-aeaa01cfc3bc" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:12 GMT" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], - "Pragma": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, "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/\"}}},{\"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},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"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-01-09T20:16:08.6234908Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}]}" } } }, @@ -18488,7 +14528,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 +14540,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTY2MzIwNzE4LCJuYmYiOjE1NjYzMjA3MTgsImV4cCI6MTU2NjMyNDYxOCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVVRQXUvOE1BQUFBT0lvTEVUclJGWnErQmFoaVNrVmhNNXR5QzYwSDZBSDNlZG5vMGJQbTFRYUtvV3Rva01QaDdiZjIvM0VFZ0NHbmo0UFFWY3FHaXdVbkFQYjRONmZwZ1E9PSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjEzMS4xMDcuMTU5LjIyIiwibmFtZSI6IkJyYW5kb24gS2xlaW4iLCJvaWQiOiIyNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctMzA4NjkxNzQiLCJwdWlkIjoiMTAwMzAwMDBBOTE3Nzg5RSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IjMtaVZMWlVxZzhyWVVFNHlLRXZPSktES0N2Z1I0SVJvQXJhVzlRWmJNRkEiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInVwbiI6ImJya2xlaW5AbWljcm9zb2Z0LmNvbSIsInV0aSI6IlZkQ05pT2w3Z0UyWkw3QTVBMFFPQUEiLCJ2ZXIiOiIxLjAifQ.XjlVAUievRf_e8bKWsAY7Ca1e2RR2FIB4PpXBKa6Vzy5xfZ_c33OFQWkB610FXt-E86jl61B0siTx1aVQQbXt9iAdqcfb27MKeDX_sXi_BjTUIA6xgfRm1CnG8vFq_GpLPy0GIgzuQkaPqPifXIz39SzMavmrLaAp5Ct1j09e9yXwcIxLhSRg_WibgqY22tbcremd_-y9qZex3xEzc798Nz62_AADDKgBjivlwxGX5TpOiEZxhNhD6pS4nlTJ4eiyS7mFRC1nIGB1SMZrgnWjQ5dRcib_7krgdW_4J-kqA-Tg4FGo8aPFBxjMADxfCOF04W2KykUZpLfF_9c2HZGoQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "83058346-c372-11e9-90b3-44032c851686" + "b326949e-7ab0-11ea-8774-44032c851686" ], "accept-language": [ "en-US" @@ -18522,38 +14562,38 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Vary": [ - "Accept-Encoding" - ], - "Date": [ - "Tue, 20 Aug 2019 17:46:59 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Accept-Encoding" + ], "Transfer-Encoding": [ "chunked" ], + "Date": [ + "Thu, 09 Apr 2020 22:23:12 GMT" + ], + "Expires": [ + "-1" + ], "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Pragma": [ - "no-cache" + "Content-Type": [ + "application/json" ], "content-length": [ "288" @@ -18571,7 +14611,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 +14620,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "8342107a-c372-11e9-9429-44032c851686" + "b3498666-7ab0-11ea-a5ad-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" + "Thu, 09 Apr 2020 22:23:12 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:vTeL6mjkIJba50FLFSeujlnzlhMOEpcAd9H/4SmCVII=" + "SharedKey sdkteststore2:eisqSJuaa6WljhVoWmQZHvHyMwyJCsLv5ZvGSMZbunc=" ] } }, @@ -18596,12 +14636,6 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/xml" - ], - "x-ms-version": [ - "2017-07-29" - ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], @@ -18609,11 +14643,17 @@ "chunked" ], "Date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" + "Thu, 09 Apr 2020 22:23:12 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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 +14664,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 +14673,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "836bfcc8-c372-11e9-8fca-44032c851686" + "b36bdb4a-7ab0-11ea-9d44-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:47:01 GMT" + "Thu, 09 Apr 2020 22:23:13 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:b0bewNaXwslaFD2Ok2av6z7YJqQSlDTVLu9HAmesEAI=" + "SharedKey sdkteststore2:1KJZA0UsbGK/ssP0X7HmCIsCVpUJzdf66todeawOxx0=" ], "Content-Length": [ "0" @@ -18652,38 +14692,38 @@ "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:47:00 GMT" - ], "Content-Length": [ "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:12 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" ] }, "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:ff7a8c5c-401e-00a7-69bd-0e5de3000000\nTime:2020-04-09T22:23:13.1409418Z" } } }, { "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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -18695,13 +14735,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "8374fd80-c372-11e9-baed-44032c851686" + "b3737dae-7ab0-11ea-9c8b-44032c851686" ], "accept-language": [ "en-US" @@ -18720,38 +14760,38 @@ "message": "Created" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + "DataServiceVersion": [ + "3.0" ], - "Date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "ETag": [ - "0x8D7259667CE5072" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:47:01 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "request-id": [ + "cf534f71-b128-4e6a-9cd6-c161d73b1044" ], "Location": [ "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "request-id": [ - "fa5e7cfa-07c4-43e0-8fec-8d1349635ceb" + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:13 GMT" ], - "DataServiceVersion": [ - "3.0" + "Date": [ + "Thu, 09 Apr 2020 22:23:13 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1" + ], + "ETag": [ + "0x8D7DCD49801EAE3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { @@ -18762,11 +14802,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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=MjF5Rn54TChEEfNL%2BmVNGKgRpgp/SsWqyl8zFxHKPcU%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=fZ036Xh2L1jMO9JpT2JdQYx009NzXQVRwJ3wVsip8%2BU%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=Mx103HOGRv9nF9GIRX7J9XL4xxN7gZAOQRIB8Yo78wM%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=KqvBTaTar1P9CnLTTKwlVgn%2BOXN0BC%2BIk6tK9/10QIQ%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=GhqAtasSDCItVaILHz3leu4J00z1Pj4U%2B2mjcREoPKs%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=roxQ%2Bc8SkgWh6wqZ0jVU1pX5f9%2BGhut9Zf7Hb3C7krw%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=g7/O/%2BlQv1tgPB23komUiXYjaOiVfx0m5iRnSy8wORE%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=X%2BCEFK%2BE8YZMuUBtBYFlzo2o%2B%2BSUUFtntAb39rM6Ci0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=A7SbVeyaxyyLOIOL29qAIE2C%2BL1ANlS0b%2BPvv3p7mcQ%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=WvXCmDiKievYSDAE9fTJtoynDMZ90vAuMobfCeHk2Kg%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=WfjT04grnSwJ7sQbqXUfXHAdPcVsPMJ%2B/h%2BJ1e1R4zs%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=LAaRLR4ZLmgOIG6jEmBBvGLVGBNUwNpByxpOpiWgXAE%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=4acnMdjoTH2ql3lyjtqgRvG/6BxsAUnuX4HOYjRGSeQ%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=0iA3Nsl5lZY8YQn4jK3myROacTNicgx9vgCFGaoSyj8%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=6N9tkOi3yYBDaTzw09/VCjW2Ta7QITTmOoIZhV0Visk%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=XtSS1uEwBpBWKZWWCU%2B0OjIjfP1Q2ep9%2BgYJNXYAzrA%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=5o8MuV9294IKkWi/NgeK9Pp02HyuWt5LKHcRXuJAsN4%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=r&sv=2017-07-29&sr=b&sig=Ng%2Bf28RWhyfpH4DFvF5ZOSNdqy%2BRsVtL5NOttjuuYyA%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-04-09T22%3A08%3A13Z&se=2020-04-16T22%3A23%3A13Z&sp=w&sv=2017-07-29&sr=c&sig=yIVo6t2vZ6wNIJATgbujRwYehVQxSSr1zQ%2BNOa1M8h0%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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -18778,19 +14818,19 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "839ca99e-c372-11e9-9861-44032c851686" + "b3d41930-7ab0-11ea-a1ce-44032c851686" ], "accept-language": [ "en-US" ], "Content-Length": [ - "14598" + "14654" ] } }, @@ -18803,41 +14843,41 @@ "Content-Type": [ "application/json;odata=minimalmetadata" ], - "Date": [ - "Tue, 20 Aug 2019 17:47:00 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "655d112f-a224-4283-bec3-c78b1aebd4eb" + "067fee8e-4b83-4de2-9bc5-d9f936f2ec33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:13 GMT" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "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\":\"0x8D7DCD4982A63A1\",\"lastModified\":\"2020-04-09T22:23:14.0306849Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/merge\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"16\",\"eTag\":\"0x8D7DCD4982BE908\",\"lastModified\":\"2020-04-09T22:23:14.0406536Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"7\",\"eTag\":\"0x8D7DCD4983314CE\",\"lastModified\":\"2020-04-09T22:23:14.0876494Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"15\",\"eTag\":\"0x8D7DCD49834E934\",\"lastModified\":\"2020-04-09T22:23:14.0996404Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"13\",\"eTag\":\"0x8D7DCD498366FD0\",\"lastModified\":\"2020-04-09T22:23:14.10964Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"9\",\"eTag\":\"0x8D7DCD49837A856\",\"lastModified\":\"2020-04-09T22:23:14.1176406Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"17\",\"eTag\":\"0x8D7DCD498378139\",\"lastModified\":\"2020-04-09T22:23:14.1166393Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"14\",\"eTag\":\"0x8D7DCD49837A856\",\"lastModified\":\"2020-04-09T22:23:14.1176406Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/14\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"10\",\"eTag\":\"0x8D7DCD4983844B0\",\"lastModified\":\"2020-04-09T22:23:14.1216432Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"8\",\"eTag\":\"0x8D7DCD49839CB18\",\"lastModified\":\"2020-04-09T22:23:14.1316376Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"3\",\"eTag\":\"0x8D7DCD4983A6778\",\"lastModified\":\"2020-04-09T22:23:14.1356408Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/3\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"0\",\"eTag\":\"0x8D7DCD4983A8E8A\",\"lastModified\":\"2020-04-09T22:23:14.136641Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"6\",\"eTag\":\"0x8D7DCD4983A8E8A\",\"lastModified\":\"2020-04-09T22:23:14.136641Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"5\",\"eTag\":\"0x8D7DCD4983A1958\",\"lastModified\":\"2020-04-09T22:23:14.1336408Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"1\",\"eTag\":\"0x8D7DCD4983A8E8A\",\"lastModified\":\"2020-04-09T22:23:14.136641Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"4\",\"eTag\":\"0x8D7DCD4983A4063\",\"lastModified\":\"2020-04-09T22:23:14.1346403Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"11\",\"eTag\":\"0x8D7DCD4983AB591\",\"lastModified\":\"2020-04-09T22:23:14.1376401Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"2\",\"eTag\":\"0x8D7DCD498382744\",\"lastModified\":\"2020-04-09T22:23:14.12089Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"12\",\"eTag\":\"0x8D7DCD4983ADCA5\",\"lastModified\":\"2020-04-09T22:23:14.1386405Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3/tasks/12\"\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/8.0.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -18849,13 +14889,13 @@ "keep-alive" ], "Authorization": [ - "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCIsImtpZCI6ImllX3FXQ1hoWHh0MXpJRXN1NGM3YWNRVkduNCJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU2NjMyMDcyNCwibmJmIjoxNTY2MzIwNzI0LCJleHAiOjE1NjYzMjQ2MjQsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFVUUF1LzhNQUFBQUJmSVhrS1pUNXN2dGVyVzhpeVgyQ1JCODlJc2dTVFJtZFdPeHR0aFNMVXZzZEtwd0YxTmloNjFtcEdMYjRnNmxES01Md0lMTmtBSkhCblBCSithdU5BPT0iLCJhbXIiOlsicnNhIiwibWZhIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZGV2aWNlaWQiOiIxZDUwYzVkZi1mZDAxLTRhNjQtODg1OS04NDcyMzc1OGEyNDQiLCJmYW1pbHlfbmFtZSI6IktsZWluIiwiZ2l2ZW5fbmFtZSI6IkJyYW5kb24iLCJpcGFkZHIiOiIxMzEuMTA3LjE1OS4yMiIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJaTnRJSW14ajVlSk9TbnJRTXh1UTFGeGVPOHhiYnVhQmFrU0FYYjRqRE84IiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiIzcU02WE1IMS1VeTc1OGREc3VFUUFBIiwidmVyIjoiMS4wIn0.6wF-URC5pN8R6lYNu887Vqul47X3Kpm5g_d0S6tYjtW42KcCv95dvXiWr3_xQ62vDBHLekWJUFTDt-JIa-7Jothw-k4LGIe4OyT3c5VeLMupH5fepX8puj3cfxUAubdUIwq3nw8XHksD979tOyFh_lOCyHPNs69UgpQUufHkX-262eCQjlQoXTigdmxd4uhW7ybcLKxTyIh16K8JI3tHU6lQQDeKGDVqgkXTWqAHWhlHiaZ8SYsfjV07lLS-YnBmjyM16WHnDCaUwDy326rKfbdsAS2r6br2NERDpX_yoq01rFxP1mzQrnokb7sAJBQbV5dqalO3kU0JwvcGwhO3hQ" + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL2JhdGNoLmNvcmUud2luZG93cy5uZXQvIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTU4NjQ3MDM0NSwibmJmIjoxNTg2NDcwMzQ1LCJleHAiOjE1ODY0NzQyNDUsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNzI0NDkzNS1hNGI5LTQwYTQtYTI3Mi00Mjk0MmI2N2VjZjEvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhQQUFBQThHaUc4ZHZFWkFtRGhOVUFsK0pRc3BIV3FJempRN2N6SFAyYU1pMWc5ZUxBMk5CNkdZeG5Qd1M5U3I3UDZiWFB3ODlIR2Y3TU1ycEQ0eDZvakQzNzk5YkZCbjBnZVY1NWRwWEFrNWRwU0hZPSIsImFtciI6WyJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjFkNTBjNWRmLWZkMDEtNGE2NC04ODU5LTg0NzIzNzU4YTI0NCIsImZhbWlseV9uYW1lIjoiS2xlaW4iLCJnaXZlbl9uYW1lIjoiQnJhbmRvbiIsImlwYWRkciI6IjE2Ny4yMjAuMi4yMTciLCJuYW1lIjoiQnJhbmRvbiBLbGVpbiIsIm9pZCI6IjI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy0zMDg2OTE3NCIsInB1aWQiOiIxMDAzMDAwMEE5MTc3ODlFIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiWk50SUlteGo1ZUpPU25yUU14dVExRnhlTzh4YmJ1YUJha1NBWGI0akRPOCIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXBuIjoiYnJrbGVpbkBtaWNyb3NvZnQuY29tIiwidXRpIjoieDVuVzQ5bkZXRWlRTzAzeUN2VVlBQSIsInZlciI6IjEuMCJ9.GoaFg1zDbZgqRtbfsdfiVAwq-5k4QYUXOIeWgJ26-GR0GD8mDabqdbzBtquSOHnRgA_Zkxo6BitDMCGHG2LoPT_BaSlvKf9iSrHx2FJ3nsePf2kIdHCMkZ1Me-nq0lp4MLz8jtAU8oHR6PFnQPOuqcQYoCA47j7Vfm3HHNDYyyWJxXk25Te0sVjIYFK5hqtKHfoXF417EnLX7VDEua4uscYx-Q36eUnzijh8YMM2-tK3xxwhbG0_sCJvfFLkgInHbRjXJmeYBh7ab1cpKa1h0fr_zhnaGelyL7Sscoqy_AIAUCIEz1K9BlMweSMhXCVa0xfOR1XPN-WRv1mxawpUbw" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "client-request-id": [ - "83e2eb8c-c372-11e9-ba0c-44032c851686" + "b412382c-7ab0-11ea-89bb-44032c851686" ], "accept-language": [ "en-US" @@ -18871,35 +14911,35 @@ "message": "OK" }, "headers": { - "DataServiceId": [ - "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3" - ], - "Date": [ - "Tue, 20 Aug 2019 17:47:01 GMT" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "ETag": [ - "0x8D72596681F6F76" + "DataServiceVersion": [ + "3.0" ], "request-id": [ - "b41e04a0-98b0-441e-9c92-ae47a212604c" - ], - "Last-Modified": [ - "Tue, 20 Aug 2019 17:47:01 GMT" + "a8cc5814-e7cc-40c3-930d-cf840990662e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Content-Type-Options": [ "nosniff" ], - "DataServiceVersion": [ - "3.0" + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Apr 2020 22:23:14 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:23:13 GMT" + ], + "DataServiceId": [ + "https://sdktest2.westcentralus.batch.azure.com/jobs/helloworld-job3" + ], + "ETag": [ + "0x8D7DCD4984C5549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "body": { diff --git a/tests/recordings/test_batch_upload_live.yaml b/tests/recordings/test_batch_upload_live.yaml index d159166..65d4bcb 100644 --- a/tests/recordings/test_batch_upload_live.yaml +++ b/tests/recordings/test_batch_upload_live.yaml @@ -8,7 +8,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-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/7.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 eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "x-ms-client-request-id": [ - "620e0246-c36d-11e9-8d5d-44032c851686" + "e0f4b7f6-7aaf-11ea-944b-44032c851686" ], "accept-language": [ "en-US" @@ -36,48 +36,48 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "ETag": [ - "\"0x8D719F74B1A7775\"" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Vary": [ "Accept-Encoding" ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Jan 2020 20:16:08 GMT" + ], + "Expires": [ + "-1" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:22 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "\"0x8D79540C37A571C\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 05 Aug 2019 22:50:20 GMT" - ], "content-length": [ - "2074" + "2165" ] }, "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\":\"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}],\"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-01-09T20:16:08.6234908Z\"},\"poolAllocationMode\":\"BatchService\"},\"tags\":{\"rawr\":\"test\"}}" } } }, @@ -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 eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" ], "Content-Type": [ "application/json; charset=utf-8" ], "x-ms-client-request-id": [ - "635f8cc8-c36d-11e9-8f2e-44032c851686" + "e2796328-7aaf-11ea-bb9a-44032c851686" ], "accept-language": [ "en-US" @@ -122,39 +122,39 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "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" - ], - "Content-Type": [ - "application/json" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:19 GMT" - ], "Pragma": [ "no-cache" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Accept-Encoding" + ], "Transfer-Encoding": [ "chunked" ], + "Date": [ + "Thu, 09 Apr 2020 22:17:22 GMT" + ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json" + ], "content-length": [ "288" ] @@ -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,365 +180,13 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "639a9b26-c36d-11e9-bd96-44032c851686" + "e2aa8542-7aaf-11ea-a3bb-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" + "Thu, 09 Apr 2020 22:17:22 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:v7Qz3XrJDiV1hh2gPzfDRZpEwaXRSQlIVDDYAJfIxMQ=" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "ETag": [ - "\"0x8D7259147EDD103\"" - ], - "Content-Length": [ - "0" - ], - "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": "" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-cli-batch-extensions-live-tests/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": [ - "63bda924-c36d-11e9-9f01-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:5vEpgDf9i7CfmjL971k17Nc+Pk88wELnAFKqF2GpHEY=" - ] - } - }, - "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-Type": [ - "application/xml" - ], - "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" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "ETag": [ - "\"0x8D7259147FB9423\"" - ], - "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" - ] - }, - "body": { - "string": "" - } - } - }, - { - "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", - "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": [ - "63f757ec-c36d-11e9-abd6-44032c851686" - ], - "accept-language": [ - "en-US" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "ETag": [ - "\"0x8D719F74B1A7775\"" - ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "-1" - ], - "Last-Modified": [ - "Mon, 05 Aug 2019 22:50:20 GMT" - ], - "content-length": [ - "2074" - ] - }, - "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\"}}" - } - } - }, - { - "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": [ - "64348c5a-c36d-11e9-bba3-44032c851686" - ], - "accept-language": [ - "en-US" - ], - "Content-Length": [ - "0" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "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" - ], - "Content-Type": [ - "application/json" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "-1" - ], - "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-cli-batch-extensions-live-tests?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": [ - "646d2eb6-c36d-11e9-94af-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:1isvSPc/8yB/u2FpErFqYsn4rl5T9zNv2dKWniT5ZqY=" + "SharedKey sdkteststore2:ZKbDj17QzYTnwgsyT2TGTlcN4NTz2tdR+9t/rbb0X28=" ], "Content-Length": [ "0" @@ -551,27 +199,308 @@ "message": "The specified container already exists." }, "headers": { + "x-ms-error-code": [ + "ContainerAlreadyExists" + ], "Server": [ "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" ], + "Content-Length": [ + "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:22 GMT" + ], "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" + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:d0666f9a-401e-0024-26bc-0efd4e000000\nTime:2020-04-09T22:17:23.0583640Z" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-cli-batch-extensions-live-tests/foo.txt?comp=metadata", + "body": null, + "headers": { + "User-Agent": [ + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" + ], + "Connection": [ + "keep-alive" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-client-request-id": [ + "e2c909a6-7aaf-11ea-bb6c-44032c851686" + ], + "x-ms-date": [ + "Thu, 09 Apr 2020 22:17:23 GMT" + ], + "Authorization": [ + "SharedKey sdkteststore2:i+D7Ab+o1/VOBTwfYx6hcAq+CtPcA7gSgGIh7Vqv/ng=" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + ], + "Content-Length": [ + "0" + ], + "x-ms-meta-lastmodified": [ + "1524153754.2560813" + ], + "Last-Modified": [ + "Tue, 19 Nov 2019 21:11:03 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:22 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "ETag": [ + "\"0x8D76D34FC8AD656\"" + ] + }, + "body": { + "string": "" + } + } + }, + { + "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", + "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-mgmt-batch/7.0.0 Azure-SDK-For-Python" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" + ], + "x-ms-client-request-id": [ + "e2f535ac-7aaf-11ea-b2c6-44032c851686" + ], + "accept-language": [ + "en-US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Accept-Encoding" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Last-Modified": [ + "Thu, 09 Jan 2020 20:16:08 GMT" + ], + "Expires": [ + "-1" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:23 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "\"0x8D79540C37A571C\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "content-length": [ + "2165" + ] + }, + "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},{\"name\":\"standardNVSv3Family\",\"coreQuota\":0},{\"name\":\"standardHBrsv2Family\",\"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-01-09T20:16:08.6234908Z\"},\"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.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" + ], + "Accept": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "Authorization": [ + "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSIsImtpZCI6IllNRUxIVDBndmIwbXhvU0RvWWZvbWpxZmpZVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNTg2NDcwMzQwLCJuYmYiOjE1ODY0NzAzNDAsImV4cCI6MTU4NjQ3NDI0MCwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzI3MjQ0OTM1LWE0YjktNDBhNC1hMjcyLTQyOTQyYjY3ZWNmMS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFBBQUFBZHdvK3AzUnJFOTdneHdRMnNMdnEzY3FjZmhaOUZic3J3STFQVVNYa2FYeFJabGxITGgrUW05Wk8vektad1JSdXFUd0lFUDdNSnFuWnIzcmRzQ3BTMTVxM2o3K3AxOC9JWHFlSGNaSDVNalU9IiwiYW1yIjpbIndpYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWQ1MGM1ZGYtZmQwMS00YTY0LTg4NTktODQ3MjM3NThhMjQ0IiwiZmFtaWx5X25hbWUiOiJLbGVpbiIsImdpdmVuX25hbWUiOiJCcmFuZG9uIiwiaXBhZGRyIjoiMTY3LjIyMC4yLjIxNyIsIm5hbWUiOiJCcmFuZG9uIEtsZWluIiwib2lkIjoiMjcyNDQ5MzUtYTRiOS00MGE0LWEyNzItNDI5NDJiNjdlY2YxIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTMwODY5MTc0IiwicHVpZCI6IjEwMDMwMDAwQTkxNzc4OUUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiIzLWlWTFpVcWc4cllVRTR5S0V2T0pLREtDdmdSNElSb0FyYVc5UVpiTUZBIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJicmtsZWluQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJYSUxBa2JkcmNFR0stV1FaNjNVYUFBIiwidmVyIjoiMS4wIn0.Ho9A8Zj_Vi7To0Q6iz3pHG2zSbhaTFvGOTevChRPxWrQ8_FsIcMnKnI0ipklfvSpiRx-ePfp5KUXSr220AAk9M_CPavfx3bMPIPj6yMsoLhHOYkM0RyfKe0zuZImSFS-DDH_oCX9_ouN-u6MtpC5wu7f-v8WTED0XigDFp8ngoHRZB20dkUcYHQajdmVxNKtaD0lVyA48gaTmndsAOROO_7fOTQ-QM19uXjICuPRwKMPOsYZo_wPtiAtkRZknzT7evr6W8p1zLzIKF6qQMpg7F6Xpn7Fxfrxv4eQsF93a2pzinVsP-rTnWpysElOoJxDl_YVl4RgG6aHBYHYIZnx5w" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-client-request-id": [ + "e340fbb8-7aaf-11ea-afc6-44032c851686" + ], + "accept-language": [ + "en-US" + ], + "Content-Length": [ + "0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Accept-Encoding" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:24 GMT" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Type": [ + "application/json" + ], + "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-cli-batch-extensions-live-tests?restype=container", + "body": null, + "headers": { + "User-Agent": [ + "Azure-Storage/1.1.0-1.1.0 (Python CPython 3.7.3; Windows 10)" + ], + "Connection": [ + "keep-alive" + ], + "x-ms-version": [ + "2017-07-29" + ], + "x-ms-client-request-id": [ + "e376ee5c-7aaf-11ea-a48b-44032c851686" + ], + "x-ms-date": [ + "Thu, 09 Apr 2020 22:17:24 GMT" + ], + "Authorization": [ + "SharedKey sdkteststore2:FJrzmdlNdegpPa6MvTlcvY/360djzxJFZ28f/bBCV3M=" + ], + "Content-Length": [ + "0" + ] + } + }, + "response": { + "status": { + "code": 409, + "message": "The specified container already exists." + }, + "headers": { + "x-ms-error-code": [ + "ContainerAlreadyExists" + ], + "Server": [ + "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" + ], + "Content-Length": [ + "230" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:23 GMT" + ], + "x-ms-version": [ + "2017-07-29" + ], + "Content-Type": [ + "application/xml" + ] + }, + "body": { + "string": "\ufeffContainerAlreadyExistsThe specified container already exists.\nRequestId:5d013569-601e-0092-2cbc-0ef3b6000000\nTime:2020-04-09T22:17:24.3767629Z" } } }, @@ -582,7 +511,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" @@ -591,113 +520,42 @@ "2017-07-29" ], "x-ms-client-request-id": [ - "64877314-c36d-11e9-b7df-44032c851686" + "e3926a50-7aaf-11ea-b97e-44032c851686" ], "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" + "Thu, 09 Apr 2020 22:17:24 GMT" ], "Authorization": [ - "SharedKey sdkteststore2:aAHSeQqJMQfy81sMSEeHBMNxvc4B5Sq9dWqWou4q/7M=" + "SharedKey sdkteststore2:inzjNigqBvBvvjzu9vz5dc6zwbg9MZOAJvUHP+6DciU=" ] } }, "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" - ], - "Date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Content-Length": [ - "215" - ] - }, - "body": { - "string": "\ufeffBlobNotFoundThe specified blob does not exist.\nRequestId:2ba5f090-801e-00d7-677a-572e27000000\nTime:2019-08-20T17:10:21.7162882Z" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sdkteststore2.blob.core.windows.net/fgrp-cli-batch-extensions-live-tests/test/data/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": [ - "648e5078-c36d-11e9-bd72-44032c851686" - ], - "x-ms-date": [ - "Tue, 20 Aug 2019 17:10:21 GMT" - ], - "Authorization": [ - "SharedKey sdkteststore2:CA4y9UdmvqQCSTVMsl3UlY5NEZN/hlYLMW8pBl8xt04=" - ] - } - }, - "response": { - "status": { - "code": 201, - "message": "Created" - }, - "headers": { - "x-ms-request-server-encrypted": [ - "true" - ], - "Server": [ - "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0" - ], - "ETag": [ - "\"0x8D7259148C5E662\"" - ], "Content-Length": [ "0" ], - "Content-MD5": [ - "xMpCOKC5I4INzFCab3WEmw==" + "x-ms-meta-lastmodified": [ + "1524153754.2560813" + ], + "Last-Modified": [ + "Tue, 19 Nov 2019 21:11:05 GMT" + ], + "Date": [ + "Thu, 09 Apr 2020 22:17:23 GMT" ], "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" + "ETag": [ + "\"0x8D76D34FD38C1F0\"" ] }, "body": {