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 SnapshotSnapshotCreateParams {
    /// Alias name to create for this snapshot. If null, remove any alias.
    #[serde(rename = "alias")]
    pub alias: Option<String>,
    /// The Unix Epoch time the snapshot will expire and be eligible for automatic deletion.
    #[serde(rename = "expires")]
    pub expires: Option<i32>,
    /// The user or system supplied snapshot name. This will be null for snapshots pending delete.
    #[serde(rename = "name")]
    pub name: Option<String>,
    /// The /ifs path snapshotted.
    #[serde(rename = "path")]
    pub path: String,
}