import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SnmpTrapConfig extends cdktf.TerraformMetaArguments { /** * Community Name. Maximum length = 32 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_trap#community SnmpTrap#community} */ readonly community?: string; /** * Destination Port. Minimum value = 1 Maximum value = * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_trap#dest_port SnmpTrap#dest_port} */ readonly destPort?: number; /** * Trap Destination Server Address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_trap#dest_server SnmpTrap#dest_server} */ readonly destServer: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_trap#id SnmpTrap#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 Trap 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_trap#user_name SnmpTrap#user_name} */ readonly userName?: string[]; /** * SNMP version. Maximum length = 2 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_trap#version SnmpTrap#version} */ readonly version?: string; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_trap netscalersdx_snmp_trap} */ export declare class SnmpTrap extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_snmp_trap"; /** * Generates CDKTF code for importing a SnmpTrap 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 SnmpTrap to import * @param importFromId The id of the existing SnmpTrap that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/snmp_trap#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SnmpTrap 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_trap netscalersdx_snmp_trap} 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 SnmpTrapConfig */ constructor(scope: Construct, id: string, config: SnmpTrapConfig); private _community?; get community(): string; set community(value: string); resetCommunity(): void; get communityInput(): string; private _destPort?; get destPort(): number; set destPort(value: number); resetDestPort(): void; get destPortInput(): number; private _destServer?; get destServer(): string; set destServer(value: string); get destServerInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _userName?; get userName(): string[]; set userName(value: string[]); resetUserName(): void; get userNameInput(): string[]; private _version?; get version(): string; set version(value: string); resetVersion(): void; get versionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }