-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
958d4f0
commit caae652
Showing
69 changed files
with
24,303 additions
and
2,977 deletions.
There are no files selected for viewing
Submodule API
updated
from 28b900 to 542667
256 changes: 256 additions & 0 deletions
256
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.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ... |
Oops, something went wrong.