Source code for models_v2.nfs_access_1_enum

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

[docs]class NfsAccess1Enum(object): """Implementation of the 'NfsAccess1' enum. Specifies NFS protocol acess level for clients from the netgroup. Attributes: KDISABLED: TODO: type description here. KREADONLY: TODO: type description here. KREADWRITE: TODO: type description here. """ KDISABLED = 'kDisabled' KREADONLY = 'kReadOnly' KREADWRITE = 'kReadWrite'