action windows_compute_node_delete_user { label: "Deletes a user account from the specified compute node." description: "You can delete a user account to a node only when it is in the idle or running state." provider: windows method: DELETE 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 } }