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 ProvidersKrb5IdParamsKeytabEntry {
    /// Specifies the encryption types.
    #[serde(rename = "encryption")]
    pub encryption: Option<Vec<String>>,
    /// Specifies the version number of the SPN key.
    #[serde(rename = "kvno")]
    pub kvno: Option<i32>,
    /// Specifies the Service Principal Name (SPN).
    #[serde(rename = "spn")]
    pub spn: Option<String>,
    /// Specifies the time the SPN key was created.
    #[serde(rename = "timestamp")]
    pub timestamp: Option<i32>,
}