View on GitHub

lakeFS

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

Setup

Properties

Name Type Description Notes
username str an identifier for the user (e.g. jane.doe)  
key AccessKeyCredentials   [optional]

Example

from lakefs_sdk.models.setup import Setup

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

# convert the object into a dict
setup_dict = setup_instance.to_dict()
# create an instance of Setup from a dict
setup_form_dict = setup.from_dict(setup_dict)

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