[][src]Struct isilon::models::CloudSettingsSettingsCloudPolicyDefaults

pub struct CloudSettingsSettingsCloudPolicyDefaults {
    pub archive_snapshot_files: Option<bool>,
    pub cache: Option<CloudSettingsSettingsCloudPolicyDefaultsCache>,
    pub compression: Option<bool>,
    pub data_retention: Option<i32>,
    pub encryption: Option<bool>,
    pub full_backup_retention: Option<i32>,
    pub incremental_backup_retention: Option<i32>,
    pub writeback_frequency: Option<i32>,
}

Fields

archive_snapshot_files: Option<bool>

Specifies if files with snapshots should be archived.

cache: Option<CloudSettingsSettingsCloudPolicyDefaultsCache>

Specifies default cloudpool cache settings for new filepool policies.

compression: Option<bool>

Specifies if files should be compressed.

data_retention: Option<i32>

Specifies the minimum amount of time archived data will be retained in the cloud after deletion.

encryption: Option<bool>

Specifies if files should be encrypted.

full_backup_retention: Option<i32>

(Used with NDMP backups only. Not applicable to SyncIQ.) The minimum amount of time cloud files will be retained after the creation of a full NDMP backup.

incremental_backup_retention: Option<i32>

(Used with SyncIQ and NDMP backups.) The minimum amount of time cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup.

writeback_frequency: Option<i32>

The minimum amount of time to wait before updating cloud data with local changes.

Trait Implementations

impl Debug for CloudSettingsSettingsCloudPolicyDefaults[src]

impl Serialize for CloudSettingsSettingsCloudPolicyDefaults[src]

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