[][src]Struct isilon::models::SnmpSettingsExtended

pub struct SnmpSettingsExtended {
    pub read_only_community: Option<String>,
    pub service: Option<bool>,
    pub snmp_v1_v2c_access: Option<bool>,
    pub snmp_v3_access: Option<bool>,
    pub snmp_v3_auth_protocol: Option<String>,
    pub snmp_v3_password: Option<String>,
    pub snmp_v3_priv_password: Option<String>,
    pub snmp_v3_priv_protocol: Option<String>,
    pub snmp_v3_read_only_user: Option<String>,
    pub snmp_v3_security_level: Option<String>,
    pub system_contact: Option<String>,
    pub system_location: Option<String>,
}

Fields

read_only_community: Option<String>

The read-only community name. @DEFAULT reverts this field to its default value.

service: Option<bool>

Whether the SNMP service is enabled.

snmp_v1_v2c_access: Option<bool>

Whether SNMP v1 and v2c protocols are enabled. @DEFAULT reverts this field to its default value.

snmp_v3_access: Option<bool>

Whether SNMP v3 is enabled. @DEFAULT reverts this field to its default value.

snmp_v3_auth_protocol: Option<String>

SNMPv3 authentication protocol. May only be SHA or MD5. @DEFAULT reverts this field to its default value.

snmp_v3_password: Option<String>

This field allows a client to change the SNMP v3 authentication password. There is always a password set. @DEFAULT reverts this field to its default value.

snmp_v3_priv_password: Option<String>

This field allows a client to change the SNMP v3 privacy password. There is always a password set. @DEFAULT reverts this field to its default value.

snmp_v3_priv_protocol: Option<String>

SNMPv3 privacy protocol. May only be AES or DES. @DEFAULT reverts this field to its default value.

snmp_v3_read_only_user: Option<String>

The read-only user for SNMP v3 read requests. @DEFAULT reverts this field to its default value.

snmp_v3_security_level: Option<String>

SNMPv3 privacy protocol. May only be AES or DES. @DEFAULT reverts this field to its default value.

system_contact: Option<String>

Contact information for the system owner. This must be a valid email address. @DEFAULT reverts this field to its default value.

system_location: Option<String>

A location name for the SNMP system. @DEFAULT reverts this field to its default value.

Trait Implementations

impl Debug for SnmpSettingsExtended[src]

impl Serialize for SnmpSettingsExtended[src]

impl<'de> Deserialize<'de> for SnmpSettingsExtended[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T