import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TcaplusIdlConfig 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_idl#cluster_id TcaplusIdl#cluster_id} */ readonly clusterId: string; /** * IDL file content of the TcaplusDB table. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl#file_content TcaplusIdl#file_content} */ readonly fileContent: string; /** * File ext type of the IDL file. If `file_type` is `PROTO`, `file_ext_type` must be 'proto'; If `file_type` is `TDR`, `file_ext_type` must be 'xml'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl#file_ext_type TcaplusIdl#file_ext_type} */ readonly fileExtType: string; /** * Name of the IDL file. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl#file_name TcaplusIdl#file_name} */ readonly fileName: string; /** * Type of the IDL file. Valid values are PROTO and TDR. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl#file_type TcaplusIdl#file_type} */ readonly fileType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl#id TcaplusIdl#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 table group to which the IDL file belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl#tablegroup_id TcaplusIdl#tablegroup_id} */ readonly tablegroupId: string; } export interface TcaplusIdlTableInfos { } export declare function tcaplusIdlTableInfosToTerraform(struct?: TcaplusIdlTableInfos): any; export declare function tcaplusIdlTableInfosToHclTerraform(struct?: TcaplusIdlTableInfos): any; export declare class TcaplusIdlTableInfosOutputReference 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(): TcaplusIdlTableInfos | undefined; set internalValue(value: TcaplusIdlTableInfos | undefined); get error(): any; get indexKeySet(): any; get keyFields(): any; get sumKeyFieldSize(): any; get sumValueFieldSize(): any; get tableName(): any; get valueFields(): any; } export declare class TcaplusIdlTableInfosList 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): TcaplusIdlTableInfosOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl tencentcloud_tcaplus_idl} */ export declare class TcaplusIdl extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tcaplus_idl"; /** * Generates CDKTF code for importing a TcaplusIdl 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 TcaplusIdl to import * @param importFromId The id of the existing TcaplusIdl that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcaplus_idl#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TcaplusIdl 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_idl tencentcloud_tcaplus_idl} 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 TcaplusIdlConfig */ constructor(scope: Construct, id: string, config: TcaplusIdlConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; private _fileContent?; get fileContent(): string; set fileContent(value: string); get fileContentInput(): string; private _fileExtType?; get fileExtType(): string; set fileExtType(value: string); get fileExtTypeInput(): string; private _fileName?; get fileName(): string; set fileName(value: string); get fileNameInput(): string; private _fileType?; get fileType(): string; set fileType(value: string); get fileTypeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _tableInfos; get tableInfos(): TcaplusIdlTableInfosList; private _tablegroupId?; get tablegroupId(): string; set tablegroupId(value: string); get tablegroupIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }