Source code for models.access_info_list_enum

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

[docs]class AccessInfoListEnum(object): """Implementation of the 'AccessInfoList' enum. TODO: type enum description here. Attributes: KFILEREADDATA: TODO: type description here. KFILEWRITEDATA: TODO: type description here. KFILEAPPENDDATA: TODO: type description here. KFILEREADEA: TODO: type description here. KFILEWRITEEA: TODO: type description here. KFILEEXECUTE: TODO: type description here. KFILEDELETECHILD: TODO: type description here. KFILEREADATTRIBUTES: TODO: type description here. KFILEWRITEATTRIBUTES: TODO: type description here. KDELETE: TODO: type description here. KREADCONTROL: TODO: type description here. KWRITEDAC: TODO: type description here. KWRITEOWNER: TODO: type description here. KSYNCHRONIZE: TODO: type description here. KACCESSSYSTEMSECURITY: TODO: type description here. KMAXIMUMALLOWED: TODO: type description here. KGENERICALL: TODO: type description here. KGENERICEXECUTE: TODO: type description here. KGENERICWRITE: TODO: type description here. KGENERICREAD: TODO: type description here. """ KFILEREADDATA = 'kFileReadData' KFILEWRITEDATA = 'kFileWriteData' KFILEAPPENDDATA = 'kFileAppendData' KFILEREADEA = 'kFileReadEa' KFILEWRITEEA = 'kFileWriteEa' KFILEEXECUTE = 'kFileExecute' KFILEDELETECHILD = 'kFileDeleteChild' KFILEREADATTRIBUTES = 'kFileReadAttributes' KFILEWRITEATTRIBUTES = 'kFileWriteAttributes' KDELETE = 'kDelete' KREADCONTROL = 'kReadControl' KWRITEDAC = 'kWriteDac' KWRITEOWNER = 'kWriteOwner' KSYNCHRONIZE = 'kSynchronize' KACCESSSYSTEMSECURITY = 'kAccessSystemSecurity' KMAXIMUMALLOWED = 'kMaximumAllowed' KGENERICALL = 'kGenericAll' KGENERICEXECUTE = 'kGenericExecute' KGENERICWRITE = 'kGenericWrite' KGENERICREAD = 'kGenericRead'