# -*- coding: utf-8 -*-
[docs]class Status21Enum(object):
"""Implementation of the 'Status21' enum.
Specifies type of the disk.
Attributes:
SYSTEMDISK: TODO: type description here.
BOOTDISK: TODO: type description here.
DATADISK: TODO: type description here.
NVMESSDDISK: TODO: type description here.
SATASSDDISK: TODO: type description here.
HDDDISK: TODO: type description here.
UNKNOWN: TODO: type description here.
"""
SYSTEMDISK = 'SystemDisk'
BOOTDISK = 'BootDisk'
DATADISK = 'DataDisk'
NVMESSDDISK = 'NvmeSsdDisk'
SATASSDDISK = 'SataSsdDisk'
HDDDISK = 'HddDisk'
UNKNOWN = 'Unknown'