action windows_compute_node_add_user { label: "Adds a user account to the specified compute node." description: "You can add a user account to a node only when it is in the idle or running state." provider: windows method: POST path: "/pools/{poolId}/nodes/{nodeId}/users" 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 } }