import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcPeerConnectManagerConfig extends cdktf.TerraformMetaArguments { /** * Bandwidth upper limit, unit Mbps. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#bandwidth VpcPeerConnectManager#bandwidth} */ readonly bandwidth?: number; /** * Billing mode, daily peak value POSTPAID_BY_DAY_MAX, monthly value 95 POSTPAID_BY_MONTH_95. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#charge_type VpcPeerConnectManager#charge_type} */ readonly chargeType?: string; /** * Peer region. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#destination_region VpcPeerConnectManager#destination_region} */ readonly destinationRegion: string; /** * Peer user UIN. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#destination_uin VpcPeerConnectManager#destination_uin} */ readonly destinationUin: string; /** * The unique ID of the peer VPC. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#destination_vpc_id VpcPeerConnectManager#destination_vpc_id} */ readonly destinationVpcId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#id VpcPeerConnectManager#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; /** * Peer connection name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#peering_connection_name VpcPeerConnectManager#peering_connection_name} */ readonly peeringConnectionName: string; /** * Service classification PT, AU, AG. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#qos_level VpcPeerConnectManager#qos_level} */ readonly qosLevel?: string; /** * The unique ID of the local VPC. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#source_vpc_id VpcPeerConnectManager#source_vpc_id} */ readonly sourceVpcId: string; /** * Interworking type, VPC_PEER interworking between VPCs; VPC_BM_PEER interworking between VPC and BM Network. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#type VpcPeerConnectManager#type} */ readonly type?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager tencentcloud_vpc_peer_connect_manager} */ export declare class VpcPeerConnectManager extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vpc_peer_connect_manager"; /** * Generates CDKTF code for importing a VpcPeerConnectManager 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 VpcPeerConnectManager to import * @param importFromId The id of the existing VpcPeerConnectManager that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_peer_connect_manager#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpcPeerConnectManager 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/vpc_peer_connect_manager tencentcloud_vpc_peer_connect_manager} 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 VpcPeerConnectManagerConfig */ constructor(scope: Construct, id: string, config: VpcPeerConnectManagerConfig); private _bandwidth?; get bandwidth(): number; set bandwidth(value: number); resetBandwidth(): void; get bandwidthInput(): number; private _chargeType?; get chargeType(): string; set chargeType(value: string); resetChargeType(): void; get chargeTypeInput(): string; private _destinationRegion?; get destinationRegion(): string; set destinationRegion(value: string); get destinationRegionInput(): string; private _destinationUin?; get destinationUin(): string; set destinationUin(value: string); get destinationUinInput(): string; private _destinationVpcId?; get destinationVpcId(): string; set destinationVpcId(value: string); get destinationVpcIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _peeringConnectionName?; get peeringConnectionName(): string; set peeringConnectionName(value: string); get peeringConnectionNameInput(): string; private _qosLevel?; get qosLevel(): string; set qosLevel(value: string); resetQosLevel(): void; get qosLevelInput(): string; private _sourceVpcId?; get sourceVpcId(): string; set sourceVpcId(value: string); get sourceVpcIdInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }