[][src]Struct isilon::models::ClusterEmailExtended

pub struct ClusterEmailExtended {
    pub batch_mode: Option<String>,
    pub mail_relay: Option<String>,
    pub mail_sender: Option<String>,
    pub mail_subject: Option<String>,
    pub smtp_auth_passwd: Option<String>,
    pub smtp_auth_security: Option<String>,
    pub smtp_auth_username: Option<String>,
    pub smtp_port: Option<i32>,
    pub use_smtp_auth: Option<bool>,
    pub user_template: Option<String>,
}

Fields

batch_mode: Option<String>

This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email.

mail_relay: Option<String>

The address of the SMTP server to be used for relaying the notification messages. An SMTP server is required in order to send notifications. If this string is empty, no emails will be sent.

mail_sender: Option<String>

The full email address that will appear as the sender of notification messages.

mail_subject: Option<String>

The subject line for notification messages from this cluster.

smtp_auth_passwd: Option<String>

Password to authenticate with if SMTP authentication is being used.

smtp_auth_security: Option<String>

The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used.

smtp_auth_username: Option<String>

Username to authenticate with if SMTP authentication is being used.

smtp_port: Option<i32>

The port on the SMTP server to be used for relaying the notification messages.

use_smtp_auth: Option<bool>

If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication.

user_template: Option<String>

Location of a custom template file that can be used to specify the layout of the notification emails.

Trait Implementations

impl Debug for ClusterEmailExtended[src]

impl Serialize for ClusterEmailExtended[src]

impl<'de> Deserialize<'de> for ClusterEmailExtended[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