import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DcGatewayConfig extends cdktf.TerraformMetaArguments { /** * Type of the gateway. Valid value: `NORMAL` and `NAT`. Default is `NORMAL`. NOTES: CCN only supports `NORMAL` and a VPC can create two DCGs, the one is NAT type and the other is non-NAT type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dc_gateway#gateway_type DcGateway#gateway_type} */ readonly gatewayType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dc_gateway#id DcGateway#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 DCG. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dc_gateway#name DcGateway#name} */ readonly name: string; /** * If the `network_type` value is `VPC`, the available value is VPC ID. But when the `network_type` value is `CCN`, the available value is CCN instance ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dc_gateway#network_instance_id DcGateway#network_instance_id} */ readonly networkInstanceId: string; /** * Type of associated network. Valid value: `VPC` and `CCN`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dc_gateway#network_type DcGateway#network_type} */ readonly networkType: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dc_gateway tencentcloud_dc_gateway} */ export declare class DcGateway extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dc_gateway"; /** * Generates CDKTF code for importing a DcGateway 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 DcGateway to import * @param importFromId The id of the existing DcGateway that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dc_gateway#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DcGateway 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/dc_gateway tencentcloud_dc_gateway} 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 DcGatewayConfig */ constructor(scope: Construct, id: string, config: DcGatewayConfig); get cnnRouteType(): any; get createTime(): any; get enableBgp(): any; private _gatewayType?; get gatewayType(): string; set gatewayType(value: string); resetGatewayType(): void; get gatewayTypeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _networkInstanceId?; get networkInstanceId(): string; set networkInstanceId(value: string); get networkInstanceIdInput(): string; private _networkType?; get networkType(): string; set networkType(value: string); get networkTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }