action windows_compute_node_get_remote_login_settings { label: "Gets the settings required for remote login to a compute node." description: "Before you can remotely login to a node using the remote login settings, you must create a user account on the node. This API can be invoked only on pools created with the virtual machine configuration property. For pools created with a cloud service configuration, see the GetRemoteDesktop API." provider: windows method: GET path: "/pools/{poolId}/nodes/{nodeId}/remoteloginsettings" 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 } }