Initializing help system before first use

Capturing the Run Log

Set the runlogMessages property to true in the job submit request and the client will receive the following message when the job writes to the run log.

{
  "computeJobId": "my-job"
  "messageType": "RUN_LOG_UPDATED"
  "messagePayload": {
    "startLine": 0
    "endLine": 3
    "lines": [
      "Line0",
      …,
      "Line3"
    ]
  } 
}
The client will also be notified when the run log is complete and no further updates will occur.
{
  "computeJobId": "my-job"
  "messageType": "RUN_LOG_COMPLETED"
  "messagePayload": {
    "totalLines": 10
  } 
}