# -*- coding: utf-8 -*-
[docs]class NetappProtocolEnum(object):
    """Implementation of the 'NetappProtocol' enum.
    Specifies Netapp Protocol type.
    Attributes:
        KNFS: TODO: type description here.
        KCIFS: TODO: type description here.
        KISCSI: TODO: type description here.
        KFC: TODO: type description here.
        KFCACHE: TODO: type description here.
        KHTTP: TODO: type description here.
        KNDMP: TODO: type description here.
        KMANAGEMENT: TODO: type description here.
        KNVME: TODO: type description here.
    """
    KNFS = 'kNfs'
    KCIFS = 'kCifs'
    KISCSI = 'kIscsi'
    KFC = 'kFc'
    KFCACHE = 'kFcache'
    KHTTP = 'kHttp'
    KNDMP = 'kNdmp'
    KMANAGEMENT = 'kManagement'
    KNVME = 'kNvme'