Source code for models_v2.object_backup_snapshot_status_enum
# -*- coding: utf-8 -*-
[docs]class ObjectBackupSnapshotStatusEnum(object):
"""Implementation of the 'ObjectBackupSnapshotStatus' enum.
Specifies Object Backup Snapshot Status type.
Attributes:
KINPROGRESS: TODO: type description here.
KSUCCESSFUL: TODO: type description here.
KFAILED: TODO: type description here.
KWAITINGFORNEXTATTEMPT: TODO: type description here.
"""
KINPROGRESS = 'kInProgress'
KSUCCESSFUL = 'kSuccessful'
KFAILED = 'kFailed'
KWAITINGFORNEXTATTEMPT = 'kWaitingForNextAttempt'