import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ClbInstanceSlaConfigConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_instance_sla_config#id ClbInstanceSlaConfig#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 CLB instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_instance_sla_config#load_balancer_id ClbInstanceSlaConfig#load_balancer_id} */ readonly loadBalancerId: string; /** * This parameter is required to create LCU-supported instances. Values:`SLA`: Super Large 4. When you have activated Super Large models, `SLA` refers to Super Large 4; `clb.c2.medium`: Standard; `clb.c3.small`: Advanced 1; `clb.c3.medium`: Advanced 2; `clb.c4.small`: Super Large 1; `clb.c4.medium`: Super Large 2; `clb.c4.large`: Super Large 3; `clb.c4.xlarge`: Super Large 4. For more details, see [Instance Specifications](https://intl.cloud.tencent.com/document/product/214/84689?from_cn_redirect=1). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_instance_sla_config#sla_type ClbInstanceSlaConfig#sla_type} */ readonly slaType: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_instance_sla_config tencentcloud_clb_instance_sla_config} */ export declare class ClbInstanceSlaConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_clb_instance_sla_config"; /** * Generates CDKTF code for importing a ClbInstanceSlaConfig 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 ClbInstanceSlaConfig to import * @param importFromId The id of the existing ClbInstanceSlaConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_instance_sla_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ClbInstanceSlaConfig 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_instance_sla_config tencentcloud_clb_instance_sla_config} 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 ClbInstanceSlaConfigConfig */ constructor(scope: Construct, id: string, config: ClbInstanceSlaConfigConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _loadBalancerId?; get loadBalancerId(): string; set loadBalancerId(value: string); get loadBalancerIdInput(): string; private _slaType?; get slaType(): string; set slaType(value: string); get slaTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }