action windows_file_get_from_task { label: "File_GetFromTask" description: "Returns the content of the specified task file." provider: windows method: GET path: "/jobs/{jobId}/tasks/{taskId}/files/{filePath}" encoding: json input: { type: "object" properties: { "If-Modified-Since": { type: "string" } "If-Unmodified-Since": { type: "string" } "api-version": { type: "string" } "client-request-id": { type: "string" } filePath: { type: "string" } jobId: { type: "string" } "ocp-date": { type: "string" } "ocp-range": { type: "string" } "return-client-request-id": { type: "string" } taskId: { type: "string" } timeout: { type: "string" } } required: ["api-version", "filePath", "jobId", "taskId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }