Class NetworkSnmpSetting
UpdateNetworkSnmpSettings
[DataContract]
public class NetworkSnmpSetting
- Inheritance
-
NetworkSnmpSetting
- Inherited Members
Constructors
NetworkSnmpSetting()
public NetworkSnmpSetting()
Properties
Access
Gets or Sets Access
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "access")]
public SnmpAccess Access { get; set; }
Property Value
Authentication
The SNMP authentication settings. Only relevant if 'access' is set to 'users'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "authentication")]
public NetworkSnmpSettingAuthentication? Authentication { get; set; }
Property Value
CommunityString
The SNMP community string. Only relevant if 'access' is set to 'community'
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "communityString")]
public string? CommunityString { get; set; }
Property Value
Privacy
The SNMP privacy settings. Only relevant if 'access' is set to 'users'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "privacy")]
public NetworkSnmpSettingPrivacy? Privacy { get; set; }
Property Value
Users
The list of SNMP users. Only relevant if 'access' is set to 'users'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "users")]
public List<SnmpUser>? Users { get; set; }