Source code for models_v2.policy_scheduled_backup_enum
# -*- coding: utf-8 -*-
[docs]class PolicyScheduledBackupEnum(object):
"""Implementation of the 'PolicyScheduledBackup' enum.
Specifies Scheduled Backup type.
Attributes:
REGULAR: TODO: type description here.
FULL: TODO: type description here.
LOG: TODO: type description here.
SYSTEM: TODO: type description here.
"""
REGULAR = 'Regular'
FULL = 'Full'
LOG = 'Log'
SYSTEM = 'System'