Source code for models.type_netapp_protection_source_enum

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

[docs]class TypeNetappProtectionSourceEnum(object): """Implementation of the 'Type_NetappProtectionSource' enum. Specifies the type of managed NetApp Object in a NetApp Protection Source such as 'kCluster', 'kVserver' or 'kVolume'. 'kCluster' indicates a Netapp cluster as a protection source. 'kVserver' indicates a Netapp vserver in a cluster as a protection source. 'kVolume' indicates a volume in Netapp vserver as a protection source. Attributes: KCLUSTER: TODO: type description here. KVSERVER: TODO: type description here. KVOLUME: TODO: type description here. """ KCLUSTER = 'kCluster' KVSERVER = 'kVserver' KVOLUME = 'kVolume'