Skip to content

Commit

Permalink
Update version to v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 29, 2024
1 parent 1997e48 commit 7d4366e
Show file tree
Hide file tree
Showing 29 changed files with 149 additions and 145 deletions.
2 changes: 1 addition & 1 deletion API
Submodule API updated from a8b92e to 4b77a0
6 changes: 3 additions & 3 deletions aruna/api/dataproxy/services/v2/bundler_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/dataproxy/services/v2/dataproxy_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/health/v2/health_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/hooks/services/v2/hooks_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/models/v2/models_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/services/v2/authorization_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/services/v2/collection_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/services/v2/data_replication_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/services/v2/dataset_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/services/v2/endpoint_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/services/v2/info_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions aruna/api/storage/services/v2/license_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 62 additions & 62 deletions aruna/api/storage/services/v2/object_service_pb2.py

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions aruna/api/storage/services/v2/object_service_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,24 @@ class CreateObjectResponse(_message.Message):
def __init__(self, object: _Optional[_Union[_models_pb2.Object, _Mapping]] = ...) -> None: ...

class GetUploadURLRequest(_message.Message):
__slots__ = ("object_id", "multipart", "part_number")
__slots__ = ("object_id", "multipart", "part_number", "upload_id")
OBJECT_ID_FIELD_NUMBER: _ClassVar[int]
MULTIPART_FIELD_NUMBER: _ClassVar[int]
PART_NUMBER_FIELD_NUMBER: _ClassVar[int]
UPLOAD_ID_FIELD_NUMBER: _ClassVar[int]
object_id: str
multipart: bool
part_number: int
def __init__(self, object_id: _Optional[str] = ..., multipart: bool = ..., part_number: _Optional[int] = ...) -> None: ...
upload_id: str
def __init__(self, object_id: _Optional[str] = ..., multipart: bool = ..., part_number: _Optional[int] = ..., upload_id: _Optional[str] = ...) -> None: ...

class GetUploadURLResponse(_message.Message):
__slots__ = ("url",)
__slots__ = ("url", "upload_id")
URL_FIELD_NUMBER: _ClassVar[int]
UPLOAD_ID_FIELD_NUMBER: _ClassVar[int]
url: str
def __init__(self, url: _Optional[str] = ...) -> None: ...
upload_id: str
def __init__(self, url: _Optional[str] = ..., upload_id: _Optional[str] = ...) -> None: ...

class GetDownloadURLRequest(_message.Message):
__slots__ = ("object_id",)
Expand Down
Loading

0 comments on commit 7d4366e

Please sign in to comment.