import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SmtpServerConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#id SmtpServer#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; /** * Is authentication enabled for this smtp server. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#is_auth SmtpServer#is_auth} */ readonly isAuth?: boolean | cdktf.IResolvable; /** * Is this smtp server is SSL support configured.. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#is_ssl SmtpServer#is_ssl} */ readonly isSsl?: boolean | cdktf.IResolvable; /** * Password for the smtp server. Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#password SmtpServer#password} */ readonly password?: string; /** * SMTP Server port address.. Minimum value = 1 Maximum value = * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#port SmtpServer#port} */ readonly port?: number; /** * Email Address from which email is to be sent. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#sender_mail_id SmtpServer#sender_mail_id} */ readonly senderMailId?: string; /** * SMTP server name. Minimum length = 1 Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#server_name SmtpServer#server_name} */ readonly serverName: string; /** * Username for the smtp server. Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#username SmtpServer#username} */ readonly username?: string; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server netscalersdx_smtp_server} */ export declare class SmtpServer extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_smtp_server"; /** * Generates CDKTF code for importing a SmtpServer 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 SmtpServer to import * @param importFromId The id of the existing SmtpServer that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/smtp_server#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SmtpServer 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/smtp_server netscalersdx_smtp_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 SmtpServerConfig */ constructor(scope: Construct, id: string, config: SmtpServerConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _isAuth?; get isAuth(): boolean | cdktf.IResolvable; set isAuth(value: boolean | cdktf.IResolvable); resetIsAuth(): void; get isAuthInput(): any; private _isSsl?; get isSsl(): boolean | cdktf.IResolvable; set isSsl(value: boolean | cdktf.IResolvable); resetIsSsl(): void; get isSslInput(): any; private _password?; get password(): string; set password(value: string); resetPassword(): void; get passwordInput(): string; private _port?; get port(): number; set port(value: number); resetPort(): void; get portInput(): number; private _senderMailId?; get senderMailId(): string; set senderMailId(value: string); resetSenderMailId(): void; get senderMailIdInput(): string; private _serverName?; get serverName(): string; set serverName(value: string); get serverNameInput(): string; private _username?; get username(): string; set username(value: string); resetUsername(): void; get usernameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }