import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface HaVipConfig extends cdktf.TerraformMetaArguments { /** * Whether to enable verification of the submachine or network card range during HAVIP drift. Not enabled by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip#check_associate HaVip#check_associate} */ readonly checkAssociate?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip#id HaVip#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; /** * Name of the HA VIP. The length of character is limited to 1-60. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip#name HaVip#name} */ readonly name: string; /** * Subnet ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip#subnet_id HaVip#subnet_id} */ readonly subnetId: string; /** * Virtual IP address, it must not be occupied and in this VPC network segment. If not set, it will be assigned after resource created automatically. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip#vip HaVip#vip} */ readonly vip?: string; /** * VPC ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip#vpc_id HaVip#vpc_id} */ readonly vpcId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip tencentcloud_ha_vip} */ export declare class HaVip extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ha_vip"; /** * Generates CDKTF code for importing a HaVip 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 HaVip to import * @param importFromId The id of the existing HaVip that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ha_vip#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the HaVip 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/ha_vip tencentcloud_ha_vip} 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 HaVipConfig */ constructor(scope: Construct, id: string, config: HaVipConfig); get addressIp(): any; private _checkAssociate?; get checkAssociate(): boolean | cdktf.IResolvable; set checkAssociate(value: boolean | cdktf.IResolvable); resetCheckAssociate(): void; get checkAssociateInput(): any; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get instanceId(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get networkInterfaceId(): any; get state(): any; private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string; private _vip?; get vip(): string; set vip(value: string); resetVip(): void; get vipInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }