isilon 5.0.1

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

#[derive(Debug, Serialize, Deserialize)]
pub struct JobJobChangelistcreateParams {
    /// Newer snapshot ID.
    #[serde(rename = "newer_snapid")]
    pub newer_snapid: i32,
    /// Older snapshot ID.
    #[serde(rename = "older_snapid")]
    pub older_snapid: i32,
    /// Whether to retain the replication record after a changelist is created. Retaining a replication record allows a changelist to be recreated later.
    #[serde(rename = "retain_repstate")]
    pub retain_repstate: Option<bool>,
}