Source code for models.nfs_access_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class NfsAccessEnum(object): """Implementation of the 'NfsAccess' enum. Specifies whether clients from this subnet can mount using NFS protocol. Protocol access level. 'kDisabled' indicates Protocol access level 'Disabled' 'kReadOnly' indicates Protocol access level 'ReadOnly' 'kReadWrite' indicates Protocol access level 'ReadWrite' Attributes: KDISABLED: TODO: type description here. KREADONLY: TODO: type description here. KREADWRITE: TODO: type description here. """ KDISABLED = 'kDisabled' KREADONLY = 'kReadOnly' KREADWRITE = 'kReadWrite'