action windows_task_list_subtasks { label: "Lists all of the subtasks that are associated with the specified multi-instance task." description: "If the task is not a multi-instance task then this returns an empty collection." provider: windows method: GET path: "/jobs/{jobId}/tasks/{taskId}/subtasksinfo" encoding: json input: { type: "object" properties: { "$select": { type: "string" } "api-version": { type: "string" } "client-request-id": { type: "string" } jobId: { type: "string" } "ocp-date": { type: "string" } "return-client-request-id": { type: "string" } taskId: { type: "string" } timeout: { type: "string" } } required: ["api-version", "jobId", "taskId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }