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

    Type Alias GetLkeClustersResponses

    type GetLkeClustersResponses = {
        "200": {
            data: {
                apl_enabled: boolean;
                control_plane: {
                    audit_logs_enabled: boolean;
                    high_availability: boolean;
                };
                created: string;
                id: number;
                k8s_version: string;
                label: string;
                region: string;
                stack_type: "ipv4"
                | "ipv4-ipv6";
                subnet_id: number;
                tags: string[];
                tier: "standard" | "enterprise";
                updated: string;
                vpc_id: number;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            apl_enabled: boolean;
            control_plane: { audit_logs_enabled: boolean; high_availability: boolean };
            created: string;
            id: number;
            k8s_version: string;
            label: string;
            region: string;
            stack_type: "ipv4" | "ipv4-ipv6";
            subnet_id: number;
            tags: string[];
            tier: "standard" | "enterprise";
            updated: string;
            vpc_id: number;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    Returns an array of all Kubernetes clusters on your Account.

    Type Declaration

    • data: {
          apl_enabled: boolean;
          control_plane: { audit_logs_enabled: boolean; high_availability: boolean };
          created: string;
          id: number;
          k8s_version: string;
          label: string;
          region: string;
          stack_type: "ipv4" | "ipv4-ipv6";
          subnet_id: number;
          tags: string[];
          tier: "standard" | "enterprise";
          updated: string;
          vpc_id: number;
      }[]
    • 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.