Source code for models_v2.scheduled_backup_enum
# -*- coding: utf-8 -*-
[docs]class ScheduledBackupEnum(object):
    """Implementation of the 'ScheduledBackup' enum.
    Specifies Scheduled Backup type.
    Attributes:
        KREGULAR: TODO: type description here.
        KFULL: TODO: type description here.
        KLOG: TODO: type description here.
        KSYSTEM: TODO: type description here.
        KHYDRATECDP: TODO: type description here.
    """
    KREGULAR = 'kRegular'
    KFULL = 'kFull'
    KLOG = 'kLog'
    KSYSTEM = 'kSystem'
    KHYDRATECDP = 'kHydrateCDP'