Struct redfish_codegen::models::aggregation_source::v1_3_1::SNMPSettings
source · pub struct SNMPSettings {
pub authentication_key: Option<String>,
pub authentication_key_set: Option<bool>,
pub authentication_protocol: Option<SNMPAuthenticationProtocols>,
pub encryption_key: Option<String>,
pub encryption_key_set: Option<bool>,
pub encryption_protocol: Option<SNMPEncryptionProtocols>,
pub trap_community: Option<String>,
}
Expand description
Settings for an SNMP aggregation source.
Fields§
§authentication_key: Option<String>
The secret authentication key for SNMPv3.
authentication_key_set: Option<bool>
Indicates if the AuthenticationKey property is set.
authentication_protocol: Option<SNMPAuthenticationProtocols>
§encryption_key: Option<String>
The secret authentication key for SNMPv3.
encryption_key_set: Option<bool>
Indicates if the EncryptionKey property is set.
encryption_protocol: Option<SNMPEncryptionProtocols>
§trap_community: Option<String>
The SNMP trap community string.
Trait Implementations§
source§impl Clone for SNMPSettings
impl Clone for SNMPSettings
source§fn clone(&self) -> SNMPSettings
fn clone(&self) -> SNMPSettings
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SNMPSettings
impl Debug for SNMPSettings
source§impl Default for SNMPSettings
impl Default for SNMPSettings
source§fn default() -> SNMPSettings
fn default() -> SNMPSettings
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SNMPSettings
impl<'de> Deserialize<'de> for SNMPSettings
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more