isilon/models/
remotesupport_connectemc_connectemc.rs

1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct RemotesupportConnectemcConnectemc {
6    /// Email the customer if all transmission methods fail.
7    #[serde(rename = "email_customer_on_failure")]
8    pub email_customer_on_failure: Option<bool>,
9    /// Enable ConnectEMC.
10    #[serde(rename = "enabled")]
11    pub enabled: Option<bool>,
12    /// List of network pools that are able to connect to the ESRS gateway.  Necessary to enable ConnectEMC.
13    #[serde(rename = "gateway_access_pools")]
14    pub gateway_access_pools: Option<Vec<String>>,
15    /// Primary ESRS Gateway. Necessary to enable ConnectEMC.
16    #[serde(rename = "primary_esrs_gateway")]
17    pub primary_esrs_gateway: Option<String>,
18    /// Secondary ESRS Gateway. Used if Primary is unavailable.
19    #[serde(rename = "secondary_esrs_gateway")]
20    pub secondary_esrs_gateway: Option<String>,
21    /// Use SMPT if primary and secondary gateways are unavailable.
22    #[serde(rename = "use_smtp_failover")]
23    pub use_smtp_failover: Option<bool>,
24}