action windows_job_list_preparation_and_release_task_status { label: "Lists the execution status of the Job Preparation and Job Release task for the specified job across the compute nodes where the job has run." description: "This API returns the Job Preparation and Job Release task status on all compute nodes that have run the Job Preparation or Job Release task. This includes nodes which have since been removed from the pool. If this API is invoked on a job which has no Job Preparation or Job Release task, the Batch service returns HTTP status code 409 (Conflict) with an error code of JobPreparationTaskNotSpecified." provider: windows method: GET path: "/jobs/{jobId}/jobpreparationandreleasetaskstatus" encoding: json input: { type: "object" properties: { "$filter": { type: "string" } "$select": { type: "string" } "api-version": { type: "string" } "client-request-id": { type: "string" } jobId: { type: "string" } maxresults: { 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 } }