github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/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 )