action windows_file_delete_from_compute_node { label: "Deletes the specified file from the compute node." provider: windows method: DELETE path: "/pools/{poolId}/nodes/{nodeId}/files/{filePath}" encoding: json input: { type: "object" properties: { "api-version": { type: "string" } "client-request-id": { type: "string" } filePath: { type: "string" } nodeId: { type: "string" } "ocp-date": { type: "string" } poolId: { type: "string" } recursive: { type: "string" } "return-client-request-id": { type: "string" } timeout: { type: "string" } } required: ["api-version", "filePath", "nodeId", "poolId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }