github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+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  )