Source code for models_v2.nfs_access_enum

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

[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'