pub struct BackupCollection {
pub cluster: Option<String>,
pub cluster_uid: Option<String>,
pub create_time: Option<DateTime<Utc>>,
pub kms_key: Option<String>,
pub last_backup_time: Option<DateTime<Utc>>,
pub name: Option<String>,
pub total_backup_count: Option<i64>,
pub total_backup_size_bytes: Option<i64>,
pub uid: Option<String>,
}Expand description
BackupCollection of a cluster.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations backup collections get projects (response)
Fields§
§cluster: Option<String>Output only. The full resource path of the cluster the backup collection belongs to. Example: projects/{project}/locations/{location}/clusters/{cluster}
cluster_uid: Option<String>Output only. The cluster uid of the backup collection.
create_time: Option<DateTime<Utc>>Output only. The time when the backup collection was created.
kms_key: Option<String>Output only. The KMS key used to encrypt the backups under this backup collection.
last_backup_time: Option<DateTime<Utc>>Output only. The last time a backup was created in the backup collection.
name: Option<String>Identifier. Full resource path of the backup collection.
total_backup_count: Option<i64>Output only. Total number of backups in the backup collection.
total_backup_size_bytes: Option<i64>Output only. Total size of all backups in the backup collection.
uid: Option<String>Output only. System assigned unique identifier of the backup collection.
Trait Implementations§
Source§impl Clone for BackupCollection
impl Clone for BackupCollection
Source§fn clone(&self) -> BackupCollection
fn clone(&self) -> BackupCollection
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more