Source code for models_v2.supported_nas_mount_protocol_enum
# -*- coding: utf-8 -*-
[docs]class SupportedNasMountProtocolEnum(object):
"""Implementation of the 'SupportedNasMountProtocol' enum.
TODO: type enum description here.
Attributes:
KNOPROTOCOL: TODO: type description here.
KNFS3: TODO: type description here.
KCIFS1: TODO: type description here.
KCIFS2: TODO: type description here.
KCIFS3: TODO: type description here.
"""
KNOPROTOCOL = 'kNoProtocol'
KNFS3 = 'kNfs3'
KCIFS1 = 'kCifs1'
KCIFS2 = 'kCifs2'
KCIFS3 = 'kCifs3'