github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+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 // JobFailed is when the job is no longer running due to a failure. 8 JobFailed JobState = "FAILED" 9 // JobComplete is when the job is no longer and it was successful. 10 JobComplete JobState = "COMPLETE" 11 // JobProcessing is when the job is waiting to be run. 12 JobProcessing JobState = "PROCESSING" 13 )