1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/// SnmpSettingsExtended : SNMP settings.
#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct SnmpSettingsExtended {
/// The read-only community name. @DEFAULT reverts this field to its default value.
#[serde(rename = "read_only_community")]
pub read_only_community: Option<String>,
/// Whether the SNMP service is enabled.
#[serde(rename = "service")]
pub service: Option<bool>,
/// Whether SNMP v1 and v2c protocols are enabled. @DEFAULT reverts this field to its default value.
#[serde(rename = "snmp_v1_v2c_access")]
pub snmp_v1_v2c_access: Option<bool>,
/// Whether SNMP v3 is enabled. @DEFAULT reverts this field to its default value.
#[serde(rename = "snmp_v3_access")]
pub snmp_v3_access: Option<bool>,
/// SNMPv3 authentication protocol. May only be SHA or MD5. @DEFAULT reverts this field to its default value.
#[serde(rename = "snmp_v3_auth_protocol")]
pub snmp_v3_auth_protocol: 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.
#[serde(rename = "snmp_v3_password")]
pub snmp_v3_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.
#[serde(rename = "snmp_v3_priv_password")]
pub snmp_v3_priv_password: Option<String>,
/// SNMPv3 privacy protocol. May only be AES or DES. @DEFAULT reverts this field to its default value.
#[serde(rename = "snmp_v3_priv_protocol")]
pub snmp_v3_priv_protocol: Option<String>,
/// The read-only user for SNMP v3 read requests. @DEFAULT reverts this field to its default value.
#[serde(rename = "snmp_v3_read_only_user")]
pub snmp_v3_read_only_user: Option<String>,
/// SNMPv3 privacy protocol. May only be AES or DES. @DEFAULT reverts this field to its default value.
#[serde(rename = "snmp_v3_security_level")]
pub snmp_v3_security_level: Option<String>,
/// Contact information for the system owner. This must be a valid email address. @DEFAULT reverts this field to its default value.
#[serde(rename = "system_contact")]
pub system_contact: Option<String>,
/// A location name for the SNMP system. @DEFAULT reverts this field to its default value.
#[serde(rename = "system_location")]
pub system_location: Option<String>,
}