import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ClbCustomizedConfigV2Config extends cdktf.TerraformMetaArguments { /** * Content of Customized Config. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_customized_config_v2#config_content ClbCustomizedConfigV2#config_content} */ readonly configContent: string; /** * Name of Customized Config. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_customized_config_v2#config_name ClbCustomizedConfigV2#config_name} */ readonly configName: string; /** * Type of Customized Config. Valid values: `SERVER` and `LOCATION`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_customized_config_v2#config_type ClbCustomizedConfigV2#config_type} */ readonly configType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_customized_config_v2#id ClbCustomizedConfigV2#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; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_customized_config_v2 tencentcloud_clb_customized_config_v2} */ export declare class ClbCustomizedConfigV2 extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_clb_customized_config_v2"; /** * Generates CDKTF code for importing a ClbCustomizedConfigV2 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 ClbCustomizedConfigV2 to import * @param importFromId The id of the existing ClbCustomizedConfigV2 that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_customized_config_v2#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ClbCustomizedConfigV2 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/clb_customized_config_v2 tencentcloud_clb_customized_config_v2} 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 ClbCustomizedConfigV2Config */ constructor(scope: Construct, id: string, config: ClbCustomizedConfigV2Config); private _configContent?; get configContent(): string; set configContent(value: string); get configContentInput(): string; get configId(): any; private _configName?; get configName(): string; set configName(value: string); get configNameInput(): string; private _configType?; get configType(): string; set configType(value: string); get configTypeInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get updateTime(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }