status property

String? status
getter/setter pair

The status of this run. Possible string values are:

  • "SQL_BACKUP_RUN_STATUS_UNSPECIFIED" : The status of the run is unknown.
  • "ENQUEUED" : The backup operation was enqueued.
  • "OVERDUE" : The backup is overdue across a given backup window. Indicates a problem. Example: Long-running operation in progress during the whole window.
  • "RUNNING" : The backup is in progress.
  • "FAILED" : The backup failed.
  • "SUCCESSFUL" : The backup was successful.
  • "SKIPPED" : The backup was skipped (without problems) for a given backup window. Example: Instance was idle.
  • "DELETION_PENDING" : The backup is about to be deleted.
  • "DELETION_FAILED" : The backup deletion failed.
  • "DELETED" : The backup has been deleted.

Implementation

core.String? status;