github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/api/cloudcontroller/ccv3/constant/process.go (about) 1 package constant 2 3 // ProcessInstanceState is the state of a given process. 4 type ProcessInstanceState string 5 6 const ( 7 // ProcessInstanceRunning is when the process is running normally. 8 ProcessInstanceRunning ProcessInstanceState = "RUNNING" 9 // ProcessInstanceCrashed is when the process has crashed. 10 ProcessInstanceCrashed ProcessInstanceState = "CRASHED" 11 // ProcessInstanceStarting is when the process is starting up. 12 ProcessInstanceStarting ProcessInstanceState = "STARTING" 13 // ProcessInstanceDown is when the process has gone down. 14 ProcessInstanceDown ProcessInstanceState = "DOWN" 15 )