state property

String? state
getter/setter pair

The current state of the migration execution.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The state of the migration execution is unknown.
  • "STARTING" : The migration execution is starting.
  • "RUNNING" : The migration execution is running.
  • "CANCELLING" : The migration execution is in the process of being cancelled.
  • "AWAITING_USER_ACTION" : The migration execution is awaiting user action.
  • "SUCCEEDED" : The migration execution has completed successfully.
  • "FAILED" : The migration execution has failed.
  • "CANCELLED" : The migration execution is cancelled.
  • "DELETING" : The migration execution is being deleted.
  • "ROLLED_BACK" : The migration execution has been rolled back. This occurs when CancelMigration is invoked after the migration has completed and the metastore service is in the PROXY state, returning the service to the ACTIVE state. This enables rollback support when the customer wants to resume using DPMS after a successful migration.

Implementation

core.String? state;