import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DayuEipConfig extends cdktf.TerraformMetaArguments { /** * Resource id to bind. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip#bind_resource_id DayuEip#bind_resource_id} */ readonly bindResourceId: string; /** * Resource region to bind. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip#bind_resource_region DayuEip#bind_resource_region} */ readonly bindResourceRegion: string; /** * Resource type to bind, value range [`clb`, `cvm`]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip#bind_resource_type DayuEip#bind_resource_type} */ readonly bindResourceType: string; /** * Eip of the resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip#eip DayuEip#eip} */ readonly eip: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip#id DayuEip#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 resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip#resource_id DayuEip#resource_id} */ readonly resourceId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip tencentcloud_dayu_eip} */ export declare class DayuEip extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dayu_eip"; /** * Generates CDKTF code for importing a DayuEip 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 DayuEip to import * @param importFromId The id of the existing DayuEip that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dayu_eip#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DayuEip 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/dayu_eip tencentcloud_dayu_eip} 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 DayuEipConfig */ constructor(scope: Construct, id: string, config: DayuEipConfig); private _bindResourceId?; get bindResourceId(): string; set bindResourceId(value: string); get bindResourceIdInput(): string; private _bindResourceRegion?; get bindResourceRegion(): string; set bindResourceRegion(value: string); get bindResourceRegionInput(): string; private _bindResourceType?; get bindResourceType(): string; set bindResourceType(value: string); get bindResourceTypeInput(): string; get createdTime(): any; private _eip?; get eip(): string; set eip(value: string); get eipInput(): string; get eipAddressStatus(): any; get eipBoundRscEni(): any; get eipBoundRscIns(): any; get eipBoundRscVip(): any; get expiredTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get modifyTime(): any; get protectionStatus(): any; private _resourceId?; get resourceId(): string; set resourceId(value: string); get resourceIdInput(): string; get resourceRegion(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }