mirror of https://github.com/apache/cloudstack.git
api: fix typo in Volume Destroy state - volume can be recovered (#5833)
* api: fix type Destroy volume can be recovered * Update api/src/main/java/com/cloud/storage/Volume.java Co-authored-by: dahn <daan.hoogland@gmail.com>
This commit is contained in:
parent
6d35b520d3
commit
84b9b61b9b
|
|
@ -47,8 +47,8 @@ public interface Volume extends ControlledEntity, Identity, InternalIdentity, Ba
|
|||
RevertSnapshotting("There is a snapshot created on this volume, the volume is being reverting from snapshot"),
|
||||
Resizing("The volume is being resized"),
|
||||
Expunging("The volume is being expunging"),
|
||||
Expunged("The volume has been expunged"),
|
||||
Destroy("The volume is destroyed, and can't be recovered."),
|
||||
Expunged("The volume has been expunged, and can no longer be recovered"),
|
||||
Destroy("The volume is destroyed, and can be recovered."),
|
||||
Destroying("The volume is destroying, and can't be recovered."),
|
||||
UploadOp("The volume upload operation is in progress or in short the volume is on secondary storage"),
|
||||
Copying("Volume is copying from image store to primary, in case it's an uploaded volume"),
|
||||
|
|
|
|||
Loading…
Reference in New Issue