import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TacacsServerConfig extends cdktf.TerraformMetaArguments { /** * Enable accounting in the tacacs server. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#accounting TacacsServer#accounting} */ readonly accounting?: boolean | cdktf.IResolvable; /** * The maximum number of seconds the system will wait for a response from the TACACS server. Minimum value = 1 Maximum value = * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#auth_timeout TacacsServer#auth_timeout} */ readonly authTimeout?: number; /** * The Attribute name for group extraction from the ACS server. If not passed, then groups will not be extracted. No other harm. Maximum length = 64 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#group_attr_name TacacsServer#group_attr_name} */ readonly groupAttrName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#id TacacsServer#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; /** * IP Address of TACACS server. Minimum length = 1 Maximum length = 64 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#ip_address TacacsServer#ip_address} */ readonly ipAddress: string; /** * Name of TACACS server. Minimum length = 1 Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#name TacacsServer#name} */ readonly name: string; /** * port number of TACACS server. Minimum value = 1 Maximum value = * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#port TacacsServer#port} */ readonly port?: number; /** * Key shared between the TACACS+ server and clients. Minimum length = 1 Maximum length = 64 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#tacacs_key TacacsServer#tacacs_key} */ readonly tacacsKey: string; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server netscalersdx_tacacs_server} */ export declare class TacacsServer extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_tacacs_server"; /** * Generates CDKTF code for importing a TacacsServer 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 TacacsServer to import * @param importFromId The id of the existing TacacsServer that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/tacacs_server#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TacacsServer 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/tacacs_server netscalersdx_tacacs_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 TacacsServerConfig */ constructor(scope: Construct, id: string, config: TacacsServerConfig); private _accounting?; get accounting(): boolean | cdktf.IResolvable; set accounting(value: boolean | cdktf.IResolvable); resetAccounting(): void; get accountingInput(): any; private _authTimeout?; get authTimeout(): number; set authTimeout(value: number); resetAuthTimeout(): void; get authTimeoutInput(): number; private _groupAttrName?; get groupAttrName(): string; set groupAttrName(value: string); resetGroupAttrName(): void; get groupAttrNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ipAddress?; get ipAddress(): string; set ipAddress(value: string); get ipAddressInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _port?; get port(): number; set port(value: number); resetPort(): void; get portInput(): number; private _tacacsKey?; get tacacsKey(): string; set tacacsKey(value: string); get tacacsKeyInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }