state property

String? state
getter/setter pair

The current migration job state. Possible string values are:

  • "STATE_UNSPECIFIED" : The state of the migration job is unknown.
  • "MAINTENANCE" : The migration job is down for maintenance.
  • "DRAFT" : The migration job is in draft mode and no resources are created.
  • "CREATING" : The migration job is being created.
  • "NOT_STARTED" : The migration job is created and not started.
  • "RUNNING" : The migration job is running.
  • "FAILED" : The migration job failed.
  • "COMPLETED" : The migration job has been completed.
  • "DELETING" : The migration job is being deleted.
  • "STOPPING" : The migration job is being stopped.
  • "STOPPED" : The migration job is currently stopped.
  • "DELETED" : The migration job has been deleted.
  • "UPDATING" : The migration job is being updated.
  • "STARTING" : The migration job is starting.
  • "RESTARTING" : The migration job is restarting.
  • "RESUMING" : The migration job is resuming.

Implementation

core.String? state;