Source code for models.exclude_type_enum

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

[docs]class ExcludeTypeEnum(object): """Implementation of the 'excludeType' enum. TODO: type enum description here. Attributes: KVCENTER: TODO: type description here. KFOLDER: TODO: type description here. KDATACENTER: TODO: type description here. KCOMPUTERESOURCE: TODO: type description here. KCLUSTERCOMPUTERESOURCE: TODO: type description here. KRESOURCEPOOL: TODO: type description here. KDATASTORE: TODO: type description here. KHOSTSYSTEM: TODO: type description here. KVIRTUALMACHINE: TODO: type description here. KVIRTUALAPP: TODO: type description here. KSTANDALONEHOST: TODO: type description here. KSTORAGEPOD: TODO: type description here. KNETWORK: TODO: type description here. KDISTRIBUTEDVIRTUALPORTGROUP: TODO: type description here. KTAGCATEGORY: TODO: type description here. KTAG: TODO: type description here. """ KVCENTER = 'kVCenter' KFOLDER = 'kFolder' KDATACENTER = 'kDatacenter' KCOMPUTERESOURCE = 'kComputeResource' KCLUSTERCOMPUTERESOURCE = 'kClusterComputeResource' KRESOURCEPOOL = 'kResourcePool' KDATASTORE = 'kDatastore' KHOSTSYSTEM = 'kHostSystem' KVIRTUALMACHINE = 'kVirtualMachine' KVIRTUALAPP = 'kVirtualApp' KSTANDALONEHOST = 'kStandaloneHost' KSTORAGEPOD = 'kStoragePod' KNETWORK = 'kNetwork' KDISTRIBUTEDVIRTUALPORTGROUP = 'kDistributedVirtualPortgroup' KTAGCATEGORY = 'kTagCategory' KTAG = 'kTag'