Source code for models.type_hyperv_datastore_enum

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

[docs]class TypeHypervDatastoreEnum(object): """Implementation of the 'Type_HypervDatastore' enum. Specifies the type of the datastore object like kFileShare or kVolume. overrideDescription: true Specifies the type of a HyperV datastore object. 'kFileShare' indicates SMB file share datastore. 'kVolume' indicates a volume which can a LUN. Attributes: KFILESHARE: TODO: type description here. KVOLUME: TODO: type description here. """ KFILESHARE = 'kFileShare' KVOLUME = 'kVolume'