Source code for models.physical_server_host_type_enum

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

[docs]class PhysicalServerHostTypeEnum(object): """Implementation of the 'physicalServerHostType' enum. TODO: type enum description here. Attributes: KLINUX: TODO: type description here. KWINDOWS: TODO: type description here. KAIX: TODO: type description here. KSOLARIS: TODO: type description here. KSAPHANA: TODO: type description here. KOTHER: TODO: type description here. """ KLINUX = 'kLinux' KWINDOWS = 'kWindows' KAIX = 'kAix' KSOLARIS = 'kSolaris' KSAPHANA = 'kSapHana' KOTHER = 'kOther'