Source code for models_v2.user_db_backup_preference_enum

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

[docs]class UserDbBackupPreferenceEnum(object): """Implementation of the 'UserDbBackupPreference' enum. Specifies User Database Backup Preference Type. Attributes: KBACKUPALLDATABASES: TODO: type description here. KBACKUPALLEXCEPTAAGDATABASES: TODO: type description here. KBACKUPONLYAAGDATABASES: TODO: type description here. """ KBACKUPALLDATABASES = 'kBackupAllDatabases' KBACKUPALLEXCEPTAAGDATABASES = 'kBackupAllExceptAAGDatabases' KBACKUPONLYAAGDATABASES = 'kBackupOnlyAAGDatabases'