import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface UsernameConfig extends cdktf.TerraformMetaArguments { /** * description string with max 128 characters * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#description Username#description} */ readonly description?: 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/username#device Username#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#name Username#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#password Username#password} */ readonly password?: string; /** * * - Choices: `0`, `6`, `7` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#password_encryption Username#password_encryption} */ readonly passwordEncryption?: string; /** * Set user privilege level * - Range: `0`-`15` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#privilege Username#privilege} */ readonly privilege?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#secret Username#secret} */ readonly secret?: string; /** * * - Choices: `0`, `5`, `8`, `9` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#secret_encryption Username#secret_encryption} */ readonly secretEncryption?: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username iosxe_username} */ export declare class Username extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_username"; /** * Generates CDKTF code for importing a Username 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 Username to import * @param importFromId The id of the existing Username that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/username#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Username 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/username iosxe_username} 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 UsernameConfig */ constructor(scope: Construct, id: string, config: UsernameConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _password?; get password(): string; set password(value: string); resetPassword(): void; get passwordInput(): string; private _passwordEncryption?; get passwordEncryption(): string; set passwordEncryption(value: string); resetPasswordEncryption(): void; get passwordEncryptionInput(): string; private _privilege?; get privilege(): number; set privilege(value: number); resetPrivilege(): void; get privilegeInput(): number; private _secret?; get secret(): string; set secret(value: string); resetSecret(): void; get secretInput(): string; private _secretEncryption?; get secretEncryption(): string; set secretEncryption(value: string); resetSecretEncryption(): void; get secretEncryptionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }