github.com/arunkumar7540/cli@v6.45.0+incompatible/api/cloudcontroller/ccv3/constant/deployment.go (about)

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