Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions schemas/2023-05-01/Microsoft.Batch.json
Original file line number Diff line number Diff line change
Expand Up @@ -1367,6 +1367,7 @@
},
"resizeTimeout": {
"type": "string",
"default": "PT15M",
"format": "duration",
"description": "The default value is 15 minutes. Timeout values use ISO 8601 format. For example, use PT10M for 10 minutes. The minimum value is 5 minutes. If you specify a value less than 5 minutes, the Batch service rejects the request with an error; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request)."
},
Expand Down Expand Up @@ -1415,6 +1416,7 @@
},
"version": {
"type": "string",
"default": "latest",
"description": "A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'."
}
}
Expand Down Expand Up @@ -2024,7 +2026,8 @@
"taskSlotsPerNode": {
"oneOf": [
{
"type": "integer"
"type": "integer",
"default": "1"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
Expand Down Expand Up @@ -2187,13 +2190,14 @@
"maxTaskRetryCount": {
"oneOf": [
{
"type": "integer"
"type": "integer",
"default": "0"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The Batch service retries a task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the task. If the maximum retry count is -1, the Batch service retries the task without limit."
"description": "The Batch service retries a task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the task. If the maximum retry count is -1, the Batch service retries the task without limit. Default is 0."
},
"resourceFiles": {
"oneOf": [
Expand Down