Source code for models_v2.flashblade_protocol_enum
# -*- coding: utf-8 -*-
[docs]class FlashbladeProtocolEnum(object):
"""Implementation of the 'FlashbladeProtocol' enum.
Specifies Flashblade Protocol type.
Attributes:
KNFS: TODO: type description here.
KCIFS2: TODO: type description here.
KHTTP: TODO: type description here.
"""
KNFS = 'kNfs'
KCIFS2 = 'kCifs2'
KHTTP = 'kHttp'