[][src]Struct isilon::models::CloudSettingsSettings

pub struct CloudSettingsSettings {
    pub cloud_policy_defaults: Option<CloudSettingsSettingsCloudPolicyDefaults>,
    pub retry_coefficient_archive: Option<String>,
    pub retry_coefficient_cache_invalidation: Option<String>,
    pub retry_coefficient_cloud_garbage_collection: Option<String>,
    pub retry_coefficient_local_garbage_collection: Option<String>,
    pub retry_coefficient_read_ahead: Option<String>,
    pub retry_coefficient_recall: Option<String>,
    pub retry_coefficient_writeback: Option<String>,
    pub sleep_timeout_archive: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>,
    pub sleep_timeout_cache_invalidation: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>,
    pub sleep_timeout_cloud_garbage_collection: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>,
    pub sleep_timeout_local_garbage_collection: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>,
    pub sleep_timeout_read_ahead: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>,
    pub sleep_timeout_recall: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>,
    pub sleep_timeout_writeback: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>,
}

Fields

cloud_policy_defaults: Option<CloudSettingsSettingsCloudPolicyDefaults>

The default filepool policy values for cloudpools.

retry_coefficient_archive: Option<String>

Coefficients in the quadratic function for determining the rest period between successive archive attempts.

retry_coefficient_cache_invalidation: Option<String>

Coefficients in the quadratic function for determining the rest period between successive cache invalidation attempts.

retry_coefficient_cloud_garbage_collection: Option<String>

Coefficients in the quadratic function for determining the rest period between successive cloud garbage collection attempts.

retry_coefficient_local_garbage_collection: Option<String>

Coefficients in the quadratic function for determining the rest period between successive local garbage collection attempts.

retry_coefficient_read_ahead: Option<String>

Coefficients in the quadratic function for determining the rest period between successive read ahead attempts.

retry_coefficient_recall: Option<String>

Coefficients in the quadratic function for determining the rest period between successive recall attempts.

retry_coefficient_writeback: Option<String>

Coefficients in the quadratic function for determining the rest period between successive writeback attempts.

sleep_timeout_archive: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>

Amount of time to wait between successive file archive operations.

sleep_timeout_cache_invalidation: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>

Amount of time to wait between successive file cache_invalidation operations.

sleep_timeout_cloud_garbage_collection: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>

Amount of time to wait between successive file cloud garbage collection operations.

sleep_timeout_local_garbage_collection: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>

Amount of time to wait between successive file local garbage collection operations.

sleep_timeout_read_ahead: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>

Amount of time to wait between successive file read ahead operations.

sleep_timeout_recall: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>

Amount of time to wait between successive file recall operations.

sleep_timeout_writeback: Option<CloudSettingsSettingsSleepTimeoutCloudGarbageCollection>

Amount of time to wait between successive file writeback operations.

Trait Implementations

impl Debug for CloudSettingsSettings[src]

impl Serialize for CloudSettingsSettings[src]

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