import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ContainerClusterInstanceConfig 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_instance#bandwidth ContainerClusterInstance#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_instance#bandwidth_type ContainerClusterInstance#bandwidth_type} */ readonly bandwidthType: string; /** * The id of the cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster_instance#cluster_id ContainerClusterInstance#cluster_id} */ readonly clusterId: 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_instance#cpu ContainerClusterInstance#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_instance#cvm_type ContainerClusterInstance#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_instance#docker_graph_path ContainerClusterInstance#docker_graph_path} */ readonly dockerGraphPath?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster_instance#id ContainerClusterInstance#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#instance_name ContainerClusterInstance#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#instance_type ContainerClusterInstance#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_instance#is_vpc_gateway ContainerClusterInstance#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_instance#key_id ContainerClusterInstance#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_instance#mem ContainerClusterInstance#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_instance#mount_target ContainerClusterInstance#mount_target} */ readonly mountTarget?: 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_instance#password ContainerClusterInstance#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_instance#period ContainerClusterInstance#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_instance#require_wan_ip ContainerClusterInstance#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_instance#root_size ContainerClusterInstance#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_instance#root_type ContainerClusterInstance#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_instance#sg_id ContainerClusterInstance#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_instance#storage_size ContainerClusterInstance#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_instance#storage_type ContainerClusterInstance#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_instance#subnet_id ContainerClusterInstance#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_instance#unschedulable ContainerClusterInstance#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_instance#user_script ContainerClusterInstance#user_script} */ readonly userScript?: 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_instance#zone_id ContainerClusterInstance#zone_id} */ readonly zoneId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster_instance tencentcloud_container_cluster_instance} */ export declare class ContainerClusterInstance extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_container_cluster_instance"; /** * Generates CDKTF code for importing a ContainerClusterInstance 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 ContainerClusterInstance to import * @param importFromId The id of the existing ContainerClusterInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/container_cluster_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ContainerClusterInstance 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_instance tencentcloud_container_cluster_instance} 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 ContainerClusterInstanceConfig */ constructor(scope: Construct, id: string, config: ContainerClusterInstanceConfig); get abnormalReason(): any; 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 _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): 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 _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get instanceId(): any; private _instanceName?; get instanceName(): string; set instanceName(value: string); resetInstanceName(): void; get instanceNameInput(): string; private _instanceType?; get instanceType(): string; set instanceType(value: string); resetInstanceType(): void; get instanceTypeInput(): string; get isNormal(): any; 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 lanIp(): 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; 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; 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; get wanIp(): any; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }