import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface RouteEntryConfig extends cdktf.TerraformMetaArguments { /** * The RouteEntry's target network segment. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry#cidr_block RouteEntry#cidr_block} */ readonly cidrBlock: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry#id RouteEntry#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 route entry's next hub. CVM instance ID or VPC router interface ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry#next_hub RouteEntry#next_hub} */ readonly nextHub: string; /** * The next hop type. Valid values: `public_gateway`,`vpn_gateway`,`sslvpn_gateway`,`dc_gateway`,`peering_connection`,`nat_gateway`,`havip`,`local_gateway`, `intranat`, `user_ccn`, `gwlb_endpoint` and `instance`. `instance` points to CVM Instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry#next_type RouteEntry#next_type} */ readonly nextType: string; /** * The ID of the route table. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry#route_table_id RouteEntry#route_table_id} */ readonly routeTableId: string; /** * The VPC ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry#vpc_id RouteEntry#vpc_id} */ readonly vpcId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry tencentcloud_route_entry} */ export declare class RouteEntry extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_route_entry"; /** * Generates CDKTF code for importing a RouteEntry 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 RouteEntry to import * @param importFromId The id of the existing RouteEntry that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/route_entry#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the RouteEntry 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/route_entry tencentcloud_route_entry} 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 RouteEntryConfig */ constructor(scope: Construct, id: string, config: RouteEntryConfig); private _cidrBlock?; get cidrBlock(): string; set cidrBlock(value: string); get cidrBlockInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _nextHub?; get nextHub(): string; set nextHub(value: string); get nextHubInput(): string; private _nextType?; get nextType(): string; set nextType(value: string); get nextTypeInput(): string; private _routeTableId?; get routeTableId(): string; set routeTableId(value: string); get routeTableIdInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }