Source code for models_v2.last_backup_run_status_enum

# -*- coding: utf-8 -*-

[docs]class LastBackupRunStatusEnum(object): """Implementation of the 'LastBackupRunStatus' enum. Specifies the status of last local back up run. Attributes: ACCEPTED: TODO: type description here. RUNNING: TODO: type description here. CANCELED: TODO: type description here. CANCELING: TODO: type description here. FAILED: TODO: type description here. MISSED: TODO: type description here. SUCCEEDED: TODO: type description here. SUCCEEDEDWITHWARNING: TODO: type description here. ONHOLD: TODO: type description here. """ ACCEPTED = 'Accepted' RUNNING = 'Running' CANCELED = 'Canceled' CANCELING = 'Canceling' FAILED = 'Failed' MISSED = 'Missed' SUCCEEDED = 'Succeeded' SUCCEEDEDWITHWARNING = 'SucceededWithWarning' ONHOLD = 'OnHold'