import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MysqlDeployGroupConfig extends cdktf.TerraformMetaArguments { /** * The name of deploy group. the maximum length cannot exceed 60 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_deploy_group#deploy_group_name MysqlDeployGroup#deploy_group_name} */ readonly deployGroupName: string; /** * The description of deploy group. the maximum length cannot exceed 200 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_deploy_group#description MysqlDeployGroup#description} */ readonly description?: string; /** * The device class of deploy group. optional value is SH12+SH02, TS85, etc. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_deploy_group#dev_class MysqlDeployGroup#dev_class} */ readonly devClass?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_deploy_group#id MysqlDeployGroup#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 limit on the number of instances on the same physical machine in deploy group affinity policy 1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_deploy_group#limit_num MysqlDeployGroup#limit_num} */ readonly limitNum?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_deploy_group tencentcloud_mysql_deploy_group} */ export declare class MysqlDeployGroup extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_mysql_deploy_group"; /** * Generates CDKTF code for importing a MysqlDeployGroup 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 MysqlDeployGroup to import * @param importFromId The id of the existing MysqlDeployGroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_deploy_group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MysqlDeployGroup 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_deploy_group tencentcloud_mysql_deploy_group} 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 MysqlDeployGroupConfig */ constructor(scope: Construct, id: string, config: MysqlDeployGroupConfig); private _deployGroupName?; get deployGroupName(): string; set deployGroupName(value: string); get deployGroupNameInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _devClass?; get devClass(): string[]; set devClass(value: string[]); resetDevClass(): void; get devClassInput(): string[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _limitNum?; get limitNum(): number; set limitNum(value: number); resetLimitNum(): void; get limitNumInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }