NSX-T Data Center REST API

Snmpv3Target (type)

{
  "additionalProperties": false,
  "description": "This object contains SNMP v3 target/receiver where SNMP traps/notifications will be sent.",
  "id": "Snmpv3Target",
  "module_id": "CentralConfig",
  "properties": {
    "port": {
      "default": 162,
      "description": "SNMP v3 target server's port.",
      "maximum": 65535,
      "minimum": 1,
      "required": false,
      "title": "SNMP v3 target server port",
      "type": "integer"
    },
    "security_level": {
      "default": "AUTH_PRIV",
      "description": "Security level indicates whether SNMP communication involves authentication and privacy protocols for this user. Value \"AUTH_PRIV\" indicates both authentication and privacy protocols will be used for SNMP communication.",
      "enum": [
        "AUTH_PRIV"
      ],
      "title": "Security level",
      "type": "string"
    },
    "server": {
      "$ref": "HostnameOrIPAddress",
      "description": "SNMP v3 target server's IP or FQDN.",
      "required": true,
      "title": "SNMP v3 target server"
    },
    "user_id": {
      "description": "SNMP v3 user id used to notify target server. This SNMP v3 user should already be added in this profile.",
      "maxLength": 32,
      "minLength": 1,
      "required": true,
      "title": "Existing SNMP v3 user id",
      "type": "string"
    }
  },
  "title": "SNMP v3 target",
  "type": "object"
}