isilon/models/
node_status_node.rs

1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct NodeStatusNode {
6    /// Battery status information.
7    #[serde(rename = "batterystatus")]
8    pub batterystatus: Option <crate::models::NodeStatusNodeBatterystatus>,
9    /// Storage capacity of this node.
10    #[serde(rename = "capacity")]
11    pub capacity: Option<Vec <crate::models::NodeStatusNodeCapacityItem>>,
12    /// CPU status information for this node.
13    #[serde(rename = "cpu")]
14    pub cpu: Option <crate::models::NodeStatusNodeCpu>,
15    /// Error message, if the HTTP status returned from this node was not 200.
16    #[serde(rename = "error")]
17    pub error: Option<String>,
18    /// Node ID of the node reporting this information.
19    #[serde(rename = "id")]
20    pub id: Option<i32>,
21    /// Logical node number of the node reporting this information.
22    #[serde(rename = "lnn")]
23    pub lnn: Option<i32>,
24    /// Node NVRAM information.
25    #[serde(rename = "nvram")]
26    pub nvram: Option <crate::models::NodeStatusNodeNvram>,
27    /// Information about this node's power supplies.
28    #[serde(rename = "powersupplies")]
29    pub powersupplies: Option <crate::models::NodeStatusNodePowersupplies>,
30    /// OneFS release.
31    #[serde(rename = "release")]
32    pub release: Option<String>,
33    /// Status of the HTTP response from this node if not 200.  If 200, this field does not appear.
34    #[serde(rename = "status")]
35    pub status: Option<i32>,
36    /// Seconds this node has been online.
37    #[serde(rename = "uptime")]
38    pub uptime: Option<i32>,
39    /// OneFS version.
40    #[serde(rename = "version")]
41    pub version: Option<String>,
42}