Skip to content

Commit

Permalink
Update version to 2.0.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 18, 2023
1 parent 958d4f0 commit caae652
Show file tree
Hide file tree
Showing 69 changed files with 24,303 additions and 2,977 deletions.
2 changes: 1 addition & 1 deletion API
Submodule API updated from 28b900 to 542667
256 changes: 256 additions & 0 deletions aruna/api/dataproxy/services/v2/bundler_service.pb.gw.go

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

40 changes: 40 additions & 0 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.

36 changes: 36 additions & 0 deletions aruna/api/dataproxy/services/v2/bundler_service_pb2.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
from google.protobuf import timestamp_pb2 as _timestamp_pb2
from google.api import annotations_pb2 as _annotations_pb2
from google.protobuf.internal import containers as _containers
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union

DESCRIPTOR: _descriptor.FileDescriptor

class CreateBundleRequest(_message.Message):
__slots__ = ["resource_id", "filename", "expires_at"]
RESOURCE_ID_FIELD_NUMBER: _ClassVar[int]
FILENAME_FIELD_NUMBER: _ClassVar[int]
EXPIRES_AT_FIELD_NUMBER: _ClassVar[int]
resource_id: _containers.RepeatedScalarFieldContainer[str]
filename: str
expires_at: _timestamp_pb2.Timestamp
def __init__(self, resource_id: _Optional[_Iterable[str]] = ..., filename: _Optional[str] = ..., expires_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...

class CreateBundleResponse(_message.Message):
__slots__ = ["bundle_id", "bundle_url"]
BUNDLE_ID_FIELD_NUMBER: _ClassVar[int]
BUNDLE_URL_FIELD_NUMBER: _ClassVar[int]
bundle_id: str
bundle_url: str
def __init__(self, bundle_id: _Optional[str] = ..., bundle_url: _Optional[str] = ...) -> None: ...

class DeleteBundleRequest(_message.Message):
__slots__ = ["bundle_id"]
BUNDLE_ID_FIELD_NUMBER: _ClassVar[int]
bundle_id: str
def __init__(self, bundle_id: _Optional[str] = ...) -> None: ...

class DeleteBundleResponse(_message.Message):
__slots__ = []
def __init__(self) -> None: ...
Loading

0 comments on commit caae652

Please sign in to comment.