1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct QuotaQuotaExtended {
    /// If true, SMB shares using the quota directory see the quota thresholds as share size.
    #[serde(rename = "container")]
    pub container: bool,
    /// True if the quota provides enforcement, otherwise a accounting quota.
    #[serde(rename = "enforced")]
    pub enforced: bool,
    /// The system ID given to the quota.
    #[serde(rename = "id")]
    pub id: String,
    /// If true, quota governs snapshot data as well as head data.
    #[serde(rename = "include_snapshots")]
    pub include_snapshots: bool,
    #[serde(rename = "linked")]
    pub linked: Option<bool>,
    /// Summary of notifications: 'custom' indicates one or more notification rules available from the notifications sub-resource; 'default' indicates system default rules are used; 'disabled' indicates that no notifications will be used for this quota.
    #[serde(rename = "notifications")]
    pub notifications: String,
    /// The /ifs path governed.
    #[serde(rename = "path")]
    pub path: String,
    /// Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'.
    #[serde(rename = "persona")]
    pub persona: Option <crate::models::AuthAccessAccessItemFileGroup>,
    /// True if the accounting is accurate on the quota.  If false, this quota is waiting on completion of a QuotaScan job.
    #[serde(rename = "ready")]
    pub ready: bool,
    ///
    #[serde(rename = "thresholds")]
    pub thresholds:crate::models::QuotaQuotaThresholdsExtended,
    /// If true, thresholds apply to data plus filesystem overhead required to store the data (i.e. 'physical' usage).
    #[serde(rename = "thresholds_include_overhead")]
    pub thresholds_include_overhead: bool,
    /// The type of quota.
    #[serde(rename = "type")]
    pub _type: String,
    ///
    #[serde(rename = "usage")]
    pub usage:crate::models::QuotaQuotaUsage,
}