View on GitHub

lakeFS

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

RepositoryList

Properties

Name Type Description Notes
pagination Pagination    
results List[Repository]    

Example

from lakefs_sdk.models.repository_list import RepositoryList

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

# convert the object into a dict
repository_list_dict = repository_list_instance.to_dict()
# create an instance of RepositoryList from a dict
repository_list_form_dict = repository_list.from_dict(repository_list_dict)

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