import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ContainerClusterConfig extends cdktf.TerraformMetaArguments { /** * The network bandwidth of the node. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#bandwidth ContainerCluster#bandwidth} */ readonly bandwidth: number; /** * The network type of the node. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#bandwidth_type ContainerCluster#bandwidth_type} */ readonly bandwidthType: string; /** * The CIDR which the cluster is going to use. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#cluster_cidr ContainerCluster#cluster_cidr} */ readonly clusterCidr: string; /** * The description of the cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#cluster_desc ContainerCluster#cluster_desc} */ readonly clusterDesc?: string; /** * The name of the cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#cluster_name ContainerCluster#cluster_name} */ readonly clusterName: string; /** * The kubernetes version of the cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#cluster_version ContainerCluster#cluster_version} */ readonly clusterVersion?: string; /** * The cpu of the node. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#cpu ContainerCluster#cpu} */ readonly cpu?: number; /** * The type of node needed by cvm. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#cvm_type ContainerCluster#cvm_type} */ readonly cvmType?: string; /** * The docker graph path is going to mounted. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#docker_graph_path ContainerCluster#docker_graph_path} */ readonly dockerGraphPath?: string; /** * The node number is going to create in the cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#goods_num ContainerCluster#goods_num} */ readonly goodsNum: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#id ContainerCluster#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * The name ot node. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#instance_name ContainerCluster#instance_name} */ readonly instanceName?: string; /** * The instance type of the node needed by cvm. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#instance_type ContainerCluster#instance_type} */ readonly instanceType: string; /** * Describe whether the node enable the gateway capability. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#is_vpc_gateway ContainerCluster#is_vpc_gateway} */ readonly isVpcGateway: number; /** * The key_id of each node(if using key pair to access). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#key_id ContainerCluster#key_id} */ readonly keyId?: string; /** * The memory of the node. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#mem ContainerCluster#mem} */ readonly mem?: number; /** * The path which volume is going to be mounted. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#mount_target ContainerCluster#mount_target} */ readonly mountTarget?: string; /** * The system os name of the node. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#os_name ContainerCluster#os_name} */ readonly osName: string; /** * The password of each node. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#password ContainerCluster#password} */ readonly password?: string; /** * The puchase duration of the node needed by cvm. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#period ContainerCluster#period} */ readonly period?: number; /** * Indicate whether wan ip is needed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#require_wan_ip ContainerCluster#require_wan_ip} */ readonly requireWanIp?: number; /** * The size of the root volume. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#root_size ContainerCluster#root_size} */ readonly rootSize: number; /** * The type of the root volume. see more from CVM. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#root_type ContainerCluster#root_type} */ readonly rootType?: string; /** * The security group id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#sg_id ContainerCluster#sg_id} */ readonly sgId?: string; /** * The size of the data volume. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#storage_size ContainerCluster#storage_size} */ readonly storageSize: number; /** * The type of the data volume. see more from CVM. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#storage_type ContainerCluster#storage_type} */ readonly storageType?: string; /** * The subnet id which the node stays in. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#subnet_id ContainerCluster#subnet_id} */ readonly subnetId: string; /** * Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#unschedulable ContainerCluster#unschedulable} */ readonly unschedulable?: number; /** * User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#user_script ContainerCluster#user_script} */ readonly userScript?: string; /** * Specify vpc which the node(s) stay in. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#vpc_id ContainerCluster#vpc_id} */ readonly vpcId: string; /** * The zone which the node stays in. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#zone_id ContainerCluster#zone_id} */ readonly zoneId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster tencentcloud_container_cluster} */ export declare class ContainerCluster extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_container_cluster"; /** * Generates CDKTF code for importing a ContainerCluster resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the ContainerCluster to import * @param importFromId The id of the existing ContainerCluster that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ContainerCluster to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster tencentcloud_container_cluster} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options ContainerClusterConfig */ constructor(scope: Construct, id: string, config: ContainerClusterConfig); private _bandwidth?; get bandwidth(): number; set bandwidth(value: number); get bandwidthInput(): number; private _bandwidthType?; get bandwidthType(): string; set bandwidthType(value: string); get bandwidthTypeInput(): string; private _clusterCidr?; get clusterCidr(): string; set clusterCidr(value: string); get clusterCidrInput(): string; private _clusterDesc?; get clusterDesc(): string; set clusterDesc(value: string); resetClusterDesc(): void; get clusterDescInput(): string; private _clusterName?; get clusterName(): string; set clusterName(value: string); get clusterNameInput(): string; private _clusterVersion?; get clusterVersion(): string; set clusterVersion(value: string); resetClusterVersion(): void; get clusterVersionInput(): string; private _cpu?; get cpu(): number; set cpu(value: number); resetCpu(): void; get cpuInput(): number; private _cvmType?; get cvmType(): string; set cvmType(value: string); resetCvmType(): void; get cvmTypeInput(): string; private _dockerGraphPath?; get dockerGraphPath(): string; set dockerGraphPath(value: string); resetDockerGraphPath(): void; get dockerGraphPathInput(): string; private _goodsNum?; get goodsNum(): number; set goodsNum(value: number); get goodsNumInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceName?; get instanceName(): string; set instanceName(value: string); resetInstanceName(): void; get instanceNameInput(): string; private _instanceType?; get instanceType(): string; set instanceType(value: string); get instanceTypeInput(): string; private _isVpcGateway?; get isVpcGateway(): number; set isVpcGateway(value: number); get isVpcGatewayInput(): number; private _keyId?; get keyId(): string; set keyId(value: string); resetKeyId(): void; get keyIdInput(): string; get kubernetesVersion(): any; private _mem?; get mem(): number; set mem(value: number); resetMem(): void; get memInput(): number; private _mountTarget?; get mountTarget(): string; set mountTarget(value: string); resetMountTarget(): void; get mountTargetInput(): string; get nodesNum(): any; get nodesStatus(): any; private _osName?; get osName(): string; set osName(value: string); get osNameInput(): string; private _password?; get password(): string; set password(value: string); resetPassword(): void; get passwordInput(): string; private _period?; get period(): number; set period(value: number); resetPeriod(): void; get periodInput(): number; private _requireWanIp?; get requireWanIp(): number; set requireWanIp(value: number); resetRequireWanIp(): void; get requireWanIpInput(): number; private _rootSize?; get rootSize(): number; set rootSize(value: number); get rootSizeInput(): number; private _rootType?; get rootType(): string; set rootType(value: string); resetRootType(): void; get rootTypeInput(): string; private _sgId?; get sgId(): string; set sgId(value: string); resetSgId(): void; get sgIdInput(): string; private _storageSize?; get storageSize(): number; set storageSize(value: number); get storageSizeInput(): number; private _storageType?; get storageType(): string; set storageType(value: string); resetStorageType(): void; get storageTypeInput(): string; private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string; get totalCpu(): any; get totalMem(): any; private _unschedulable?; get unschedulable(): number; set unschedulable(value: number); resetUnschedulable(): void; get unschedulableInput(): number; private _userScript?; get userScript(): string; set userScript(value: string); resetUserScript(): void; get userScriptInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }