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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
package api
import (
"time"
)
// StorageVolumeBackup represents a volume backup
//
// swagger:model
//
// API extension: custom_volume_backup.
type StorageVolumeBackup struct {
// Backup name
// Example: backup0
Name string `json:"name" yaml:"name"`
// When the backup was created
// Example: 2021-03-23T16:38:37.753398689-04:00
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
// When the backup expires (gets auto-deleted)
// Example: 2021-03-23T17:38:37.753398689-04:00
ExpiresAt time.Time `json:"expires_at" yaml:"expires_at"`
// Whether to ignore snapshots
// Example: false
VolumeOnly bool `json:"volume_only" yaml:"volume_only"`
// Whether to use a pool-optimized binary format (instead of plain tarball)
// Example: true
OptimizedStorage bool `json:"optimized_storage" yaml:"optimized_storage"`
}
// StorageVolumeBackupsPost represents the fields available for a new volume backup
//
// swagger:model
//
// API extension: custom_volume_backup.
type StorageVolumeBackupsPost struct {
// Backup name
// Example: backup0
Name string `json:"name" yaml:"name"`
// When the backup expires (gets auto-deleted)
// Example: 2021-03-23T17:38:37.753398689-04:00
ExpiresAt time.Time `json:"expires_at" yaml:"expires_at"`
// Whether to ignore snapshots
// Example: false
VolumeOnly bool `json:"volume_only" yaml:"volume_only"`
// Whether to use a pool-optimized binary format (instead of plain tarball)
// Example: true
OptimizedStorage bool `json:"optimized_storage" yaml:"optimized_storage"`
// What compression algorithm to use
// Example: gzip
CompressionAlgorithm string `json:"compression_algorithm" yaml:"compression_algorithm"`
}
// StorageVolumeBackupPost represents the fields available for the renaming of a volume backup
//
// swagger:model
//
// API extension: custom_volume_backup.
type StorageVolumeBackupPost struct {
// New backup name
// Example: backup1
Name string `json:"name" yaml:"name"`
}
|