github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+incompatible/api/cloudcontroller/ccv3/constant/deployment.go (about)

     1  package constant
     2  
     3  // A zero down time deployment used to push new apps without restart
     4  type DeploymentState string
     5  
     6  const (
     7  	// Deployment is in state 'DEPLOYING'
     8  	DeploymentDeploying DeploymentState = "DEPLOYING"
     9  
    10  	// Deployment is in state 'CANCELED'
    11  	DeploymentCanceled DeploymentState = "CANCELED"
    12  
    13  	// Deployment is in state 'DEPLOYED'
    14  	DeploymentDeployed DeploymentState = "DEPLOYED"
    15  )