Source code for models.protocol_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class ProtocolEnum(object):
"""Implementation of the 'Protocol' enum.
TODO: type enum description here.
Attributes:
KNFS: TODO: type description here.
KSMB: TODO: type description here.
"""
KNFS = 'kNfs'
KSMB = 'kSmb'