# -*- coding: utf-8 -*-
[docs]class OsTypeEnum(object):
"""Implementation of the 'OsType' enum.
Specifies the operating system type of the object.
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'