# -*- coding: utf-8 -*-
[docs]class VolumeType1Enum(object):
"""Implementation of the 'VolumeType1' enum.
Specifies the Netapp volume type.
Attributes:
READWRITE: TODO: type description here.
LOADSHARING: TODO: type description here.
DATAPROTECTION: TODO: type description here.
DATACACHE: TODO: type description here.
TEMP: TODO: type description here.
UNKOWNTYPE: TODO: type description here.
"""
READWRITE = 'ReadWrite'
LOADSHARING = 'LoadSharing'
DATAPROTECTION = 'DataProtection'
DATACACHE = 'DataCache'
TEMP = 'Temp'
UNKOWNTYPE = 'UnkownType'