isilon 5.0.1

Isilon rest api bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct CloudSettingsSettingsSleepTimeoutCloudGarbageCollection {
    /// Sleep timeout for a recovery thread with pending tasks
    #[serde(rename = "recovery_with_tasks")]
    pub recovery_with_tasks: Option<f32>,
    /// Sleep timeout for a recovery thread without pending tasks
    #[serde(rename = "recovery_without_tasks")]
    pub recovery_without_tasks: Option<f32>,
    /// Sleep timeout for a non-recovery thread with pending tasks
    #[serde(rename = "with_tasks")]
    pub with_tasks: Option<f32>,
    /// Sleep timeout for a non-recovery thread without pending tasks
    #[serde(rename = "without_tasks")]
    pub without_tasks: Option<f32>,
}