import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DlcUserVpcConnectionConfig extends cdktf.TerraformMetaArguments { /** * Engine network ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection#engine_network_id DlcUserVpcConnection#engine_network_id} */ readonly engineNetworkId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection#id DlcUserVpcConnection#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; /** * User subnet ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection#user_subnet_id DlcUserVpcConnection#user_subnet_id} */ readonly userSubnetId: string; /** * User vpc endpoint name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection#user_vpc_endpoint_name DlcUserVpcConnection#user_vpc_endpoint_name} */ readonly userVpcEndpointName: string; /** * Manually specify VIP, if not filled in, an IP address under the subnet will be automatically assigned. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection#user_vpc_endpoint_vip DlcUserVpcConnection#user_vpc_endpoint_vip} */ readonly userVpcEndpointVip?: string; /** * User vpc ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection#user_vpc_id DlcUserVpcConnection#user_vpc_id} */ readonly userVpcId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection tencentcloud_dlc_user_vpc_connection} */ export declare class DlcUserVpcConnection extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dlc_user_vpc_connection"; /** * Generates CDKTF code for importing a DlcUserVpcConnection 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 DlcUserVpcConnection to import * @param importFromId The id of the existing DlcUserVpcConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user_vpc_connection#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DlcUserVpcConnection 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/dlc_user_vpc_connection tencentcloud_dlc_user_vpc_connection} 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 DlcUserVpcConnectionConfig */ constructor(scope: Construct, id: string, config: DlcUserVpcConnectionConfig); private _engineNetworkId?; get engineNetworkId(): string; set engineNetworkId(value: string); get engineNetworkIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _userSubnetId?; get userSubnetId(): string; set userSubnetId(value: string); get userSubnetIdInput(): string; get userVpcEndpointId(): any; private _userVpcEndpointName?; get userVpcEndpointName(): string; set userVpcEndpointName(value: string); get userVpcEndpointNameInput(): string; private _userVpcEndpointVip?; get userVpcEndpointVip(): string; set userVpcEndpointVip(value: string); resetUserVpcEndpointVip(): void; get userVpcEndpointVipInput(): string; private _userVpcId?; get userVpcId(): string; set userVpcId(value: string); get userVpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }