import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SnmpUserConfig extends cdktf.TerraformMetaArguments { /** * Authentication Password of SNMP User. Minimum length = 8 Maximum length = 32 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#auth_password SnmpUser#auth_password} */ readonly authPassword?: string; /** * * Authentication Protocol of SNMP User. * * Values: * * 0: noValue * * 1: MD5 * * 2: SHA1 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#auth_protocol SnmpUser#auth_protocol} */ readonly authProtocol?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#id SnmpUser#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; /** * Name of SNMP User. Minimum length = 1 Maximum length = 32 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#name SnmpUser#name} */ readonly name: string; /** * Privacy Password of SNMP User. Minimum length = 8 Maximum length = 32 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#privacy_password SnmpUser#privacy_password} */ readonly privacyPassword?: string; /** * * Privacy Protocol of SNMP User. * * Values: * * 0:noValue, * * 1: DES, * * 2: AES. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#privacy_protocol SnmpUser#privacy_protocol} */ readonly privacyProtocol?: number; /** * * Security Level of SNMP User. * * Values: * * 0: noAuthNoPriv, * * 1: authNoPriv, * * 2: authPriv. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#security_level SnmpUser#security_level} */ readonly securityLevel: number; /** * SNMP View Name attached to the SNMP User. Maximum length = 32 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#view_name SnmpUser#view_name} */ readonly viewName?: string; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user netscalersdx_snmp_user} */ export declare class SnmpUser extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_snmp_user"; /** * Generates CDKTF code for importing a SnmpUser 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 SnmpUser to import * @param importFromId The id of the existing SnmpUser that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_user#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SnmpUser 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/snmp_user netscalersdx_snmp_user} 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 SnmpUserConfig */ constructor(scope: Construct, id: string, config: SnmpUserConfig); private _authPassword?; get authPassword(): string; set authPassword(value: string); resetAuthPassword(): void; get authPasswordInput(): string; private _authProtocol?; get authProtocol(): number; set authProtocol(value: number); resetAuthProtocol(): void; get authProtocolInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _privacyPassword?; get privacyPassword(): string; set privacyPassword(value: string); resetPrivacyPassword(): void; get privacyPasswordInput(): string; private _privacyProtocol?; get privacyProtocol(): number; set privacyProtocol(value: number); resetPrivacyProtocol(): void; get privacyProtocolInput(): number; private _securityLevel?; get securityLevel(): number; set securityLevel(value: number); get securityLevelInput(): number; private _viewName?; get viewName(): string; set viewName(value: string); resetViewName(): void; get viewNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }