forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConnector_pb2.pyi
More file actions
108 lines (93 loc) · 4.25 KB
/
Connector_pb2.pyi
File metadata and controls
108 lines (93 loc) · 4.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
"""
@generated by mypy-protobuf. Do not edit manually!
isort:skip_file
"""
from collections import abc as _abc
from feast.serving import ServingService_pb2 as _ServingService_pb2 # type: ignore[attr-defined]
from feast.types import EntityKey_pb2 as _EntityKey_pb2 # type: ignore[attr-defined]
from feast.types import Value_pb2 as _Value_pb2 # type: ignore[attr-defined]
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import timestamp_pb2 as _timestamp_pb2
from google.protobuf.internal import containers as _containers
import builtins as _builtins
import sys
import typing as _typing
if sys.version_info >= (3, 10):
from typing import TypeAlias as _TypeAlias
else:
from typing_extensions import TypeAlias as _TypeAlias
DESCRIPTOR: _descriptor.FileDescriptor
@_typing.final
class ConnectorFeature(_message.Message):
DESCRIPTOR: _descriptor.Descriptor
REFERENCE_FIELD_NUMBER: _builtins.int
TIMESTAMP_FIELD_NUMBER: _builtins.int
VALUE_FIELD_NUMBER: _builtins.int
@_builtins.property
def reference(self) -> _ServingService_pb2.FeatureReferenceV2: ...
@_builtins.property
def timestamp(self) -> _timestamp_pb2.Timestamp: ...
@_builtins.property
def value(self) -> _Value_pb2.Value: ...
def __init__(
self,
*,
reference: _ServingService_pb2.FeatureReferenceV2 | None = ...,
timestamp: _timestamp_pb2.Timestamp | None = ...,
value: _Value_pb2.Value | None = ...,
) -> None: ...
_HasFieldArgType: _TypeAlias = _typing.Literal["reference", b"reference", "timestamp", b"timestamp", "value", b"value"] # noqa: Y015
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["reference", b"reference", "timestamp", b"timestamp", "value", b"value"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
Global___ConnectorFeature: _TypeAlias = ConnectorFeature # noqa: Y015
@_typing.final
class ConnectorFeatureList(_message.Message):
DESCRIPTOR: _descriptor.Descriptor
FEATURELIST_FIELD_NUMBER: _builtins.int
@_builtins.property
def featureList(self) -> _containers.RepeatedCompositeFieldContainer[Global___ConnectorFeature]: ...
def __init__(
self,
*,
featureList: _abc.Iterable[Global___ConnectorFeature] | None = ...,
) -> None: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["featureList", b"featureList"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
Global___ConnectorFeatureList: _TypeAlias = ConnectorFeatureList # noqa: Y015
@_typing.final
class OnlineReadRequest(_message.Message):
DESCRIPTOR: _descriptor.Descriptor
ENTITYKEYS_FIELD_NUMBER: _builtins.int
VIEW_FIELD_NUMBER: _builtins.int
FEATURES_FIELD_NUMBER: _builtins.int
view: _builtins.str
@_builtins.property
def entityKeys(self) -> _containers.RepeatedCompositeFieldContainer[_EntityKey_pb2.EntityKey]: ...
@_builtins.property
def features(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
def __init__(
self,
*,
entityKeys: _abc.Iterable[_EntityKey_pb2.EntityKey] | None = ...,
view: _builtins.str = ...,
features: _abc.Iterable[_builtins.str] | None = ...,
) -> None: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["entityKeys", b"entityKeys", "features", b"features", "view", b"view"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
Global___OnlineReadRequest: _TypeAlias = OnlineReadRequest # noqa: Y015
@_typing.final
class OnlineReadResponse(_message.Message):
DESCRIPTOR: _descriptor.Descriptor
RESULTS_FIELD_NUMBER: _builtins.int
@_builtins.property
def results(self) -> _containers.RepeatedCompositeFieldContainer[Global___ConnectorFeatureList]: ...
def __init__(
self,
*,
results: _abc.Iterable[Global___ConnectorFeatureList] | None = ...,
) -> None: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["results", b"results"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
Global___OnlineReadResponse: _TypeAlias = OnlineReadResponse # noqa: Y015