OBJECT

SnmpConfiguration

Description

Supported in v5.0+ v5.0-v5.1: SNMP service configuration object. v5.2+: SNMP service configuration object summary.

link GraphQL Schema definition

  • type SnmpConfiguration {
  • # Supported in v5.0+
  • # v5.0-v5.1: communicatyString is a user specified string for authentication to
  • # access SNMP statistics.
  • #
  • # v5.2+: communityString is a user specified string for authentication to access
  • # SNMP statistics. Provides access to MIBs using SNMP v2c.
  • communityString: String
  • # Required. Supported in v5.0+
  • # Boolean value that specifies whether the SNMP service is enabled. Set the value
  • # to true to enable the SNMP service and false to disable the SNMP service.
  • isEnabled: Boolean!
  • # Required. Supported in v5.0+
  • # The SNMP agent port on the Rubrik cluster node.
  • snmpAgentPort: Int!
  • # Supported in v5.0+
  • # Array of SNMP trap receivers for the SNMP service.
  • trapReceiverConfigs: [SnmpTrapReceiverConfig!]!
  • # Supported in v5.2+
  • # Array of usernames for the SNMP service. Provides access to MIBs using SNMP v3.
  • users: [String!]!
  • }