import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TacacsServerConfig extends cdktf.TerraformMetaArguments { /** * Unknown Tacacs+ attributes * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#attribute_allow_unknown TacacsServer#attribute_allow_unknown} */ readonly attributeAllowUnknown?: boolean | cdktf.IResolvable; /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is `all`. * - Choices: `all`, `attributes` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#delete_mode TacacsServer#delete_mode} */ readonly deleteMode?: string; /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#device TacacsServer#device} */ readonly device?: string; /** * Allow user to specify tacacs server to use with `@server' * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#directed_request TacacsServer#directed_request} */ readonly directedRequest?: boolean | cdktf.IResolvable; /** * Do not truncate the @hostname from username. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#directed_request_no_truncate TacacsServer#directed_request_no_truncate} */ readonly directedRequestNoTruncate?: boolean | cdktf.IResolvable; /** * restrict queries to directed request servers only * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#directed_request_restricted TacacsServer#directed_request_restricted} */ readonly directedRequestRestricted?: boolean | cdktf.IResolvable; /** * 0 - Specifies an UNENCRYPTED key will follow 6 - Specifies an ENCRYPTED key will follow 7 - Specifies HIDDEN key will follow * - Choices: `0`, `6`, `7` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#encryption TacacsServer#encryption} */ readonly encryption?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#key TacacsServer#key} */ readonly key?: string; /** * Time to wait for a TACACS server to reply * - Range: `1`-`1000` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server#timeout TacacsServer#timeout} */ readonly timeout?: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server iosxe_tacacs_server} */ export declare class TacacsServer extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_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/ciscodevnet/iosxe/0.15.0/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/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs_server iosxe_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 _attributeAllowUnknown?; get attributeAllowUnknown(): boolean | cdktf.IResolvable; set attributeAllowUnknown(value: boolean | cdktf.IResolvable); resetAttributeAllowUnknown(): void; get attributeAllowUnknownInput(): any; private _deleteMode?; get deleteMode(): string; set deleteMode(value: string); resetDeleteMode(): void; get deleteModeInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _directedRequest?; get directedRequest(): boolean | cdktf.IResolvable; set directedRequest(value: boolean | cdktf.IResolvable); resetDirectedRequest(): void; get directedRequestInput(): any; private _directedRequestNoTruncate?; get directedRequestNoTruncate(): boolean | cdktf.IResolvable; set directedRequestNoTruncate(value: boolean | cdktf.IResolvable); resetDirectedRequestNoTruncate(): void; get directedRequestNoTruncateInput(): any; private _directedRequestRestricted?; get directedRequestRestricted(): boolean | cdktf.IResolvable; set directedRequestRestricted(value: boolean | cdktf.IResolvable); resetDirectedRequestRestricted(): void; get directedRequestRestrictedInput(): any; private _encryption?; get encryption(): string; set encryption(value: string); resetEncryption(): void; get encryptionInput(): string; get id(): any; private _key?; get key(): string; set key(value: string); resetKey(): void; get keyInput(): string; private _timeout?; get timeout(): number; set timeout(value: number); resetTimeout(): void; get timeoutInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }