github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+incompatible/api/cloudcontroller/ccv3/constant/job.go (about) 1 package constant 2 3 // JobState is the current state of a job. 4 type JobState string 5 6 const ( 7 // JobComplete is when the job is no longer and it was successful. 8 JobComplete JobState = "COMPLETE" 9 // JobFailed is when the job is no longer running due to a failure. 10 JobFailed JobState = "FAILED" 11 // JobProcessing is when the job is waiting to be run. 12 JobProcessing JobState = "PROCESSING" 13 )