action windows_job_get_task_counts { label: "Gets the task counts for the specified job." description: "Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running." provider: windows method: GET path: "/jobs/{jobId}/taskcounts" encoding: json input: { type: "object" properties: { "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 } }