NSX-T Data Center REST API

Snmpv3Properties (type)

{
  "description": "This object contains list of SNMP v3 users used to poll NSX nodes over SNMP and list of SNMP v3 targets used to receive SNMP traps/notifications from NSX nodes. Users specified in a SNMP v3 target must exist in the list of SNMP v3 users.",
  "id": "Snmpv3Properties",
  "module_id": "CentralConfig",
  "properties": {
    "auth_protocol": {
      "default": "SHA1",
      "description": "Authentication protocol used for SNMP v3 communication.",
      "enum": [
        "SHA1",
        "SHA256",
        "SHA384",
        "SHA512"
      ],
      "title": "Authentication protocol",
      "type": "string"
    },
    "cc_users": {
      "description": "List of CentralConfig SNMP v3 users allowed to poll NSX nodes over SNMP. Also, users specified in a SNMP v3 target must exist in this list.",
      "items": {
        "$ref": "CCSnmpV3User"
      },
      "maxItems": 5,
      "required": false,
      "title": "SNMP v3 users",
      "type": "array"
    },
    "priv_protocol": {
      "default": "AES128",
      "description": "Privacy protocol used for SNMP v3 communication.",
      "enum": [
        "AES128",
        "AES192",
        "AES256"
      ],
      "title": "Privacy protocol",
      "type": "string"
    },
    "targets": {
      "description": "List of SNMP v3 targets/receivers where SNMP v3 traps/notifications will be sent from NSX nodes.",
      "items": {
        "$ref": "Snmpv3Target"
      },
      "maxItems": 3,
      "required": false,
      "title": "SNMP v3 targets",
      "type": "array"
    },
    "users": {
      "deprecated": true,
      "deprecation_advice": "Please make use of use cc_users",
      "description": "List of SNMP v3 users allowed to poll NSX nodes over SNMP. Also, users specified in a SNMP v3 target must exist in this list.",
      "items": {
        "$ref": "Snmpv3User"
      },
      "maxItems": 5,
      "required": false,
      "title": "SNMP v3 users",
      "type": "array"
    }
  },
  "title": "SNMP v3 properties",
  "type": "object"
}