import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TcaplusClusterConfig extends cdktf.TerraformMetaArguments { /** * Name of the TcaplusDB cluster. Name length should be between 1 and 30. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#cluster_name TcaplusCluster#cluster_name} */ readonly clusterName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#id TcaplusCluster#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; /** * IDL type of the TcaplusDB cluster. Valid values: `PROTO` and `TDR`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#idl_type TcaplusCluster#idl_type} */ readonly idlType: string; /** * Expiration time of old password after password update, unit: second. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#old_password_expire_last TcaplusCluster#old_password_expire_last} */ readonly oldPasswordExpireLast?: number; /** * Password of the TcaplusDB cluster. Password length should be between 12 and 16. The password must be a *mix* of uppercase letters (A-Z), lowercase *letters* (a-z) and *numbers* (0-9). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#password TcaplusCluster#password} */ readonly password: string; /** * Subnet id of the TcaplusDB cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#subnet_id TcaplusCluster#subnet_id} */ readonly subnetId: string; /** * VPC id of the TcaplusDB cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#vpc_id TcaplusCluster#vpc_id} */ readonly vpcId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster tencentcloud_tcaplus_cluster} */ export declare class TcaplusCluster extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tcaplus_cluster"; /** * Generates CDKTF code for importing a TcaplusCluster 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 TcaplusCluster to import * @param importFromId The id of the existing TcaplusCluster that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_cluster#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TcaplusCluster 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/tcaplus_cluster tencentcloud_tcaplus_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 TcaplusClusterConfig */ constructor(scope: Construct, id: string, config: TcaplusClusterConfig); get apiAccessId(): any; get apiAccessIp(): any; get apiAccessPort(): any; private _clusterName?; get clusterName(): string; set clusterName(value: string); get clusterNameInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _idlType?; get idlType(): string; set idlType(value: string); get idlTypeInput(): string; get networkType(): any; private _oldPasswordExpireLast?; get oldPasswordExpireLast(): number; set oldPasswordExpireLast(value: number); resetOldPasswordExpireLast(): void; get oldPasswordExpireLastInput(): number; get oldPasswordExpireTime(): any; private _password?; get password(): string; set password(value: string); get passwordInput(): string; get passwordStatus(): any; private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }