import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TcaplusTableConfig extends cdktf.TerraformMetaArguments { /** * ID of the TcaplusDB cluster to which the table belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#cluster_id TcaplusTable#cluster_id} */ readonly clusterId: string; /** * Description of the TcaplusDB table. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#description TcaplusTable#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#id TcaplusTable#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; /** * ID of the IDL File. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#idl_id TcaplusTable#idl_id} */ readonly idlId: string; /** * Reserved read capacity units of the TcaplusDB table. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#reserved_read_cu TcaplusTable#reserved_read_cu} */ readonly reservedReadCu: number; /** * Reserved storage capacity of the TcaplusDB table (unit: GB). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#reserved_volume TcaplusTable#reserved_volume} */ readonly reservedVolume: number; /** * Reserved write capacity units of the TcaplusDB table. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#reserved_write_cu TcaplusTable#reserved_write_cu} */ readonly reservedWriteCu: number; /** * IDL type of the TcaplusDB table. Valid values: `PROTO` and `TDR`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#table_idl_type TcaplusTable#table_idl_type} */ readonly tableIdlType: string; /** * Name of the TcaplusDB table. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#table_name TcaplusTable#table_name} */ readonly tableName: string; /** * Type of the TcaplusDB table. Valid values are `GENERIC` and `LIST`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#table_type TcaplusTable#table_type} */ readonly tableType: string; /** * ID of the table group to which the table belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#tablegroup_id TcaplusTable#tablegroup_id} */ readonly tablegroupId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table tencentcloud_tcaplus_table} */ export declare class TcaplusTable extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tcaplus_table"; /** * Generates CDKTF code for importing a TcaplusTable 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 TcaplusTable to import * @param importFromId The id of the existing TcaplusTable that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_table#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TcaplusTable 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_table tencentcloud_tcaplus_table} 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 TcaplusTableConfig */ constructor(scope: Construct, id: string, config: TcaplusTableConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get createTime(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get error(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _idlId?; get idlId(): string; set idlId(value: string); get idlIdInput(): string; private _reservedReadCu?; get reservedReadCu(): number; set reservedReadCu(value: number); get reservedReadCuInput(): number; private _reservedVolume?; get reservedVolume(): number; set reservedVolume(value: number); get reservedVolumeInput(): number; private _reservedWriteCu?; get reservedWriteCu(): number; set reservedWriteCu(value: number); get reservedWriteCuInput(): number; get status(): any; private _tableIdlType?; get tableIdlType(): string; set tableIdlType(value: string); get tableIdlTypeInput(): string; private _tableName?; get tableName(): string; set tableName(value: string); get tableNameInput(): string; get tableSize(): any; private _tableType?; get tableType(): string; set tableType(value: string); get tableTypeInput(): string; private _tablegroupId?; get tablegroupId(): string; set tablegroupId(value: string); get tablegroupIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }