import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CynosdbParamTemplateConfig extends cdktf.TerraformMetaArguments { /** * Database type, optional values: NORMAL (default), SERVERLESS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#db_mode CynosdbParamTemplate#db_mode} */ readonly dbMode?: string; /** * MySQL version number. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#engine_version CynosdbParamTemplate#engine_version} */ readonly engineVersion: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#id CynosdbParamTemplate#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; /** * Template Description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#template_description CynosdbParamTemplate#template_description} */ readonly templateDescription?: string; /** * Optional parameter, template ID to be copied. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#template_id CynosdbParamTemplate#template_id} */ readonly templateId?: number; /** * Template Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#template_name CynosdbParamTemplate#template_name} */ readonly templateName: string; /** * param_list block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#param_list CynosdbParamTemplate#param_list} */ readonly paramList?: CynosdbParamTemplateParamListStruct[] | cdktf.IResolvable; } export interface CynosdbParamTemplateParamListStruct { /** * Current value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#current_value CynosdbParamTemplate#current_value} */ readonly currentValue?: string; /** * Parameter Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#param_name CynosdbParamTemplate#param_name} */ readonly paramName?: string; } export declare function cynosdbParamTemplateParamListStructToTerraform(struct?: CynosdbParamTemplateParamListStruct | cdktf.IResolvable): any; export declare function cynosdbParamTemplateParamListStructToHclTerraform(struct?: CynosdbParamTemplateParamListStruct | cdktf.IResolvable): any; export declare class CynosdbParamTemplateParamListStructOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): CynosdbParamTemplateParamListStruct | cdktf.IResolvable | undefined; set internalValue(value: CynosdbParamTemplateParamListStruct | cdktf.IResolvable | undefined); private _currentValue?; get currentValue(): string; set currentValue(value: string); resetCurrentValue(): void; get currentValueInput(): string; private _paramName?; get paramName(): string; set paramName(value: string); resetParamName(): void; get paramNameInput(): string; } export declare class CynosdbParamTemplateParamListStructList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: CynosdbParamTemplateParamListStruct[] | cdktf.IResolvable; /** * @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): CynosdbParamTemplateParamListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template tencentcloud_cynosdb_param_template} */ export declare class CynosdbParamTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cynosdb_param_template"; /** * Generates CDKTF code for importing a CynosdbParamTemplate 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 CynosdbParamTemplate to import * @param importFromId The id of the existing CynosdbParamTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_param_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CynosdbParamTemplate 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/cynosdb_param_template tencentcloud_cynosdb_param_template} 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 CynosdbParamTemplateConfig */ constructor(scope: Construct, id: string, config: CynosdbParamTemplateConfig); private _dbMode?; get dbMode(): string; set dbMode(value: string); resetDbMode(): void; get dbModeInput(): string; private _engineVersion?; get engineVersion(): string; set engineVersion(value: string); get engineVersionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _templateDescription?; get templateDescription(): string; set templateDescription(value: string); resetTemplateDescription(): void; get templateDescriptionInput(): string; private _templateId?; get templateId(): number; set templateId(value: number); resetTemplateId(): void; get templateIdInput(): number; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; private _paramList; get paramList(): CynosdbParamTemplateParamListStructList; putParamList(value: CynosdbParamTemplateParamListStruct[] | cdktf.IResolvable): void; resetParamList(): void; get paramListInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }