action windows_file_delete_from_task { label: "Deletes the specified task file from the compute node where the task ran." provider: windows method: DELETE path: "/jobs/{jobId}/tasks/{taskId}/files/{filePath}" encoding: json input: { type: "object" properties: { "api-version": { type: "string" } "client-request-id": { type: "string" } filePath: { type: "string" } jobId: { type: "string" } "ocp-date": { type: "string" } recursive: { 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 } }