action windows_compute_node_reimage { label: "Reinstalls the operating system on the specified compute node." description: "You can reinstall the operating system on a node only if it is in an idle or running state. This API can be invoked only on pools created with the cloud service configuration property." provider: windows method: POST path: "/pools/{poolId}/nodes/{nodeId}/reimage" encoding: json input: { type: "object" properties: { "api-version": { type: "string" } "client-request-id": { type: "string" } nodeId: { type: "string" } "ocp-date": { type: "string" } poolId: { type: "string" } "return-client-request-id": { type: "string" } timeout: { type: "string" } } required: ["api-version", "nodeId", "poolId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }