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 LicenseGenerate {
    /// Array of licenses included in activation file.
    #[serde(rename = "activated_license_list")]
    pub activated_license_list: Option<Vec<String>>,
    /// Contents of licensing activation file.
    #[serde(rename = "activation")]
    pub activation: Option<String>,
    /// Array of licenses included in activation file.
    #[serde(rename = "hardware")]
    pub hardware: Option<Vec <crate::models::LicenseGenerateHardwareItem>>,
    /// An array of licenses not included in activation file.
    #[serde(rename = "not_activated_license_list")]
    pub not_activated_license_list: Option<Vec<String>>,
}