import * as $dara from '@darabonba/typescript'; import { Tag } from "./Tag"; export declare class DescribeClustersForRegionResponseBodyClusters extends $dara.Model { /** * @remarks * The local domain name of the cluster. * * @example * cluster.local */ clusterDomain?: string; /** * @remarks * The cluster ID. * * @example * c905d1364c2dd4b6284a3f41790c4**** */ clusterId?: string; /** * @remarks * The specification of the cluster. Valid values: * * - `ack.standard`: Basic * - `ack.pro.small`: Pro * - `ack.pro.xlarge`: Pro XL * - `ack.pro.2xlarge`: Pro 2XL * - `ack.pro.4xlarge`: Pro 4XL (contact customer service to add your account to the whitelist) * * Pro XL, Pro 2XL, and Pro 4XL are three tiers provided by [ACK Pro Provisioned Control Plane](https://help.aliyun.com/ack/ack-managed-and-ack-dedicated/user-guide/ack-pro-provisioned-control-plane)[ACK Pro Provisioned Control Plane](https://www.alibabacloud.com/help/ack/ack-managed-and-ack-dedicated/user-guide/ack-pro-provisioned-control-plane). By pre-allocating and dedicating control plane resources, these tiers ensure that API concurrency and Pod scheduling capabilities remain at a consistently high level. They are suitable for AI training and inference, ultra-large-scale clusters, and mission-critical workloads. * * For information about cluster management fees for Pro and Provisioned Control Plane editions, see [Cluster management fees](https://help.aliyun.com/ack/ack-managed-and-ack-dedicated/product-overview/cluster-management-fee)[Cluster management fees](https://www.alibabacloud.com/help/ack/ack-managed-and-ack-dedicated/product-overview/cluster-management-fee). * * @example * ack.standard */ clusterSpec?: string; /** * @remarks * The cluster type. Valid values: * - Kubernetes: ACK dedicated cluster. * - ManagedKubernetes: ACK managed cluster types, including ACK managed clusters (ACK Pro and ACK Basic), ACK Serverless clusters (Pro and Basic), ACK Edge clusters (Pro and Basic), and ACK Lingjun clusters (Pro). * - ExternalKubernetes: registered cluster. * * @example * ManagedKubernetes */ clusterType?: string; /** * @remarks * The pod CIDR block of the cluster. * * @example * 172.20.0.0/16 */ containerCidr?: string; /** * @remarks * The time when the cluster was created. * * @example * 2020-12-01T20:40:40+08:00 */ created?: string; /** * @remarks * The current version of the cluster. * * @example * 1.16.6-aliyun.1 */ currentVersion?: string; /** * @remarks * Indicates whether deletion protection is enabled for the cluster. Deletion protection prevents the cluster from being accidentally deleted in the console or by calling API operations. Valid values: * - true: Deletion protection is enabled. The cluster cannot be deleted in the console or by calling API operations. * - false: Deletion protection is not enabled. The cluster can be deleted in the console or by calling API operations. * * @example * false */ deletionProtection?: boolean; /** * @remarks * The initial version of the cluster. * * @example * 1.16.6-aliyun.1 */ initVersion?: string; /** * @remarks * The IP protocol stack of the cluster. * * @example * ipv4 */ ipStack?: string; /** * @remarks * The cluster name. * * @example * test-cluster */ name?: string; /** * @remarks * The version to which the cluster can be upgraded. * * @example * 1.18.8-aliyun.1 */ nextVersion?: string; /** * @remarks * The cluster subtype. Valid values: * - Default: ACK managed cluster, including ACK Pro and ACK Basic. * - Edge: ACK Edge cluster, including ACK Edge Pro and ACK Edge Basic. * - Serverless: ACK Serverless cluster, including ACK Serverless Pro and ACK Serverless Basic. * - LingJun: ACK Lingjun cluster, available in Pro. * * @example * Default */ profile?: string; /** * @remarks * The kube-proxy mode of the cluster. * * @example * ipvs */ proxyMode?: string; /** * @remarks * The region ID. * * @example * cn-beijing-a */ regionId?: string; /** * @remarks * The resource group ID of the cluster. * * @example * rg-acfmyvw3wjm**** */ resourceGroupId?: string; /** * @remarks * The security group ID of the cluster. * * @example * sg-2zeihch86ooz9io4**** */ securityGroupId?: string; /** * @remarks * The service CIDR block. * * This parameter is required. * * @example * 172.21.0.0/20 */ serviceCidr?: string; /** * @remarks * The number of nodes in the cluster. * * @example * 2 */ size?: number; /** * @remarks * The running state of the cluster. Valid values: * * - `initial`: The cluster is being created. * - `failed`: The cluster failed to be created. * - `running`: The cluster is running. * - `updating`: The cluster is being updated. * - `upgrading`: The cluster is being upgraded. * - `removing`: Nodes are being removed. * - `draining`: Nodes are being drained. * - `scaling`: The cluster is being scaled. * - `inactive`: The cluster is inactive. * - `unavailable`: The cluster is unavailable. * - `deleting`: The cluster is being deleted. * - `deleted`: The cluster has been deleted. * - `delete_failed`: The cluster failed to be deleted. * - `waiting`: The cluster is in the accessed state, waiting to be connected. * - `disconnected`: The cluster is disconnected. * * @example * running */ state?: string; /** * @remarks * The list of cluster tags. */ tags?: Tag[]; /** * @remarks * The time zone. * * @example * Asia/Shanghai */ timezone?: string; /** * @remarks * The time when the cluster was last updated. * * @example * 2020-12-08T15:37:00+08:00 */ updated?: string; /** * @remarks * The VPC ID of the cluster. * * @example * vpc-2zeg8nf1ukc0fcmvq**** */ vpcId?: string; /** * @remarks * The list of vSwitches for the cluster control plane. */ vswitchIds?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeClustersForRegionResponseBodyPageInfo extends $dara.Model { /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of records per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The total number of results. * * @example * 10 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeClustersForRegionResponseBody extends $dara.Model { /** * @remarks * The list of cluster details. */ clusters?: DescribeClustersForRegionResponseBodyClusters[]; /** * @remarks * The pagination information. */ pageInfo?: DescribeClustersForRegionResponseBodyPageInfo; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }