SchedulerStatusResponse Data Type

Scheduler status

Properties
name data type description
status SchedulerStatus Scheduler status
executorStatus SchedulerExecutorStatus The scheduler executor status.
allowRun array of number IDs of Jobs that are allowed to run, although the scheduler is suspended
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

{
  "status" : "suspended",
  "executorStatus" : "RUNNING",
  "allowRun" : [ 12345, 12345 ],
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}