import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MysqlParamTemplateConfig extends cdktf.TerraformMetaArguments { /** * The description of parameter template. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#description MysqlParamTemplate#description} */ readonly description?: string; /** * The engine type of instance, optional value is InnoDB or RocksDB, default to InnoDB. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#engine_type MysqlParamTemplate#engine_type} */ readonly engineType?: string; /** * The version of MySQL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#engine_version MysqlParamTemplate#engine_version} */ readonly engineVersion?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#id MysqlParamTemplate#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; /** * The name of parameter template. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#name MysqlParamTemplate#name} */ readonly name: string; /** * The ID of source parameter template. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#template_id MysqlParamTemplate#template_id} */ readonly templateId?: number; /** * The default type of parameter template, supported value is HIGH_STABILITY or HIGH_PERFORMANCE. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#template_type MysqlParamTemplate#template_type} */ readonly templateType?: string; /** * param_list block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#param_list MysqlParamTemplate#param_list} */ readonly paramList?: MysqlParamTemplateParamListStruct[] | cdktf.IResolvable; } export interface MysqlParamTemplateParamListStruct { /** * The value of parameter. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#current_value MysqlParamTemplate#current_value} */ readonly currentValue?: string; /** * The name of parameter. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template#name MysqlParamTemplate#name} */ readonly name?: string; } export declare function mysqlParamTemplateParamListStructToTerraform(struct?: MysqlParamTemplateParamListStruct | cdktf.IResolvable): any; export declare function mysqlParamTemplateParamListStructToHclTerraform(struct?: MysqlParamTemplateParamListStruct | cdktf.IResolvable): any; export declare class MysqlParamTemplateParamListStructOutputReference 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(): MysqlParamTemplateParamListStruct | cdktf.IResolvable | undefined; set internalValue(value: MysqlParamTemplateParamListStruct | cdktf.IResolvable | undefined); private _currentValue?; get currentValue(): string; set currentValue(value: string); resetCurrentValue(): void; get currentValueInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; } export declare class MysqlParamTemplateParamListStructList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MysqlParamTemplateParamListStruct[] | 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): MysqlParamTemplateParamListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_param_template tencentcloud_mysql_param_template} */ export declare class MysqlParamTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_mysql_param_template"; /** * Generates CDKTF code for importing a MysqlParamTemplate 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 MysqlParamTemplate to import * @param importFromId The id of the existing MysqlParamTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_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 MysqlParamTemplate 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/mysql_param_template tencentcloud_mysql_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 MysqlParamTemplateConfig */ constructor(scope: Construct, id: string, config: MysqlParamTemplateConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _engineType?; get engineType(): string; set engineType(value: string); resetEngineType(): void; get engineTypeInput(): string; private _engineVersion?; get engineVersion(): string; set engineVersion(value: string); resetEngineVersion(): void; get engineVersionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _templateId?; get templateId(): number; set templateId(value: number); resetTemplateId(): void; get templateIdInput(): number; private _templateType?; get templateType(): string; set templateType(value: string); resetTemplateType(): void; get templateTypeInput(): string; private _paramList; get paramList(): MysqlParamTemplateParamListStructList; putParamList(value: MysqlParamTemplateParamListStruct[] | cdktf.IResolvable): void; resetParamList(): void; get paramListInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }