action windows_compute_node_update_user { label: "Updates the password and expiration time of a user account on the specified compute node." description: "This operation replaces of all the updatable properties of the account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user account on a node only when it is in the idle or running state." provider: windows method: PUT path: "/pools/{poolId}/nodes/{nodeId}/users/{userName}" 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" } userName: { type: "string" } } required: ["api-version", "nodeId", "poolId", "userName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }