import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LbConfig extends cdktf.TerraformMetaArguments { /** * The type of the LB. Valid value: 'CLASSIC', 'APPLICATION'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb#forward Lb#forward} */ readonly forward?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb#id Lb#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 the LB. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb#name Lb#name} */ readonly name?: string; /** * The project id of the LB, unspecified or 0 stands for default project. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb#project_id Lb#project_id} */ readonly projectId?: number; /** * The network type of the LB. Valid value: 'OPEN', 'INTERNAL'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb#type Lb#type} */ readonly type: string; /** * The VPC ID of the LB, unspecified or 0 stands for CVM basic network. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb#vpc_id Lb#vpc_id} */ readonly vpcId?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb tencentcloud_lb} */ export declare class Lb extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_lb"; /** * Generates CDKTF code for importing a Lb 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 Lb to import * @param importFromId The id of the existing Lb that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lb#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Lb 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/lb tencentcloud_lb} 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 LbConfig */ constructor(scope: Construct, id: string, config: LbConfig); private _forward?; get forward(): string; set forward(value: string); resetForward(): void; get forwardInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _projectId?; get projectId(): number; set projectId(value: number); resetProjectId(): void; get projectIdInput(): number; get status(): any; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); resetVpcId(): void; get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }