diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json index 55aca92ce685..07c6759044a8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "BatchService", - "version": "2018-12-01.8.0", + "version": "2019-06-01.9.0", "description": "A client for issuing REST requests to the Azure Batch service.", "x-ms-code-generation-settings": { "name": "BatchServiceClient" @@ -430,7 +430,7 @@ } } }, - "/nodeagentskus": { + "/supportedimages": { "get": { "tags": [ "Accounts" @@ -438,11 +438,11 @@ "x-ms-pageable": { "nextLinkName": "odata.nextLink" }, - "operationId": "Account_ListNodeAgentSkus", + "operationId": "Account_ListSupportedImages", "x-ms-examples": { - "Account list node agent skus": { "$ref": "./examples/AccountListNodeAgentSkus.json" } + "Account list node agent skus": { "$ref": "./examples/AccountListSupportedImages.json" } }, - "summary": "Lists all node agent SKUs supported by the Azure Batch service.", + "summary": "Lists all Virtual Machine Images supported by the Azure Batch service.", "x-ms-request-id": "request-id", "parameters": [ { @@ -450,7 +450,7 @@ "in": "query", "required": false, "type": "string", - "description": "An OData $filter clause. For more information on constructing this filter, see https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-node-agent-skus.", + "description": "An OData $filter clause. For more information on constructing this filter, see https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-support-images.", "x-ms-parameter-grouping": { "postfix": "Options" } @@ -543,9 +543,9 @@ "format": "date-time-rfc1123" } }, - "description": "A response containing the list of node agent SKUs.", + "description": "A response containing the list of supported Virtual Machine Images.", "schema": { - "$ref": "#/definitions/AccountListNodeAgentSkusResult" + "$ref": "#/definitions/AccountListSupportedImagesResult" } }, "default": { @@ -10515,23 +10515,19 @@ }, "title": "The result of a listing the usage metrics for an account." }, - "NodeAgentSku": { + "ImageInformation": { "properties": { - "id": { + "nodeAgentSKUId": { "type": "string", - "title": "The ID of the node agent SKU." + "title": "The ID of the node agent SKU which the Image supports." }, - "verifiedImageReferences": { - "type": "array", - "items": { - "$ref": "#/definitions/ImageReference" - }, - "title": "The list of Azure Marketplace images verified to be compatible with this node agent SKU.", - "description": "This collection is not exhaustive (the node agent may be compatible with other images)." + "imageReference": { + "$ref": "#/definitions/ImageReference", + "title": "The reference to the Azure Virtual Machine's Marketplace Image." }, "osType": { "type": "string", - "title": "The type of operating system (e.g. Windows or Linux) compatible with the node agent SKU.", + "title": "The type of operating system (e.g. Windows or Linux) of the Image.", "enum": [ "linux", "windows" @@ -10550,10 +10546,45 @@ } ] } + }, + "capabilities": { + "type": "array", + "items": { + "type": "string" + }, + "title": "The capabilities or features which the Image supports.", + "description": "Not every capability of the Image is listed. Capabilities in this list are considered of special interest and are generally related to integration with other features in the Azure Batch service." + }, + "batchSupportEndOfLife": { + "type": "string", + "format": "date-time", + "title": "The time when the Azure Batch service will stop accepting create pool requests for the Image." + }, + "verificationType": { + "type": "string", + "title": "Whether the Azure Batch service actively verifies that the Image is compatible with the associated node agent SKU.", + "enum": [ + "verified", + "unverified" + ], + "x-ms-enum": { + "name": "VerificationType", + "modelAsString": false, + "values": [ + { + "value": "verified", + "description": "The Image is guaranteed to be compatible with the associated node agent SKU and all Batch features have been confirmed to work as expected." + }, + { + "value": "unverified", + "description": "The associated node agent SKU should have binary compatibility with the Image, but specific functionality has not been verified." + } + ] + } } }, - "title": "A node agent SKU supported by the Batch service.", - "description": "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." + "required": [ "imageReference", "verificationType", "osType", "nodeAgentSKUId" ], + "title": "A reference to the Azure Virtual Machines Marketplace Image and additional information about the Image." }, "AuthenticationTokenSettings": { "properties": { @@ -10582,21 +10613,21 @@ }, "title": "The settings for an authentication token that the task can use to perform Batch service operations." }, - "AccountListNodeAgentSkusResult": { + "AccountListSupportedImagesResult": { "properties": { "value": { "type": "array", "items": { - "$ref": "#/definitions/NodeAgentSku" + "$ref": "#/definitions/ImageInformation" }, - "title": "The list of supported node agent SKUs." + "title": "The list of supported Virtual Machine Images." }, "odata.nextLink": { "type": "string", "title": "The URL to get the next set of results." } }, - "title": "The result of listing the supported node agent SKUs." + "title": "The result of listing the supported Virtual Machine Images." }, "UsageStatistics": { "properties": { @@ -11092,8 +11123,12 @@ "properties": { "subnetId": { "type": "string", - "title": "The ARM resource identifier of the virtual network subnet which nodes running tasks from the job will join for the duration of the task.", - "description": "This is only supported for jobs running on VirtualMachineConfiguration pools. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}. The virtual network must be in the same region and subscription as the Azure Batch account. The specified subnet should have enough free IP addresses to accommodate the number of nodes which will run tasks from the job. For more details, see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration." + "title": "The ARM resource identifier of the virtual network subnet which nodes running tasks from the job will join for the duration of the task. This will only work with a VirtualMachineConfiguration pool.", + "description": "The virtual network must be in the same region and subscription as the Azure Batch account. The specified subnet should have enough free IP addresses to accommodate the number of nodes which will run tasks from the job. This can be up to the number of nodes in the pool. The 'MicrosoftAzureBatch' service principal must have the 'Classic Virtual Machine Contributor' Role-Based Access Control (RBAC) role for the specified VNet so that Azure Batch service can schedule tasks on the compute nodes. This can be verified by checking if the specified VNet has any associated Network Security Groups (NSG). If communication to the compute nodes in the specified subnet is denied by an NSG, then the Batch service will set the state of the compute nodes to unusable. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}. If the specified VNet has any associated Network Security Groups (NSG), then a few reserved system ports must be enabled for inbound communication from the Azure Batch service. For pools created with a Virtual Machine configuration, enable ports 29876 and 29877, as well as port 22 for Linux and port 3389 for Windows. Port 443 is also required to be open for outbound connections for communications to Azure Storage. For more details see: https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration", + "externalDocs": { + "url": "https://azure.microsoft.com/en-us/documentation/articles/role-based-access-built-in-roles/#classic-virtual-machine-contributor", + "description": "Setting up RBAC for Azure Batch VNETs" + } } }, "required": [ "subnetId" ], @@ -11115,10 +11150,33 @@ "$ref": "#/definitions/ContainerRegistry", "title": "The private registry which contains the container image.", "description": "This setting can be omitted if was already provided at pool creation." + }, + "workingDirectory": { + "type": "string", + "title": "The location of the container task working directory.", + "description": "The default is 'taskWorkingDirectory'.", + "enum": [ + "taskWorkingDirectory", + "containerImageDefault" + ], + "x-ms-enum": { + "name": "ContainerWorkingDirectory", + "modelAsString": false, + "values": [ + { + "value": "taskWorkingDirectory", + "description": "Use the standard Batch service task working directory, which will contain the Task Resource Files populated by Batch." + }, + { + "value": "containerImageDefault", + "description": "Use the working directory defined in the container image. Beware that this directory will not contain the Resource Files downloaded by Batch." + } + ] + } } }, "required": [ "imageName" ], - "title": "The container settings for a task." + "title": "The container settings for a Task." }, "ResourceFile": { "properties": { @@ -11369,8 +11427,8 @@ "properties": { "loginMode": { "type": "string", - "title": "The login mode for the user.", - "description": "The default value for VirtualMachineConfiguration pools is batch and for CloudServiceConfiguration pools is interactive.", + "title": "The login mode for user", + "description": "The default value for VirtualMachineConfiguration pools is 'batch' and for CloudServiceConfiguration pools is 'interactive'.", "enum": [ "batch", "interactive" @@ -11465,7 +11523,7 @@ "containerSettings": { "$ref": "#/definitions/TaskContainerSettings", "title": "The settings for the container under which the Job Manager task runs.", - "description": "If the pool that will run this task has containerConfiguration set, this must be set as well. If the pool that will run this task doesn't have containerConfiguration set, this must not be set. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container." + "description": "If the pool that will run this task has containerConfiguration set, this must be set as well. If the pool that will run this task doesn't have containerConfiguration set, this must not be set. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container. Files produced in the container outside of AZ_BATCH_NODE_ROOT_DIR might not be reflected to the host disk, meaning that Batch file APIs will not be able to access those files." }, "resourceFiles": { "type": "array", @@ -11515,7 +11573,7 @@ "$ref": "#/definitions/ApplicationPackageReference" }, "title": "A list of application packages that the Batch service will deploy to the compute node before running the command line.", - "description": "Application packages are downloaded and deployed to a shared directory, not the task working directory. Therefore, if a referenced package is already on the compute node, and is up to date, then it is not re-downloaded; the existing copy on the compute node is used. If a referenced application package cannot be installed, for example because the package has been deleted or because download failed, the task fails." + "description": "Application packages are downloaded and deployed to a shared directory, not the task working directory. Therefore, if a referenced package is already on the compute node, and is up to date, then it is not re-downloaded; the existing copy on the compute node is used. If a referenced application package cannot be installed, for example because the package has been deleted or because download failed, the task fails. A maximum of 10 references may be specified on a given pool." }, "authenticationTokenSettings": { "title": "The settings for an authentication token that the task can use to perform Batch service operations.", @@ -11547,7 +11605,7 @@ "containerSettings": { "$ref": "#/definitions/TaskContainerSettings", "title": "The settings for the container under which the Job Preparation task runs.", - "description": "When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container." + "description": "When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container. Files produced in the container outside of AZ_BATCH_NODE_ROOT_DIR might not be reflected to the host disk, meaning that Batch file APIs will not be able to access those files." }, "resourceFiles": { "type": "array", @@ -11603,7 +11661,7 @@ "containerSettings": { "$ref": "#/definitions/TaskContainerSettings", "title": "The settings for the container under which the Job Release task runs.", - "description": "When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container." + "description": "When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container. Files produced in the container outside of AZ_BATCH_NODE_ROOT_DIR might not be reflected to the host disk, meaning that Batch file APIs will not be able to access those files." }, "resourceFiles": { "type": "array", @@ -11679,7 +11737,7 @@ "containerSettings": { "$ref": "#/definitions/TaskContainerSettings", "title": "The settings for the container under which the start task runs.", - "description": "When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container." + "description": "When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container. Files produced in the container outside of AZ_BATCH_NODE_ROOT_DIR might not be reflected to the host disk, meaning that Batch file APIs will not be able to access those files." }, "resourceFiles": { "type": "array", @@ -12927,31 +12985,31 @@ "properties": { "publisher": { "type": "string", - "title": "The publisher of the Azure Virtual Machines Marketplace image.", + "title": "The publisher of the Azure Virtual Machines Marketplace Image.", "description": "For example, Canonical or MicrosoftWindowsServer." }, "offer": { "type": "string", - "title": "The offer type of the Azure Virtual Machines Marketplace image.", + "title": "The offer type of the Azure Virtual Machines Marketplace Image.", "description": "For example, UbuntuServer or WindowsServer." }, "sku": { "type": "string", - "title": "The SKU of the Azure Virtual Machines Marketplace image.", + "title": "The SKU of the Azure Virtual Machines Marketplace Image.", "description": "For example, 14.04.0-LTS or 2012-R2-Datacenter." }, "version": { "type": "string", - "title": "The version of the Azure Virtual Machines Marketplace image.", - "description": "A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'." + "title": "The version of the Azure Virtual Machines Marketplace Image.", + "description": "A value of 'latest' can be specified to select the latest version of an Image. If omitted, the default is 'latest'." }, "virtualMachineImageId": { "type": "string", - "title": "The ARM resource identifier of the virtual machine image. Computes nodes of the pool will be created using this custom image. This is of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName}", - "description": "This property is mutually exclusive with other ImageReference properties. The virtual machine image must be in the same region and subscription as the Azure Batch account. For more details, see https://docs.microsoft.com/azure/batch/batch-custom-images." + "title": "The ARM resource identifier of the Virtual Machine Image. Computes nodes of the pool will be created using this custom image. This is of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName}", + "description": "This property is mutually exclusive with other ImageReference properties. The Virtual Machine Image must be in the same region and subscription as the Azure Batch account. For information about the firewall settings for the Batch node agent to communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration." } }, - "title": "A reference to an Azure Virtual Machines Marketplace image or a custom Azure Virtual Machine image. To get the list of all Azure Marketplace image references verified by Azure Batch, see the 'List node agent SKUs' operation." + "title": "A reference to an Azure Virtual Machines Marketplace Image or a custom Azure Virtual Machine Image. To get the list of all Azure Marketplace Image references verified by Azure Batch, see the 'List supported Images' operation." }, "WindowsConfiguration": { "properties": { @@ -13051,7 +13109,7 @@ "properties": { "imageReference": { "$ref": "#/definitions/ImageReference", - "title": "A reference to the Azure Virtual Machines Marketplace image or the custom Virtual Machine image to use." + "title": "A reference to the Azure Virtual Machines Marketplace image or the custom Virtual Machine Image to use." }, "nodeAgentSKUId": { "type": "string", @@ -13148,8 +13206,12 @@ "properties": { "subnetId": { "type": "string", - "title": "The ARM resource identifier of the virtual network subnet which the compute nodes of the pool will join.", - "description": "This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}. The virtual network must be in the same region and subscription as the Azure Batch account. The specified subnet should have enough free IP addresses to accommodate the number of nodes in the pool. If the subnet doesn't have enough free IP addresses, the pool will partially allocate compute nodes, and a resize error will occur. For pools created with virtualMachineConfiguration only ARM virtual networks ('Microsoft.Network/virtualNetworks') are supported, but for pools created with cloudServiceConfiguration both ARM and classic virtual networks are supported. For more details, see: https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration" + "title": "The ARM resource identifier of the virtual network subnet which the compute nodes of the pool will join. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}.", + "description": "The virtual network must be in the same region and subscription as the Azure Batch account. The specified subnet should have enough free IP addresses to accommodate the number of nodes in the pool. If the subnet doesn't have enough free IP addresses, the pool will partially allocate compute nodes, and a resize error will occur. The 'MicrosoftAzureBatch' service principal must have the 'Classic Virtual Machine Contributor' Role-Based Access Control (RBAC) role for the specified VNet. The specified subnet must allow communication from the Azure Batch service to be able to schedule tasks on the compute nodes. This can be verified by checking if the specified VNet has any associated Network Security Groups (NSG). If communication to the compute nodes in the specified subnet is denied by an NSG, then the Batch service will set the state of the compute nodes to unusable. For pools created with virtualMachineConfiguration only ARM virtual networks ('Microsoft.Network/virtualNetworks') are supported, but for pools created with cloudServiceConfiguration both ARM and classic virtual networks are supported. If the specified VNet has any associated Network Security Groups (NSG), then a few reserved system ports must be enabled for inbound communication. For pools created with a virtual machine configuration, enable ports 29876 and 29877, as well as port 22 for Linux and port 3389 for Windows. For pools created with a cloud service configuration, enable ports 10100, 20100, and 30100. Also enable outbound connections to Azure Storage on port 443. For more details see: https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration", + "externalDocs": { + "url": "https://azure.microsoft.com/en-us/documentation/articles/role-based-access-built-in-roles/#classic-virtual-machine-contributor", + "description": "Setting up RBAC for Azure Batch VNETs" + } }, "dynamicVNetAssignmentScope": { "type": "string", @@ -13882,7 +13944,7 @@ "containerSettings": { "$ref": "#/definitions/TaskContainerSettings", "title": "The settings for the container under which the task runs.", - "description": "If the pool that will run this task has containerConfiguration set, this must be set as well. If the pool that will run this task doesn't have containerConfiguration set, this must not be set. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container." + "description": "If the pool that will run this task has containerConfiguration set, this must be set as well. If the pool that will run this task doesn't have containerConfiguration set, this must not be set. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container. Files produced in the container outside of AZ_BATCH_NODE_ROOT_DIR might not be reflected to the host disk, meaning that Batch file APIs will not be able to access those files." }, "resourceFiles": { "type": "array", @@ -13978,7 +14040,7 @@ "containerSettings": { "$ref": "#/definitions/TaskContainerSettings", "title": "The settings for the container under which the task runs.", - "description": "If the pool that will run this task has containerConfiguration set, this must be set as well. If the pool that will run this task doesn't have containerConfiguration set, this must not be set. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container." + "description": "If the pool that will run this task has containerConfiguration set, this must be set as well. If the pool that will run this task doesn't have containerConfiguration set, this must not be set. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container. Files produced in the container outside of AZ_BATCH_NODE_ROOT_DIR might not be reflected to the host disk, meaning that Batch file APIs will not be able to access those files." }, "exitConditions": { "$ref": "#/definitions/ExitConditions", @@ -14646,6 +14708,14 @@ "type": "string", "title": "The source address prefix or tag to match for the rule.", "description": "Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400." + }, + "sourcePortRanges": { + "type": "array", + "items": { + "type": "string" + }, + "title": "The source port ranges to match for the rule.", + "description": "Valid values are '*' (for all ports 0 - 65535), a specific port (i.e. 22), or a port range (i.e. 100-200). The ports must be in the range of 0 to 65535. Each entry in this collection must not overlap any other entry (either a range or an individual port). If any other values are provided the request fails with HTTP status code 400. The default value is '*'." } }, "required": [ "priority", "access", "sourceAddressPrefix" ], @@ -15024,8 +15094,8 @@ "items": { "$ref": "#/definitions/ApplicationPackageReference" }, - "title": "The list of application packages to be installed on each compute node in the pool.", - "description": "The list replaces any existing application package references on the pool. Changes to application package references affect all new compute nodes joining the pool, but do not affect compute nodes that are already in the pool until they are rebooted or reimaged. There is a maximum of 10 application package references on any given pool. If omitted, any existing application package references are left unchanged." + "title": "A list of application packages to be installed on each compute node in the pool.", + "description": "Changes to application package references affect all new compute nodes joining the pool, but do not affect compute nodes that are already in the pool until they are rebooted or reimaged. If this element is present, it replaces any existing application package references. If you specify an empty collection, then all application package references are removed from the pool. If omitted, any existing application package references are left unchanged." }, "metadata": { "type": "array", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListNodeAgentSkus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListNodeAgentSkus.json deleted file mode 100644 index d59100fda47b..000000000000 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListNodeAgentSkus.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "parameters": { - "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", - "client-request-id": "00000000-0000-0000-0000-000000000000", - "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "batch.node.centos 7", - "verifiedImageReferences": [ - { - "publisher": "OpenLogic", - "offer": "CentOS", - "sku": "7.2", - "version": "latest" - }, - { - "publisher": "OpenLogic", - "offer": "CentOS", - "sku": "7.1", - "version": "latest" - } - ], - "osType": "linux" - }, - { - "id": "batch.node.debian 8", - "verifiedImageReferences": [ - { - "publisher": "Credativ", - "offer": "Debian", - "sku": "8", - "version": "latest" - } - ], - "osType": "linux" - }, - { - "id": "batch.node.windows amd64", - "verifiedImageReferences": [ - { - "publisher": "MicrosoftWindowsServer", - "offer": "WindowsServer", - "sku": "2012-R2-Datacenter", - "version": "latest" - }, - { - "publisher": "MicrosoftWindowsServer", - "offer": "WindowsServer", - "sku": "2012-Datacenter", - "version": "latest" - } - ], - "osType": "windows" - } - ] - } - } - } -} \ No newline at end of file diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json index 13ddd4d2ad30..e5c0701bf562 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListPoolNodeCounts.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListSupportedImages.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListSupportedImages.json new file mode 100644 index 000000000000..d29c3b2b526c --- /dev/null +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/AccountListSupportedImages.json @@ -0,0 +1,76 @@ +{ + "parameters": { + "batchUrl": "account.region.batch.azure.com", + "api-version": "2019-06-01.9.0", + "client-request-id": "00000000-0000-0000-0000-000000000000", + "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "nodeAgentSKUId": "batch.node.centos 7", + "imageReference": { + "publisher": "OpenLogic", + "offer": "CentOS", + "sku": "7.2", + "version": "latest" + }, + "verificationType": "verified", + "capabilities": [ + "DockerCompatible", + "NvidiaTeslaDriverInstalled" + ], + "osType": "linux" + }, + { + "nodeAgentSKUId": "batch.node.centos 7", + "imageReference": { + "publisher": "OpenLogic", + "offer": "CentOS", + "sku": "7.1", + "version": "latest" + }, + "verificationType": "unverified", + "osType": "linux", + "batchSupportEndOfLife": "2019-11-01T00:00:00.0Z" + }, + { + "nodeAgentSKUId": "batch.node.debian 8", + "imageReference": { + "publisher": "Credativ", + "offer": "Debian", + "sku": "8", + "version": "latest" + }, + "verificationType": "verified", + "osType": "linux" + }, + { + "nodeAgentSKUId": "batch.node.windows amd64", + "imageReference": { + "publisher": "MicrosoftWindowsServer", + "offer": "WindowsServer", + "sku": "2012-R2-Datacenter", + "version": "latest" + }, + "verificationType": "verified", + "osType": "windows" + }, + { + "nodeAgentSKUId": "batch.node.windows amd64", + "imageReference": { + "publisher": "MicrosoftWindowsServer", + "offer": "WindowsServer", + "sku": "2012-Datacenter", + "version": "latest" + }, + "verificationType": "verified", + "osType": "windows" + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json index 404e317182fd..eb911811b8e2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationGet.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "applicationId": "my_application_id" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json index 8faa2407818a..3284b07fb957 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/ApplicationList.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json index d52b5da92f0e..d3205f4b3093 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateAdd.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "certificate": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json index 3a8f6699a6e9..4b560f6943e8 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateCancelDelete.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "thumbprintAlgorithm": "sha1", "thumbprint": "0123456789abcdef0123456789abcdef01234567", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json index dec2a177db34..a8c2dc7f815b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateDelete.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "thumbprintAlgorithm": "sha1", "thumbprint": "0123456789abcdef0123456789abcdef01234567", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json index 6c70d78421fe..b26c3da7adcb 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateGet.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "thumbprintAlgorithm": "sha1", "thumbprint": "0123456789abcdef0123456789abcdef01234567", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json index d7e848f92ede..a9879b71f144 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/CertificateList.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json index df2e9429ea9a..b24b13a6273e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromNode.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161122t193202z", "filePath": "workitems\\jobId\\job-1\\task1\\wd\\testFile.txt", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json index 24f0c8761a9b..f7b8168aa4e5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileDeleteFromTask.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "task1", "filePath": "wd\\testFile.txt", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json index 3a1eb00168be..88c5efbc2199 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromNode.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "nodeId", "filePath": "workitems\\jobId\\job-1\\task1\\wd\\testFile.txt", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json index 4e3749693306..0c0357200759 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetFromTask.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "task1", "filePath": "wd\\testFile.txt", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json index d7fe29cb7014..c288aac6f936 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromNode.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "nodeId", "filePath": "workitems\\jobId\\job-1\\task1\\wd\\testFile.txt", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json index a824b9d99ae8..67afdc700b58 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileGetPropertiesFromTask.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "filePath": "wd\\testFile.txt", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json index 344d20111976..4a6f4653c3d7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromNode.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161122t193202z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json index ffa1051f4e0c..9db91ee11e99 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/FileListFromTask.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json index f42ede825346..c4b180849a6c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Basic.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "job": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json index 3e418a47ab9e..3ce77106f3e9 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobAdd_Complex.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "job": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json index 551d0c72d70d..195af6003972 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDelete.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json index 3001e7497cc1..893572f83e0d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobDisable.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json index 551d0c72d70d..195af6003972 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobEnable.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json index 020a36ae8968..07e99da8bb55 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGet.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json index 370281b57dc2..85ca98194004 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetLifetimeStatistics.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json index 69eeb39bad46..673348fe36ac 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobGetTaskCounts.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json index 5f2bf2115d0a..4aa7bc3f765d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobList.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json index 4a581dd0be9d..5ed8941f2850 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListFromJobSchedule.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json index 69807d33f286..8c30d468df26 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobListPreparationAndReleaseTaskStatus.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" @@ -33,7 +33,7 @@ } } ], - "odata.nextLink": "https://account.region.batch.azure.com/jobs/myjob/jobpreparationandreleasestatus?$skipToken=tvm-2167304207_1-20140905t174658z&api-version=2018-12-01.8.0" + "odata.nextLink": "https://account.region.batch.azure.com/jobs/myjob/jobpreparationandreleasestatus?$skipToken=tvm-2167304207_1-20140905t174658z&api-version=2019-06-01.9.0" } } } diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json index 96d7455768f8..9186a99eb208 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobPatch.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json index 5e5021633b5a..060432614ae4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Basic.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "cloudJobSchedule": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json index 15147f8fdcd3..2a9db507460e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleAdd_Complex.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "cloudJobSchedule": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json index f4995ff15e9b..b4d4163f03e3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDelete.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json index 2d1fed498e83..6f6837c30f82 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleDisable.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json index 2d1fed498e83..6f6837c30f82 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleEnable.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json index 1c7929b0e2bd..0273954f790b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleExists.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json index 249b2ea312a8..cf803fe831fe 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleGet.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json index 85f00683ab50..cb4f38b93e26 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleList.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json index 974ad4b96ff9..240c02634460 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobSchedulePatch.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json index f4995ff15e9b..b4d4163f03e3 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleTerminate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json index 1d7b07d7c499..5a93b214b45e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobScheduleUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobScheduleId": "jobScheduleId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json index 386f3683ca7d..cdbc905f55c6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobTerminate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json index bd529af60161..ccc269c3f5aa 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/JobUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json index 9b066c59156a..301acc8bda81 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeAddUser.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161121t182739z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json index 38d4f051ae4d..1f4748dd1ebf 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDeleteUser.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161121t182739z", "userName": "userName", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json index 281e098ac108..92758d8a1270 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeDisableScheduling.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161122t193202z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json index c93e791f91bb..431f98c74d0c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeEnableScheduling.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161122t193202z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json index 6d261e4b03d5..a10bd7b39dcd 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteDesktop.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161121t182739z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json index 9f0abc48ddd3..7017b29190af 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGetRemoteLoginSettings.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161121t182739z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json index fe55ea7bf40c..66ded2865e78 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeGet_Basic.json @@ -3,7 +3,7 @@ "batchUrl": "account.region.batch.azure.com", "poolId": "poolId", "nodeId": "tvm-1695681911_2-20161122t193202z", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json index e5ea20fbfeb3..1271434a8a29 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeList.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json index 8fc2fd8cd55d..12d98b92b160 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReboot.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161122t193202z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json index 1dc0643c784b..2bd8e9591f77 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeReimage.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161122t193202z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json index 0bc124036dcf..9e339b50ae91 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUpdateUser.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161121t182739z", "userName": "userName", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json index 700bb57fc89f..ab8ac725e3a1 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/NodeUploadBatchServiceLogs.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "nodeId": "tvm-1695681911_1-20161121t182739z", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json index a93e282d0024..20fcf4d11eab 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_CloudServiceConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "pool": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json index b26fce77be20..b1c0f534a9ad 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "pool": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json index 04ed1c84b96b..7aee5400dba7 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolAdd_VirtualMachineConfigurationWithContainers.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", "pool": { diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json index b21c340c7a42..d702f0043779 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDelete.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json index 04670de95ac3..75710ee0b32f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolDisableAutoScale.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json index 9c9a4d2d4b8f..a13b1ded3e45 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEnableAutoscale.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json index c1ec9c21b633..1e60ec6235c4 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolEvaluateAutoscale.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json index 385984444d75..d287ca753f25 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolExists.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json index 55e39373893a..7269c1ec701c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGetLifetimeStatistics.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json index 9d8f7f83e19c..82c4186934e2 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolGet_Basic.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "pool", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json index e05af7a849b2..b56637082efa 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolListUsageMetrics.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json index b81487f337b8..4280822cc03e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolList_Basic.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" }, diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json index a1475eeb5410..066aff4650b6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolPatch.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json index c0bbf983e5cd..2ab4f7ace56c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolRemoveNodes.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json index 2779f892863a..9fac0a0ea3e5 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolResize.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "resizePool", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json index b21c340c7a42..d702f0043779 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolStopResize.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json index 69fe12dd6ff3..757c3fb26f6c 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/PoolUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "poolId": "poolId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json index e162a318b08d..c1c48dfe4b40 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Basic.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json index c56d31718e5d..c4ba526ccb19 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAddCollection_Complex.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json index 23a8189702d6..f4d85676fb3f 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_Basic.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json index 47f35697248f..0d0defeb465b 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ContainerSettings.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json index 90a0999d2166..34e4c3e73258 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskAdd_ExitConditions.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json index 591d3dc05279..ee980baf06b6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskDelete.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json index bf9d9fc092e0..9313dc107d13 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskGet.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json index ec9b85595b4b..7661f785a4c6 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskList.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "client-request-id": "00000000-0000-0000-0000-000000000000", "ocp-date": "Fri, 17 Feb 2017 00:00:00 GMT" diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json index 54eddbdb91f6..95e13e29f647 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskListSubtasks.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json index 6c07e145e137..0a41a8e6356e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskReactivate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json index 6c07e145e137..0a41a8e6356e 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskTerminate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json index bcf451b6bc0c..1bfcc5f4df2d 100644 --- a/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json +++ b/specification/batch/data-plane/Microsoft.Batch/stable/2019-06-01.9.0/examples/TaskUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "batchUrl": "account.region.batch.azure.com", - "api-version": "2018-12-01.8.0", + "api-version": "2019-06-01.9.0", "jobId": "jobId", "taskId": "taskId", "client-request-id": "00000000-0000-0000-0000-000000000000", diff --git a/specification/batch/data-plane/readme.go.md b/specification/batch/data-plane/readme.go.md index 6a65f3fb0155..b1c62e2a22ae 100644 --- a/specification/batch/data-plane/readme.go.md +++ b/specification/batch/data-plane/readme.go.md @@ -17,6 +17,16 @@ batch: - tag: package-2018-03.6.1 - tag: package-2018-08.7.0 - tag: package-2018-12.8.0 + - tag: package-2019-06.9.0 +``` + +### Tag: package-2019-06.9.0 and go + +These settings apply only when `--tag=package-2019-06.9.0 --go` is specified on the command line. +Please also specify `--go-sdk-folder=`. + +``` yaml $(tag)=='package-2019-06.9.0' && $(go) +output-folder: $(go-sdk-folder)/services/$(namespace)/2019-06-01.9.0/$(namespace) ``` ### Tag: package-2018-12.8.0 and go diff --git a/specification/batch/data-plane/readme.md b/specification/batch/data-plane/readme.md index 86159d5e80af..2a778ab966ef 100644 --- a/specification/batch/data-plane/readme.md +++ b/specification/batch/data-plane/readme.md @@ -26,7 +26,16 @@ These are the global settings for the Batch API. ``` yaml openapi-type: data-plane -tag: package-2018-12.8.0 +tag: package-2019-06.9.0 +``` + +### Tag: package-2019-06.9.0 + +These settings apply only when `--tag=package-2019-06.9.0` is specified on the command line. + +``` yaml $(tag) == 'package-2019-06.9.0' +input-file: +- Microsoft.Batch/stable/2019-06-01.9.0/BatchService.json ``` ### Tag: package-2018-12.8.0 @@ -259,6 +268,32 @@ csharp: client-side-validation: false ``` +## Python + +These settings apply only when `--python` is specified on the command line. +Please also specify `--python-sdks-folder=`. +Use `--python-mode=update` if you already have a setup.py and just want to update the code itself. + +``` yaml $(python) +python-mode: create +python: + azure-arm: true + license-header: MICROSOFT_MIT_NO_VERSION + payload-flattening-threshold: 2 + namespace: azure.batch + package-name: azure-batch + clear-output-folder: true +``` +``` yaml $(python) && $(python-mode) == 'update' +python: + no-namespace-folders: true + output-folder: $(python-sdks-folder)/azure-batch/azure/batch +``` +``` yaml $(python) && $(python-mode) == 'create' +python: + basic-setup-py: true + output-folder: $(python-sdks-folder)/azure-batch +``` ## Go