You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
667 B
33 lines
667 B
package status
|
|
|
|
type Status = string
|
|
|
|
var (
|
|
//The disk is linked to any Compute
|
|
Assigned Status = "ASSIGNED"
|
|
|
|
//An object model has been created in the database
|
|
Modeled Status = "MODELED"
|
|
|
|
//In the process of creation
|
|
Creating Status = "CREATING"
|
|
|
|
//Creating
|
|
Created Status = "CREATED"
|
|
|
|
//Physical resources are allocated for the object
|
|
Allocated Status = "ALLOCATED"
|
|
|
|
//The object has released (returned to the platform) the physical resources that it occupied
|
|
Unallocated Status = "UNALLOCATED"
|
|
|
|
//Permanently deleted
|
|
Destroyed Status = "DESTROYED"
|
|
|
|
//Deleted to Trash
|
|
Deleted Status = "DELETED"
|
|
|
|
//Deleted from storage
|
|
Purged Status = "PURGED"
|
|
)
|