The jobs.patch method can only be used while a job is in the QUEUED, SCHEDULED, or RUNNING state and currently only supports increasing the value of the first taskCount field in the job's taskGroups field. Therefore, you must set the value of updateMask to taskGroups. Any other job fields in the update request will be ignored.
For example, to update a job's taskCount to 2, set updateMask to taskGroups and use the following request body:
{
"taskGroups":[{
"taskCount": 2
}]
}
This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".
requestId
string
Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-06 UTC."],[[["This webpage details how to update a job using a PATCH HTTP request to the Google Batch API."],["The `job.name` path parameter is a required string that uniquely identifies the job being updated, and it has the format of `projects/*/locations/*/jobs/*`."],["The `updateMask` query parameter, set to `taskGroups`, is required to modify the `taskCount` field in a job's `taskGroups`, allowing the adjustment of task counts for jobs in `QUEUED`, `SCHEDULED`, or `RUNNING` states."],["The `requestId` query parameter can be used to ensure idempotency by providing a unique identifier for each request, preventing duplicate actions upon retries."],["The request and response bodies both utilize the `Job` resource, as defined in the Batch API reference."]]],[]]