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

    Type Alias GetLkeClusterPoolsResponses

    type GetLkeClusterPoolsResponses = {
        "200": {
            data: {
                autoscaler: { enabled: boolean; max: number; min: number };
                count: number;
                disk_encryption: "enabled" | "disabled";
                disks: { size: number; type: "raw" | "ext4" }[];
                id: number;
                k8s_version: string;
                label: string;
                labels: { [key: string]: string };
                nodes: {
                    id: string;
                    instance_id: number | null;
                    status: "ready" | "not_ready";
                }[];
                tags: string[];
                taints: {
                    effect?: "NoSchedule"
                    | "PreferNoSchedule"
                    | "NoExecute";
                    key?: string;
                    value?: string;
                }[];
                type: string;
                update_strategy: "rolling_update"
                | "on_recycle";
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            autoscaler: { enabled: boolean; max: number; min: number };
            count: number;
            disk_encryption: "enabled" | "disabled";
            disks: { size: number; type: "raw" | "ext4" }[];
            id: number;
            k8s_version: string;
            label: string;
            labels: { [key: string]: string };
            nodes: {
                id: string;
                instance_id: number | null;
                status: "ready" | "not_ready";
            }[];
            tags: string[];
            taints: {
                effect?: "NoSchedule"
                | "PreferNoSchedule"
                | "NoExecute";
                key?: string;
                value?: string;
            }[];
            type: string;
            update_strategy: "rolling_update"
            | "on_recycle";
        }[];
        page: number;
        pages: number;
        results: number;
    }

    Returns all node pools in this Kubernetes cluster.

    Type Declaration

    • data: {
          autoscaler: { enabled: boolean; max: number; min: number };
          count: number;
          disk_encryption: "enabled" | "disabled";
          disks: { size: number; type: "raw" | "ext4" }[];
          id: number;
          k8s_version: string;
          label: string;
          labels: { [key: string]: string };
          nodes: {
              id: string;
              instance_id: number | null;
              status: "ready" | "not_ready";
          }[];
          tags: string[];
          taints: {
              effect?: "NoSchedule"
              | "PreferNoSchedule"
              | "NoExecute";
              key?: string;
              value?: string;
          }[];
          type: string;
          update_strategy: "rolling_update"
          | "on_recycle";
      }[]
    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.