Source code for models_v2.backup_run_type_enum

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

[docs]class BackupRunTypeEnum(object): """Implementation of the 'BackupRunType' enum. Specifies the type of run this rule should apply to. Attributes: KINCREMENTAL: TODO: type description here. KFULL: TODO: type description here. """ KINCREMENTAL = 'kIncremental' KFULL = 'kFull'