github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/api/cloudcontroller/ccv3/constant/droplet.go (about)

     1  package constant
     2  
     3  // DropletState is the state of the droplet.
     4  type DropletState string
     5  
     6  const (
     7  	// DropletAwaitingUpload is a droplet that has been created without a package.
     8  	DropletAwaitingUpload DropletState = "AWAITING_UPLOAD"
     9  	// DropletStaged is a droplet that has been properly processed.
    10  	DropletStaged DropletState = "STAGED"
    11  	// DropletFailed is a droplet that had failed the staging process.
    12  	DropletFailed DropletState = "FAILED"
    13  	// DropletCopying is a droplet that's being copied from another droplet.
    14  	DropletCopying DropletState = "COPYING"
    15  	// DropletExpired is a droplet that has expired and is no longer in the
    16  	// system.
    17  	DropletExpired DropletState = "EXPIRED"
    18  )