github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+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 )