Source code for models_v2.recovery_target_enum

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

[docs]class RecoveryTargetEnum(object): """Implementation of the 'RecoveryTarget' enum. Specifies if recovery target is a database or a view. Attributes: RECOVERDATABASE: TODO: type description here. RECOVERVIEW: TODO: type description here. """ RECOVERDATABASE = 'RecoverDatabase' RECOVERVIEW = 'RecoverView'