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 ClusterConfigDevice {
    /// Device ID.
    #[serde(rename = "devid")]
    pub devid: i32,
    /// Device GUID.
    #[serde(rename = "guid")]
    pub guid: String,
    /// If true, this node is online and communicating with the local node and every other node with the is_up property normally.  If false, this node is not currently communicating with the local node or other nodes with the is_up property.  It may be shut down, rebooting, disconnected from the backend network, or connected only to other nodes.
    #[serde(rename = "is_up")]
    pub is_up: bool,
    /// Device logical node number.
    #[serde(rename = "lnn")]
    pub lnn: i32,
}