VolumeBackup(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Represents the backup of a specific persistent volume as a component of a Backup - both the record of the operation and a pointer to the underlying storage-specific artifacts. Next id: 14
Attributes | |
---|---|
Name | Description |
name |
str
Output only. The full name of the VolumeBackup resource. Format: projects/*/locations/*/backupPlans/*/backups/*/volumeBackups/* .
|
uid |
str
Output only. Server generated global unique identifier of UUID __
format.
|
create_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp when this VolumeBackup resource was created. |
update_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp when this VolumeBackup resource was last updated. |
source_pvc |
google.cloud.gke_backup_v1.types.NamespacedName
Output only. A reference to the source Kubernetes PVC from which this VolumeBackup was created. |
volume_backup_handle |
str
Output only. A storage system-specific opaque handle to the underlying volume backup. |
format_ |
google.cloud.gke_backup_v1.types.VolumeBackup.VolumeBackupFormat
Output only. The format used for the volume backup. |
storage_bytes |
int
Output only. The aggregate size of the underlying artifacts associated with this VolumeBackup in the backup storage. This may change over time when multiple backups of the same volume share the same backup storage location. In particular, this is likely to increase in size when the immediately preceding backup of the same volume is deleted. |
disk_size_bytes |
int
Output only. The minimum size of the disk to which this VolumeBackup can be restored. |
complete_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp when the associated underlying volume backup operation completed. |
state |
google.cloud.gke_backup_v1.types.VolumeBackup.State
Output only. The current state of this VolumeBackup. |
state_message |
str
Output only. A human readable message explaining why the VolumeBackup is in its current state. |
etag |
str
Output only. etag is used for optimistic concurrency
control as a way to help prevent simultaneous updates of a
volume backup from overwriting each other. It is strongly
suggested that systems make use of the etag in the
read-modify-write cycle to perform volume backup updates in
order to avoid race conditions.
|
Classes
State
State(value)
The current state of a VolumeBackup
Values: STATE_UNSPECIFIED (0): This is an illegal state and should not be encountered. CREATING (1): A volume for the backup was identified and backup process is about to start. SNAPSHOTTING (2): The volume backup operation has begun and is in the initial "snapshot" phase of the process. Any defined ProtectedApplication "pre" hooks will be executed before entering this state and "post" hooks will be executed upon leaving this state. UPLOADING (3): The snapshot phase of the volume backup operation has completed and the snapshot is now being uploaded to backup storage. SUCCEEDED (4): The volume backup operation has completed successfully. FAILED (5): The volume backup operation has failed. DELETING (6): This VolumeBackup resource (and its associated artifacts) is in the process of being deleted.
VolumeBackupFormat
VolumeBackupFormat(value)
Identifies the format used for the volume backup.
Values: VOLUME_BACKUP_FORMAT_UNSPECIFIED (0): Default value, not specified. GCE_PERSISTENT_DISK (1): Compute Engine Persistent Disk snapshot based volume backup.