github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/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  )