Table of Contents

Class NetworkSnmpSetting

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

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

SnmpAccess

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

NetworkSnmpSettingAuthentication

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

string

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

NetworkSnmpSettingPrivacy

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; }

Property Value

List<SnmpUser>