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 CertificateServerItem {
    /// Local path to the certificate key that is to be imported.
    #[serde(rename = "certificate_key_path")]
    pub certificate_key_path: String,
    /// Local path to the certificate that is to be imported.
    #[serde(rename = "certificate_path")]
    pub certificate_path: String,
    /// Boolean identifying if a certificate is the default certificate.The default certificate is used as the fallback when no other certificates match a TLS enabled service's particular criteria. There must always be a configured default certificate.
    #[serde(rename = "default")]
    pub default: Option<bool>,
    /// Description field associated with a certificate provided for administrative convenience.
    #[serde(rename = "description")]
    pub description: Option<String>,
}