state property

String? state
getter/setter pair

State of the underlying AI Platform job.

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 execution 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.
  • "EXPIRED" : The job has become expired (relevant to Vertex AI jobs) https://cloud.google.com/vertex-ai/docs/reference/rest/v1/JobState
  • "INITIALIZING" : The Execution is being created.

Implementation

core.String? state;