action windows_compute_node_get_remote_desktop { label: "Gets the Remote Desktop Protocol file for the specified compute node." description: "Before you can access a node by using the RDP file, you must create a user account on the node. This API can only be invoked on pools created with a cloud service configuration. For pools created with a virtual machine configuration, see the GetRemoteLoginSettings API." provider: windows method: GET path: "/pools/{poolId}/nodes/{nodeId}/rdp" 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 } }