Source code for models.type_elastifile_protection_source_enum

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

[docs]class TypeElastifileProtectionSourceEnum(object): """Implementation of the 'Type_ElastifileProtectionSource' enum. Specifies the type of the entity in an Elastifile file system like 'kCluster', 'kContainer'. 'kCluster' indicates an Elastifile Cluster. 'kContainer' indicates a container on Elastifile cluster. Attributes: KCLUSTER: TODO: type description here. KCONTAINER: TODO: type description here. """ KCLUSTER = 'kCluster' KCONTAINER = 'kContainer'