import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudTcaplusTablesConfig extends cdktf.TerraformMetaArguments { /** * ID of the TcaplusDB cluster to be query. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables#cluster_id DataTencentcloudTcaplusTables#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables#id DataTencentcloudTcaplusTables#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; /** * File for saving results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables#result_output_file DataTencentcloudTcaplusTables#result_output_file} */ readonly resultOutputFile?: string; /** * Table ID to be query. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables#table_id DataTencentcloudTcaplusTables#table_id} */ readonly tableId?: string; /** * Table name to be query. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables#table_name DataTencentcloudTcaplusTables#table_name} */ readonly tableName?: string; /** * ID of the table group to be query. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables#tablegroup_id DataTencentcloudTcaplusTables#tablegroup_id} */ readonly tablegroupId?: string; } export interface DataTencentcloudTcaplusTablesListStruct { } export declare function dataTencentcloudTcaplusTablesListStructToTerraform(struct?: DataTencentcloudTcaplusTablesListStruct): any; export declare function dataTencentcloudTcaplusTablesListStructToHclTerraform(struct?: DataTencentcloudTcaplusTablesListStruct): any; export declare class DataTencentcloudTcaplusTablesListStructOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataTencentcloudTcaplusTablesListStruct | undefined; set internalValue(value: DataTencentcloudTcaplusTablesListStruct | undefined); get createTime(): any; get description(): any; get error(): any; get idlId(): any; get reservedReadCu(): any; get reservedVolume(): any; get reservedWriteCu(): any; get status(): any; get tableId(): any; get tableIdlType(): any; get tableName(): any; get tableSize(): any; get tableType(): any; get tablegroupId(): any; } export declare class DataTencentcloudTcaplusTablesListStructList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataTencentcloudTcaplusTablesListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables tencentcloud_tcaplus_tables} */ export declare class DataTencentcloudTcaplusTables extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_tcaplus_tables"; /** * Generates CDKTF code for importing a DataTencentcloudTcaplusTables 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 DataTencentcloudTcaplusTables to import * @param importFromId The id of the existing DataTencentcloudTcaplusTables that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcaplus_tables#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudTcaplusTables 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/data-sources/tcaplus_tables tencentcloud_tcaplus_tables} Data Source * * @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 DataTencentcloudTcaplusTablesConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudTcaplusTablesConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _list; get list(): DataTencentcloudTcaplusTablesListStructList; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _tableId?; get tableId(): string; set tableId(value: string); resetTableId(): void; get tableIdInput(): string; private _tableName?; get tableName(): string; set tableName(value: string); resetTableName(): void; get tableNameInput(): string; private _tablegroupId?; get tablegroupId(): string; set tablegroupId(value: string); resetTablegroupId(): void; get tablegroupIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }