Source code for models_v2.backup_type_enum

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

[docs]class BackupTypeEnum(object): """Implementation of the 'BackupType' enum. Specifies the backup type should be used for RunNow action. 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'