import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SslSettingsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings#id SslSettings#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; /** * Enable SSL Renegotiation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings#sslreneg SslSettings#sslreneg} */ readonly sslreneg?: boolean | cdktf.IResolvable; /** * Enable SSLv3. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings#sslv3 SslSettings#sslv3} */ readonly sslv3?: boolean | cdktf.IResolvable; /** * Enable TLSv1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings#tlsv1 SslSettings#tlsv1} */ readonly tlsv1?: boolean | cdktf.IResolvable; /** * Enable TLSv1.1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings#tlsv1_1 SslSettings#tlsv1_1} */ readonly tlsv11?: boolean | cdktf.IResolvable; /** * Enable TLSv1.2. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings#tlsv1_2 SslSettings#tlsv1_2} */ readonly tlsv12?: boolean | cdktf.IResolvable; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings netscalersdx_ssl_settings} */ export declare class SslSettings extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_ssl_settings"; /** * Generates CDKTF code for importing a SslSettings 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 SslSettings to import * @param importFromId The id of the existing SslSettings that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SslSettings 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/netscaler/netscalersdx/0.7.2/docs/resources/ssl_settings netscalersdx_ssl_settings} 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 SslSettingsConfig = {} */ constructor(scope: Construct, id: string, config?: SslSettingsConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _sslreneg?; get sslreneg(): boolean | cdktf.IResolvable; set sslreneg(value: boolean | cdktf.IResolvable); resetSslreneg(): void; get sslrenegInput(): any; private _sslv3?; get sslv3(): boolean | cdktf.IResolvable; set sslv3(value: boolean | cdktf.IResolvable); resetSslv3(): void; get sslv3Input(): any; private _tlsv1?; get tlsv1(): boolean | cdktf.IResolvable; set tlsv1(value: boolean | cdktf.IResolvable); resetTlsv1(): void; get tlsv1Input(): any; private _tlsv11?; get tlsv11(): boolean | cdktf.IResolvable; set tlsv11(value: boolean | cdktf.IResolvable); resetTlsv11(): void; get tlsv11Input(): any; private _tlsv12?; get tlsv12(): boolean | cdktf.IResolvable; set tlsv12(value: boolean | cdktf.IResolvable); resetTlsv12(): void; get tlsv12Input(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }