-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update stubs to current proto spec. (#52)
* Update stubs to current proto spec. * Add missing google-api-core dependency
- Loading branch information
Showing
30 changed files
with
1,194 additions
and
610 deletions.
There are no files selected for viewing
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
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
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
97 changes: 97 additions & 0 deletions
97
exabel_data_sdk/stubs/exabel/api/data/v1/data_set_messages_pb2.py
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
52 changes: 52 additions & 0 deletions
52
exabel_data_sdk/stubs/exabel/api/data/v1/data_set_messages_pb2.pyi
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,52 @@ | ||
""" | ||
@generated by mypy-protobuf. Do not edit manually! | ||
isort:skip_file | ||
""" | ||
from google.protobuf.descriptor import ( | ||
Descriptor as google___protobuf___descriptor___Descriptor, | ||
FileDescriptor as google___protobuf___descriptor___FileDescriptor, | ||
) | ||
|
||
from google.protobuf.internal.containers import ( | ||
RepeatedScalarFieldContainer as google___protobuf___internal___containers___RepeatedScalarFieldContainer, | ||
) | ||
|
||
from google.protobuf.message import ( | ||
Message as google___protobuf___message___Message, | ||
) | ||
|
||
from typing import ( | ||
Iterable as typing___Iterable, | ||
Optional as typing___Optional, | ||
Text as typing___Text, | ||
) | ||
|
||
from typing_extensions import ( | ||
Literal as typing_extensions___Literal, | ||
) | ||
|
||
|
||
builtin___bool = bool | ||
builtin___bytes = bytes | ||
builtin___float = float | ||
builtin___int = int | ||
|
||
|
||
DESCRIPTOR: google___protobuf___descriptor___FileDescriptor = ... | ||
|
||
class DataSet(google___protobuf___message___Message): | ||
DESCRIPTOR: google___protobuf___descriptor___Descriptor = ... | ||
name: typing___Text = ... | ||
display_name: typing___Text = ... | ||
description: typing___Text = ... | ||
signals: google___protobuf___internal___containers___RepeatedScalarFieldContainer[typing___Text] = ... | ||
|
||
def __init__(self, | ||
*, | ||
name : typing___Optional[typing___Text] = None, | ||
display_name : typing___Optional[typing___Text] = None, | ||
description : typing___Optional[typing___Text] = None, | ||
signals : typing___Optional[typing___Iterable[typing___Text]] = None, | ||
) -> None: ... | ||
def ClearField(self, field_name: typing_extensions___Literal[u"description",b"description",u"display_name",b"display_name",u"name",b"name",u"signals",b"signals"]) -> None: ... | ||
type___DataSet = DataSet |
File renamed without changes.
Oops, something went wrong.