View on GitHub

lakeFS

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

RepositoryDumpStatus

Properties

Name Type Description Notes
id str ID of the task  
done bool    
update_time datetime    
error str   [optional]
refs RefsDump   [optional]

Example

from lakefs_sdk.models.repository_dump_status import RepositoryDumpStatus

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

# convert the object into a dict
repository_dump_status_dict = repository_dump_status_instance.to_dict()
# create an instance of RepositoryDumpStatus from a dict
repository_dump_status_form_dict = repository_dump_status.from_dict(repository_dump_status_dict)

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