import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TcaplusTablegroupConfig extends cdktf.TerraformMetaArguments { /** * ID of the TcaplusDB cluster to which the table group belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_tablegroup#cluster_id TcaplusTablegroup#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_tablegroup#id TcaplusTablegroup#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; /** * Name of the TcaplusDB table group. 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_tablegroup#tablegroup_name TcaplusTablegroup#tablegroup_name} */ readonly tablegroupName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_tablegroup tencentcloud_tcaplus_tablegroup} */ export declare class TcaplusTablegroup extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tcaplus_tablegroup"; /** * Generates CDKTF code for importing a TcaplusTablegroup 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 TcaplusTablegroup to import * @param importFromId The id of the existing TcaplusTablegroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_tablegroup#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TcaplusTablegroup 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_tablegroup tencentcloud_tcaplus_tablegroup} 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 TcaplusTablegroupConfig */ constructor(scope: Construct, id: string, config: TcaplusTablegroupConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get tableCount(): any; private _tablegroupName?; get tablegroupName(): string; set tablegroupName(value: string); get tablegroupNameInput(): string; get totalSize(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }