View on GitHub

lakeFS

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

RepositoryRestoreStatus

Properties

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

Example

from lakefs_sdk.models.repository_restore_status import RepositoryRestoreStatus

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

# convert the object into a dict
repository_restore_status_dict = repository_restore_status_instance.to_dict()
# create an instance of RepositoryRestoreStatus from a dict
repository_restore_status_form_dict = repository_restore_status.from_dict(repository_restore_status_dict)

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