View on GitHub

lakeFS

lakeFS - Data version control for your data lake | Git for data

ACL

Properties

Name Type Description Notes
permission str Permission level to give this ACL. \"Read\", \"Write\", \"Super\" and \"Admin\" are all supported.  

Example

from lakefs_sdk.models.acl import ACL

# TODO update the JSON string below
json = "{}"
# create an instance of ACL from a JSON string
acl_instance = ACL.from_json(json)
# print the JSON string representation of the object
print ACL.to_json()

# convert the object into a dict
acl_dict = acl_instance.to_dict()
# create an instance of ACL from a dict
acl_form_dict = acl.from_dict(acl_dict)

[Back to Model list] [Back to API list] [Back to README]