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
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct SnapshotSnapshotsSummarySummary {
    /// Total number of active snapshots.
    #[serde(rename = "active_count")]
    pub active_count: i32,
    /// Sum of sizes of active snapshots.
    #[serde(rename = "active_size")]
    pub active_size: i32,
    /// Total number of snapshot aliases.
    #[serde(rename = "aliases_count")]
    pub aliases_count: i32,
    /// Total number of snapshots.
    #[serde(rename = "count")]
    pub count: i32,
    /// Total number of delete-pending snapshots.
    #[serde(rename = "deleting_count")]
    pub deleting_count: i32,
    /// Sum of sizes of delete-pending snapshots.
    #[serde(rename = "deleting_size")]
    pub deleting_size: i32,
    /// Sum of shadow bytes of all snapshots.
    #[serde(rename = "shadow_bytes")]
    pub shadow_bytes: u64,
    /// Sum of sizes in bytes of all snapshots.
    #[serde(rename = "size")]
    pub size: u64,
}