action windows_compute_node_disable_scheduling { label: "Disables task scheduling on the specified compute node." description: "You can disable task scheduling on a node only if its current scheduling state is enabled." provider: windows method: POST path: "/pools/{poolId}/nodes/{nodeId}/disablescheduling" 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 } }