import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpnSslServerConfig extends cdktf.TerraformMetaArguments { /** * Need compressed. Currently is not supports compress. Default value: False. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#compress VpnSslServer#compress} */ readonly compress?: boolean | cdktf.IResolvable; /** * The encrypt algorithm. Valid values: AES-128-CBC, AES-192-CBC, AES-256-CBC.Default value: AES-128-CBC. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#encrypt_algorithm VpnSslServer#encrypt_algorithm} */ readonly encryptAlgorithm?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#id VpnSslServer#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 integrity algorithm. Valid values: SHA1. Default value: SHA1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#integrity_algorithm VpnSslServer#integrity_algorithm} */ readonly integrityAlgorithm?: string; /** * List of local CIDR. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#local_address VpnSslServer#local_address} */ readonly localAddress: string[]; /** * Remote CIDR for client. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#remote_address VpnSslServer#remote_address} */ readonly remoteAddress: string; /** * The port of ssl vpn. Currently only supports UDP. Default value: 1194. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#ssl_vpn_port VpnSslServer#ssl_vpn_port} */ readonly sslVpnPort?: number; /** * The protocol of ssl vpn. Default value: UDP. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#ssl_vpn_protocol VpnSslServer#ssl_vpn_protocol} */ readonly sslVpnProtocol?: string; /** * The name of ssl vpn server to be created. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#ssl_vpn_server_name VpnSslServer#ssl_vpn_server_name} */ readonly sslVpnServerName: string; /** * VPN gateway ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#vpn_gateway_id VpnSslServer#vpn_gateway_id} */ readonly vpnGatewayId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server tencentcloud_vpn_ssl_server} */ export declare class VpnSslServer extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vpn_ssl_server"; /** * Generates CDKTF code for importing a VpnSslServer 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 VpnSslServer to import * @param importFromId The id of the existing VpnSslServer that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpn_ssl_server#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpnSslServer 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/vpn_ssl_server tencentcloud_vpn_ssl_server} 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 VpnSslServerConfig */ constructor(scope: Construct, id: string, config: VpnSslServerConfig); private _compress?; get compress(): boolean | cdktf.IResolvable; set compress(value: boolean | cdktf.IResolvable); resetCompress(): void; get compressInput(): any; private _encryptAlgorithm?; get encryptAlgorithm(): string; set encryptAlgorithm(value: string); resetEncryptAlgorithm(): void; get encryptAlgorithmInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _integrityAlgorithm?; get integrityAlgorithm(): string; set integrityAlgorithm(value: string); resetIntegrityAlgorithm(): void; get integrityAlgorithmInput(): string; private _localAddress?; get localAddress(): string[]; set localAddress(value: string[]); get localAddressInput(): string[]; private _remoteAddress?; get remoteAddress(): string; set remoteAddress(value: string); get remoteAddressInput(): string; private _sslVpnPort?; get sslVpnPort(): number; set sslVpnPort(value: number); resetSslVpnPort(): void; get sslVpnPortInput(): number; private _sslVpnProtocol?; get sslVpnProtocol(): string; set sslVpnProtocol(value: string); resetSslVpnProtocol(): void; get sslVpnProtocolInput(): string; private _sslVpnServerName?; get sslVpnServerName(): string; set sslVpnServerName(value: string); get sslVpnServerNameInput(): string; private _vpnGatewayId?; get vpnGatewayId(): string; set vpnGatewayId(value: string); get vpnGatewayIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }