[][src]Struct isilon::models::SettingsGlobalSettings

pub struct SettingsGlobalSettings {
    pub audited_zones: Option<Vec<String>>,
    pub cee_log_time: Option<String>,
    pub cee_server_uris: Option<Vec<String>>,
    pub config_auditing_enabled: Option<bool>,
    pub config_syslog_enabled: Option<bool>,
    pub hostname: Option<String>,
    pub protocol_auditing_enabled: Option<bool>,
    pub syslog_log_time: Option<String>,
}

Fields

audited_zones: Option<Vec<String>>

Specifies zones that are audited when the protocol_auditing_enabled property is enabled.

cee_log_time: Option<String>

Specifies that events past a certain date are forwarded by the audit CEE forwarder. Format these events as follows: 'Topic@YYYY-MM-DD HH:MM:SS'.

cee_server_uris: Option<Vec<String>>

Specifies a list of Common Event Enabler (CEE) server URIs. Protocol audit logs are sent to these URIs for external processing.

config_auditing_enabled: Option<bool>

Specifies whether logging for API configuration changes are enabled.

config_syslog_enabled: Option<bool>

Specifies whether configuration audit syslog messages are forwarded.

hostname: Option<String>

Specifies the hostname that is reported in protocol events from this cluster.

protocol_auditing_enabled: Option<bool>

Specifies if logging for the I/O stream is enabled.

syslog_log_time: Option<String>

Specifies that events past a specified date are forwarded by the audit syslog forwarder. Format these events as follows: 'Topic@YYYY-MM-DD HH:MM:SS' format

Trait Implementations

impl Debug for SettingsGlobalSettings[src]

impl Serialize for SettingsGlobalSettings[src]

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