Repository
Properties
Name |
Type |
Description |
Notes |
id |
str |
|
|
creation_date |
int |
Unix Epoch in seconds |
|
default_branch |
str |
|
|
storage_namespace |
str |
Filesystem URI to store the underlying data in (e.g. \"s3://my-bucket/some/path/\") |
|
read_only |
bool |
Whether the repository is a read-only repository- not relevant for bare repositories |
[optional] |
Example
from lakefs_sdk.models.repository import Repository
# TODO update the JSON string below
json = "{}"
# create an instance of Repository from a JSON string
repository_instance = Repository.from_json(json)
# print the JSON string representation of the object
print Repository.to_json()
# convert the object into a dict
repository_dict = repository_instance.to_dict()
# create an instance of Repository from a dict
repository_form_dict = repository.from_dict(repository_dict)
[Back to Model list] [Back to API list] [Back to README]