action windows_file_get_from_compute_node { label: "File_GetFromComputeNode" description: "Returns the content of the specified compute node file." provider: windows method: GET path: "/pools/{poolId}/nodes/{nodeId}/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" } nodeId: { type: "string" } "ocp-date": { type: "string" } "ocp-range": { type: "string" } poolId: { type: "string" } "return-client-request-id": { type: "string" } timeout: { type: "string" } } required: ["api-version", "filePath", "nodeId", "poolId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }