Source code for models_v2.protocol_access_enum

# -*- coding: utf-8 -*-

[docs]class ProtocolAccessEnum(object): """Implementation of the 'protocolAccess' enum. TODO: type enum description here. Attributes: NFS: TODO: type description here. SMB: TODO: type description here. S3: TODO: type description here. SWIFT: TODO: type description here. """ NFS = 'NFS' SMB = 'SMB' S3 = 'S3' SWIFT = 'Swift'