state property

String? state
getter/setter pair

The detailed state of the trial.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The job state is unspecified.
  • "QUEUED" : The job has been just created and processing has not yet begun.
  • "PREPARING" : The service is preparing to run the job.
  • "RUNNING" : The job is in progress.
  • "SUCCEEDED" : The job completed successfully.
  • "FAILED" : The job failed. error_message should contain the details of the failure.
  • "CANCELLING" : The job is being cancelled. error_message should describe the reason for the cancellation.
  • "CANCELLED" : The job has been cancelled. error_message should describe the reason for the cancellation.

Implementation

core.String? state;