state property

String? state
getter/setter pair

The state of the batch at this point in history.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The batch state is unknown.
  • "PENDING" : The batch is created before running.
  • "RUNNING" : The batch is running.
  • "CANCELLING" : The batch is cancelling.
  • "CANCELLED" : The batch cancellation was successful.
  • "SUCCEEDED" : The batch completed successfully.
  • "FAILED" : The batch is no longer running due to an error.

Implementation

core.String? state;