Source code for models_v2.backup_run_status_enum
# -*- coding: utf-8 -*-
[docs]class BackupRunStatusEnum(object):
"""Implementation of the 'BackupRunStatus' enum.
TODO: type enum description here.
Attributes:
KSUCCESS: TODO: type description here.
KFAILURE: TODO: type description here.
KSLAVIOLATION: TODO: type description here.
"""
KSUCCESS = 'kSuccess'
KFAILURE = 'kFailure'
KSLAVIOLATION = 'kSlaViolation'