github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/api/cloudcontroller/ccv3/constant/build.go (about)

     1  package constant
     2  
     3  // BuildState represents the current state of the build.
     4  type BuildState string
     5  
     6  const (
     7  	// BuildFailed is when the build has failed/erred during staging.
     8  	BuildFailed BuildState = "FAILED"
     9  	// BuildStaged is when the build has successfully been staged.
    10  	BuildStaged BuildState = "STAGED"
    11  	// BuildStaging is when the build is in the process of being staged.
    12  	BuildStaging BuildState = "STAGING"
    13  )