Source code for models.type_view_protection_source_enum

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

[docs]class TypeViewProtectionSourceEnum(object): """Implementation of the 'Type_ViewProtectionSource' enum. Specifies the type of managed Object in a View Protection Source environment. Examples of View Objects include 'kViewBox' or 'kView'. 'kViewBox' indicates Storage Domain as a Protection Source type. 'kView' indicates View as a Protection Source type. Attributes: KVIEWBOX: TODO: type description here. KVIEW: TODO: type description here. """ KVIEWBOX = 'kViewBox' KVIEW = 'kView'