Source code for models_v2.user_db_backup_preference_type_enum

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

[docs]class UserDbBackupPreferenceTypeEnum(object): """Implementation of the 'UserDbBackupPreferenceType' enum. Specifies the preference type for backing up user databases on the host. Attributes: KBACKUPALLDATABASES: TODO: type description here. KBACKUPALLEXCEPTAAGDATABASES: TODO: type description here. KBACKUPONLYAAGDATABASES: TODO: type description here. """ KBACKUPALLDATABASES = 'kBackupAllDatabases' KBACKUPALLEXCEPTAAGDATABASES = 'kBackupAllExceptAAGDatabases' KBACKUPONLYAAGDATABASES = 'kBackupOnlyAAGDatabases'