Statement
Properties
Name |
Type |
Description |
Notes |
effect |
str |
|
|
resource |
str |
|
|
action |
List[str] |
|
|
Example
from lakefs_sdk.models.statement import Statement
# TODO update the JSON string below
json = "{}"
# create an instance of Statement from a JSON string
statement_instance = Statement.from_json(json)
# print the JSON string representation of the object
print Statement.to_json()
# convert the object into a dict
statement_dict = statement_instance.to_dict()
# create an instance of Statement from a dict
statement_form_dict = statement.from_dict(statement_dict)
[Back to Model list] [Back to API list] [Back to README]