Name: ApplianceSnmpUser

Defines SNMP user settings on Tintri System. It has a user name and security settings. Security settings consist of authentication type and privacy type as well as associated keys for each of these security types.

Data Structure
{
   "typeId": "com.tintri.api.rest.v310.dto.domain.beans.snmp.ApplianceSnmpUser",
   "authPassword": <String>,
   "authProtocol": 'NONE' | 'MD5' | 'SHA',
   "privacyPassword": <String>,
   "privacyProtocol": 'NONE' | 'PRIV_DES' | 'PRIV_3DES' | 'PRIV_AES128',
   "username": <String>,
}

Attributes
NameTypeDescription
authPasswordxsd:stringThe SNMP authentication key associated with the authentication type.
authProtocolNONE | MD5 | SHAThe SNMP authentication type.
NONESNMP authorization protocol is not used
MD5SNMP authorization uses MD5 protocol
SHASNMP authorization uses SHA protocol
privacyPasswordxsd:stringThe SNMP key associated with the privacy protocol type.
privacyProtocolNONE | PRIV_DES | PRIV_3DES | PRIV_AES128The SNMP privacy protocol type.
NONESNMP does not use a privacy protocol
PRIV_DESSNMP uses the privacy protocol DES
PRIV_3DESSNMP uses the privacy protocol 3-DES for SNMPv3
PRIV_AES128SNMP uses the privacy protocol AES128 for SNMPv3
usernamexsd:stringThe SNMP user name.