# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class RunTypeEnum(object):
"""Implementation of the 'RunType' enum.
Specifies the type of backup such as 'kRegular', 'kFull', 'kLog' or
'kSystem'.
'kRegular' indicates a incremental (CBT) backup. Incremental backups
utilizing CBT (if supported) are captured of the target protection
objects.
The first run of a kRegular schedule captures all the blocks.
'kFull' indicates a full (no CBT) backup. A complete backup
(all blocks) of the target protection objects are always captured and
Change Block Tracking (CBT) is not utilized.
'kLog' indicates a Database Log backup. Capture the database
transaction logs to allow rolling back to a specific point in time.
'kSystem' indicates a system backup. System backups are used to do
bare metal recovery of the system to a specific point in time.
Attributes:
KREGULAR: TODO: type description here.
KFULL: TODO: type description here.
KLOG: TODO: type description here.
KSYSTEM: TODO: type description here.
"""
KREGULAR = 'kRegular'
KFULL = 'kFull'
KLOG = 'kLog'
KSYSTEM = 'kSystem'