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 HardeningStateState {
    /// Full path name of issues file, or null if no issues file is configured. This file contains all issues found when the cluster configuration is checked against expected configuration.
    #[serde(rename = "issues_file")]
    pub issues_file: Option<String>,
    /// This contains more information and details about the operation state.
    #[serde(rename = "message")]
    pub message: Option<String>,
    /// The state of the hardening operation. In case there is no operation currently going on, this will display the last state of operation.
    #[serde(rename = "state")]
    pub state: Option<String>,
}