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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
package api
import (
"time"
)
// StorageVolumeSnapshotsPost represents the fields available for a new storage volume snapshot
//
// swagger:model
//
// API extension: storage_api_volume_snapshots.
type StorageVolumeSnapshotsPost struct {
// Snapshot name
// Example: snap0
Name string `json:"name" yaml:"name"`
// When the snapshot expires (gets auto-deleted)
// Example: 2021-03-23T17:38:37.753398689-04:00
//
// API extension: custom_volume_snapshot_expiry
ExpiresAt *time.Time `json:"expires_at" yaml:"expires_at"`
}
// StorageVolumeSnapshotPost represents the fields required to rename/move a storage volume snapshot
//
// swagger:model
//
// API extension: storage_api_volume_snapshots.
type StorageVolumeSnapshotPost struct {
// New snapshot name
// Example: snap1
Name string `json:"name" yaml:"name"`
// Initiate volume snapshot migration
// Example: false
//
// API extension: storage_api_remote_volume_snapshot_copy
Migration bool `json:"migration" yaml:"migration"`
// Migration target (for push mode)
//
// API extension: storage_api_remote_volume_snapshot_copy
Target *StorageVolumePostTarget `json:"target" yaml:"target"`
}
// StorageVolumeSnapshot represents a storage volume snapshot
//
// swagger:model
//
// API extension: storage_api_volume_snapshots.
type StorageVolumeSnapshot struct {
StorageVolumeSnapshotPut `json:",inline" yaml:",inline"`
// Snapshot name
// Example: snap0
Name string `json:"name" yaml:"name"`
// Storage volume configuration map (refer to doc/storage.md)
// Example: {"zfs.remove_snapshots": "true", "size": "50GiB"}
Config map[string]string `json:"config" yaml:"config"`
// The content type (filesystem or block)
// Example: filesystem
//
// API extension: custom_block_volumes
ContentType string `json:"content_type" yaml:"content_type"`
// Volume snapshot creation timestamp
// Example: 2021-03-23T20:00:00-04:00
// API extension: storage_volumes_created_at
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
}
// StorageVolumeSnapshotPut represents the modifiable fields of a storage volume
//
// swagger:model
//
// API extension: storage_api_volume_snapshots.
type StorageVolumeSnapshotPut struct {
// Description of the storage volume
// Example: My custom volume
Description string `json:"description" yaml:"description"`
// When the snapshot expires (gets auto-deleted)
// Example: 2021-03-23T17:38:37.753398689-04:00
//
// API extension: custom_volume_snapshot_expiry
ExpiresAt *time.Time `json:"expires_at" yaml:"expires_at"`
}
// Writable converts a full StorageVolumeSnapshot struct into a StorageVolumeSnapshotPut struct (filters read-only fields).
func (storageVolumeSnapshot *StorageVolumeSnapshot) Writable() StorageVolumeSnapshotPut {
return storageVolumeSnapshot.StorageVolumeSnapshotPut
}
|