outcome property

String? outcome
getter/setter pair

Outcome of the code execution.

Required. Possible string values are:

  • "OUTCOME_UNSPECIFIED" : Unspecified status. This value should not be used.
  • "OUTCOME_OK" : Code execution completed successfully.
  • "OUTCOME_FAILED" : Code execution finished but with a failure. stderr should contain the reason.
  • "OUTCOME_DEADLINE_EXCEEDED" : Code execution ran for too long, and was cancelled. There may or may not be a partial output present.

Implementation

core.String? outcome;