[][src]Struct isilon::models::StoragepoolSettingsSettings

pub struct StoragepoolSettingsSettings {
    pub automatically_manage_io_optimization: String,
    pub automatically_manage_protection: String,
    pub global_namespace_acceleration_enabled: bool,
    pub global_namespace_acceleration_state: String,
    pub protect_directories_one_level_higher: bool,
    pub spillover_enabled: bool,
    pub spillover_target: StoragepoolSettingsSettingsSpilloverTarget,
    pub ssd_l3_cache_default_enabled: bool,
    pub ssd_qab_mirrors: String,
    pub ssd_system_btree_mirrors: String,
    pub ssd_system_delta_mirrors: String,
    pub virtual_hot_spare_deny_writes: bool,
    pub virtual_hot_spare_hide_spare: bool,
    pub virtual_hot_spare_limit_drives: i32,
    pub virtual_hot_spare_limit_percent: i32,
}

Fields

automatically_manage_io_optimization: String

Automatically manage IO optimization settings on files.

automatically_manage_protection: String

Automatically manage protection settings on files.

global_namespace_acceleration_enabled: bool

Optimize namespace operations by storing metadata on SSDs.

global_namespace_acceleration_state: String

Whether or not namespace operation optimizations are currently in effect.

protect_directories_one_level_higher: bool

Automatically add additional protection level to all directories.

spillover_enabled: bool

Spill writes into other pools as needed.

spillover_target: StoragepoolSettingsSettingsSpilloverTarget

Target pool for spilled writes.

ssd_l3_cache_default_enabled: bool

The L3 Cache default enabled state. This specifies whether L3 Cache should be enabled on new node pools.

ssd_qab_mirrors: String

Controls number of mirrors of QAB blocks to place on SSDs.

ssd_system_btree_mirrors: String

Controls number of mirrors of system B-tree blocks to place on SSDs.

ssd_system_delta_mirrors: String

Controls number of mirrors of system delta blocks to place on SSDs.

virtual_hot_spare_deny_writes: bool

Deny writes into reserved virtual hot spare space.

virtual_hot_spare_hide_spare: bool

Hide reserved virtual hot spare space from free space counts.

virtual_hot_spare_limit_drives: i32

The number of drives to reserve for the virtual hot spare, from 0-4.

virtual_hot_spare_limit_percent: i32

The percent space to reserve for the virtual hot spare, from 0-20.

Trait Implementations

impl Debug for StoragepoolSettingsSettings[src]

impl Serialize for StoragepoolSettingsSettings[src]

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