# -*- 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'