Source code for models.vm_backup_type_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class VmBackupTypeEnum(object): """Implementation of the 'VmBackupType' enum. Specifies the type of backup supported by the VM. overrideDescription: true Specifies the type of an HyperV datastore object. 'kRctBackup' indicates backup is done using RCT/checkpoints. 'kVssBackup' indicates backup is done using VSS. Attributes: KRCTBACKUP: TODO: type description here. KVSSBACKUP: TODO: type description here. """ KRCTBACKUP = 'kRctBackup' KVSSBACKUP = 'kVssBackup'