github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/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  	// DropletStaged is a droplet that has been properly processed.
     8  	DropletStaged DropletState = "STAGED"
     9  	// DropletFailed is a droplet that had failed the staging process.
    10  	DropletFailed DropletState = "FAILED"
    11  	// DropletCopying is a droplet that's being copied from another droplet.
    12  	DropletCopying DropletState = "COPYING"
    13  	// DropletExpired is a droplet that has expired and is no longer in the
    14  	// system.
    15  	DropletExpired DropletState = "EXPIRED"
    16  )