Skip to content

Commit

Permalink
Update version to v2.0.0-beta.11
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 24, 2024
1 parent 1d315d9 commit 0c85110
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 72 deletions.
2 changes: 1 addition & 1 deletion API
Submodule API updated from 4be142 to a36e9e
98 changes: 48 additions & 50 deletions aruna/api/storage/models/v2/models_pb2.py

Large diffs are not rendered by default.

22 changes: 4 additions & 18 deletions aruna/api/storage/models/v2/models_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -379,27 +379,13 @@ class DataEndpoint(_message.Message):
STATUS_FIELD_NUMBER: _ClassVar[int]
id: str
full_sync: FullSync
partial_sync: PartialSync
partial_sync: bool
status: ReplicationStatus
def __init__(self, id: _Optional[str] = ..., full_sync: _Optional[_Union[FullSync, _Mapping]] = ..., partial_sync: _Optional[_Union[PartialSync, _Mapping]] = ..., status: _Optional[_Union[ReplicationStatus, str]] = ...) -> None: ...
def __init__(self, id: _Optional[str] = ..., full_sync: _Optional[_Union[FullSync, _Mapping]] = ..., partial_sync: bool = ..., status: _Optional[_Union[ReplicationStatus, str]] = ...) -> None: ...

class FullSync(_message.Message):
__slots__ = ("project_id",)
PROJECT_ID_FIELD_NUMBER: _ClassVar[int]
project_id: str
def __init__(self, project_id: _Optional[str] = ...) -> None: ...

class PartialSync(_message.Message):
__slots__ = ("project_id", "collection_id", "dataset_id", "object_id")
PROJECT_ID_FIELD_NUMBER: _ClassVar[int]
COLLECTION_ID_FIELD_NUMBER: _ClassVar[int]
DATASET_ID_FIELD_NUMBER: _ClassVar[int]
OBJECT_ID_FIELD_NUMBER: _ClassVar[int]
project_id: str
collection_id: str
dataset_id: str
object_id: str
def __init__(self, project_id: _Optional[str] = ..., collection_id: _Optional[str] = ..., dataset_id: _Optional[str] = ..., object_id: _Optional[str] = ...) -> None: ...
__slots__ = ()
def __init__(self) -> None: ...

class Copy(_message.Message):
__slots__ = ("resource", "target_endpoint", "push")
Expand Down
4 changes: 2 additions & 2 deletions aruna/api/storage/services/v2/project_service_pb2.py

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

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='Aruna-Python-API',
version="2.0.0-beta.10",
version="2.0.0-beta.11",
description='Aruna Object Storage Python API builds',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 0c85110

Please sign in to comment.