Files
terraform-provider-decort/internal/status/status.go
2022-10-31 14:06:22 +03:00

33 lines
667 B
Go

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"
)