import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TacacsConfig extends cdktf.TerraformMetaArguments { /** * IPv4 address or Hostname for tacacs server * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs#address_ipv4 Tacacs#address_ipv4} */ readonly addressIpv4?: string; /** * 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#delete_mode Tacacs#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#device Tacacs#device} */ readonly device?: string; /** * 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#encryption Tacacs#encryption} */ readonly encryption?: string; /** * The UNENCRYPTED (cleartext) server key * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs#key Tacacs#key} */ readonly key?: string; /** * Name for the tacacs server configuration * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs#name Tacacs#name} */ readonly name: string; /** * TCP port for TACACS+ server (default is 49) * - Range: `1`-`65535` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs#port Tacacs#port} */ readonly port?: number; /** * Time to wait for this TACACS server to reply (overrides default) * - Range: `1`-`1000` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs#timeout Tacacs#timeout} */ readonly timeout?: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs iosxe_tacacs} */ export declare class Tacacs extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_tacacs"; /** * Generates CDKTF code for importing a Tacacs 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 Tacacs to import * @param importFromId The id of the existing Tacacs that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/tacacs#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Tacacs 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 iosxe_tacacs} 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 TacacsConfig */ constructor(scope: Construct, id: string, config: TacacsConfig); private _addressIpv4?; get addressIpv4(): string; set addressIpv4(value: string); resetAddressIpv4(): void; get addressIpv4Input(): string; 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 _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 _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 _timeout?; get timeout(): number; set timeout(value: number); resetTimeout(): void; get timeoutInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }