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]
first_name str the provided first name [optional]
last_name str the provided last name [optional]
email str the provided email [optional]
company_name str the provided company name [optional]
feature_updates bool user preference to receive feature updates [optional]
security_updates bool user preference to receive security updates [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]