# -*- coding: utf-8 -*-
[docs]class AagBackupPreferenceEnum(object):
"""Implementation of the 'AagBackupPreference' enum.
Specifies Aag Backup Preference Type.
Attributes:
KPRIMARYREPLICAONLY: TODO: type description here.
KSECONDARYREPLICAONLY: TODO: type description here.
KPREFERSECONDARYREPLICA: TODO: type description here.
KANYREPLICA: TODO: type description here.
"""
KPRIMARYREPLICAONLY = 'kPrimaryReplicaOnly'
KSECONDARYREPLICAONLY = 'kSecondaryReplicaOnly'
KPREFERSECONDARYREPLICA = 'kPreferSecondaryReplica'
KANYREPLICA = 'kAnyReplica'