action linode_get_lkecluster_node { label: "Node View" description: "Returns the values for a specified node object.\n" provider: linode method: GET path: "/lke/clusters/{clusterId}/nodes/{nodeId}" encoding: json output: { type: "object" properties: { id: { type: "string" description: "The Node's ID.\n" } instance_id: { type: "integer" description: "The Linode's ID. If no Linode is currently provisioned for this Node, this is `null`.\n" } status: { type: "string" description: "The creation status of this Node. This status is distinct from this Node's readiness as a Kubernetes Node Object as determined by the command `kubectl get nodes`.\n\n`not_ready` indicates that the Linode is still being created.\n\n`ready` indicates that the Linode has successfully been created and is running Kubernetes software.\n" enum: ["ready", "not_ready"] } } } }