github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/api/cloudcontroller/ccv3/constant/buildpack.go (about)

     1  package constant
     2  
     3  const (
     4  	// AutodetectBuildpackValueDefault is used to unset the buildpack values on
     5  	// an application.
     6  	AutodetectBuildpackValueDefault = "default"
     7  	// AutodetectBuildpackValueNull is used to unset the buildpack values on an
     8  	// application.
     9  	AutodetectBuildpackValueNull = "null"
    10  )
    11  
    12  const (
    13  	// BuildpackAwaitingUpload represents the awaiting upload state of a buildpack.
    14  	BuildpackAwaitingUpload = "AWAITING_UPLOAD"
    15  	// BuildpackReady represents the ready state of a buildpack.
    16  	BuildpackReady = "READY"
    17  )