[][src]Struct isilon::models::DiagnosticsGatherSettingsExtended

pub struct DiagnosticsGatherSettingsExtended {
    pub esrs: Option<bool>,
    pub ftp_upload: Option<bool>,
    pub ftp_upload_host: Option<String>,
    pub ftp_upload_mode: Option<String>,
    pub ftp_upload_path: Option<String>,
    pub ftp_upload_proxy: Option<String>,
    pub ftp_upload_proxy_port: Option<i32>,
    pub ftp_upload_user: Option<String>,
    pub gather_mode: Option<String>,
    pub http_upload: Option<bool>,
    pub http_upload_host: Option<String>,
    pub http_upload_path: Option<String>,
    pub http_upload_proxy: Option<String>,
    pub http_upload_proxy_port: Option<i32>,
    pub upload: Option<bool>,
    pub ftp_upload_pass: Option<String>,
}

Fields

esrs: Option<bool>

Use ESRS for upload of gather.

ftp_upload: Option<bool>ftp_upload_host: Option<String>

Alternate FTP host to upload to.

ftp_upload_mode: Option<String>

FTP upload mode.

ftp_upload_path: Option<String>

Alternate FTP path to upload to.

ftp_upload_proxy: Option<String>

FTP proxy to use for upload.

ftp_upload_proxy_port: Option<i32>

FTP proxy port to use for upload.

ftp_upload_user: Option<String>

FTP user for upload.

gather_mode: Option<String>

Set gather to full or incremental.

http_upload: Option<bool>

Whether or not to use HTTP upload on completed gather.

http_upload_host: Option<String>

Alternate HTTP Host to upload to.

http_upload_path: Option<String>

Alternate path to write gather to.

http_upload_proxy: Option<String>

Proxy to use for HTTP upload.

http_upload_proxy_port: Option<i32>

Alternate port for proxy server

upload: Option<bool>

Upload gather to EMC.

ftp_upload_pass: Option<String>

FTP password for upload.

Trait Implementations

impl Debug for DiagnosticsGatherSettingsExtended[src]

impl Serialize for DiagnosticsGatherSettingsExtended[src]

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