@akamai/openapi-ts
    Preparing search index...

    Type Alias GetLkeClusterNodeResponses

    type GetLkeClusterNodeResponses = {
        "200": {
            id: string;
            instance_id: number | null;
            status: "ready" | "not_ready";
        };
    }
    Index

    Properties

    Properties

    "200": { id: string; instance_id: number | null; status: "ready" | "not_ready" }

    Read-only Status information for a Node which is a member of a Kubernetes cluster.

    Type Declaration

    • id: string

      The Node's ID.

    • instance_id: number | null

      The Linode's ID. When no Linode is currently provisioned for this Node, this will be null.

    • status: "ready" | "not_ready"

      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.

      not_ready indicates that the Linode is still being created.

      ready indicates that the Linode has successfully been created and is running Kubernetes software.