action windows_job_update { label: "Updates the properties of the specified job." description: "This fully replaces all the updatable properties of the job. For example, if the job has constraints associated with it and if constraints is not specified with this request, then the Batch service will remove the existing constraints." provider: windows method: PUT path: "/jobs/{jobId}" encoding: json input: { type: "object" properties: { "If-Match": { type: "string" } "If-Modified-Since": { type: "string" } "If-None-Match": { type: "string" } "If-Unmodified-Since": { type: "string" } "api-version": { type: "string" } "client-request-id": { type: "string" } jobId: { type: "string" } "ocp-date": { type: "string" } "return-client-request-id": { type: "string" } timeout: { type: "string" } } required: ["api-version", "jobId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }