nominal-api-protos 0.971.0__py3-none-any.whl → 0.990.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nominal_api_protos/nominal/ai/v1/ai_agent_pb2.py +121 -0
- nominal_api_protos/nominal/ai/v1/ai_agent_pb2.pyi +349 -0
- nominal_api_protos/nominal/ai/v1/ai_agent_pb2_grpc.py +321 -0
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.py +8 -84
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi +8 -312
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2_grpc.py +40 -36
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.py +145 -0
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.pyi +255 -0
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2_grpc.py +368 -0
- nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2.py +117 -0
- nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2.pyi +282 -0
- nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2_grpc.py +24 -0
- nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.py +25 -23
- nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.pyi +10 -2
- nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.py +70 -72
- nominal_api_protos/nominal/procedures/v1/procedures_pb2.py +220 -216
- nominal_api_protos/nominal/procedures/v1/procedures_pb2.pyi +8 -4
- nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.py +12 -12
- nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.pyi +0 -2
- nominal_api_protos/nominal_write_pb2.py +24 -14
- nominal_api_protos/nominal_write_pb2.pyi +40 -2
- {nominal_api_protos-0.971.0.dist-info → nominal_api_protos-0.990.0.dist-info}/METADATA +1 -1
- {nominal_api_protos-0.971.0.dist-info → nominal_api_protos-0.990.0.dist-info}/RECORD +25 -16
- {nominal_api_protos-0.971.0.dist-info → nominal_api_protos-0.990.0.dist-info}/WHEEL +0 -0
- {nominal_api_protos-0.971.0.dist-info → nominal_api_protos-0.990.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
|
|
3
|
+
from buf.validate import validate_pb2 as _validate_pb2
|
|
4
|
+
from google.protobuf import empty_pb2 as _empty_pb2
|
|
5
|
+
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
|
6
|
+
from nominal.gen.v1 import alias_pb2 as _alias_pb2
|
|
7
|
+
from google.protobuf.internal import containers as _containers
|
|
8
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
9
|
+
from google.protobuf import descriptor as _descriptor
|
|
10
|
+
from google.protobuf import message as _message
|
|
11
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
|
12
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
13
|
+
|
|
14
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
15
|
+
|
|
16
|
+
class OpcUaReferenceExplorationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
17
|
+
__slots__ = ()
|
|
18
|
+
OPC_UA_REFERENCE_EXPLORATION_TYPE_UNSPECIFIED: _ClassVar[OpcUaReferenceExplorationType]
|
|
19
|
+
OPC_UA_REFERENCE_EXPLORATION_TYPE_ORGANIZES: _ClassVar[OpcUaReferenceExplorationType]
|
|
20
|
+
OPC_UA_REFERENCE_EXPLORATION_TYPE_HIERARCHICAL_REFERENCES: _ClassVar[OpcUaReferenceExplorationType]
|
|
21
|
+
|
|
22
|
+
class OpcUaUnknownDataTypeHandling(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
23
|
+
__slots__ = ()
|
|
24
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_UNSPECIFIED: _ClassVar[OpcUaUnknownDataTypeHandling]
|
|
25
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_ERROR: _ClassVar[OpcUaUnknownDataTypeHandling]
|
|
26
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_TREAT_AS_DOUBLE: _ClassVar[OpcUaUnknownDataTypeHandling]
|
|
27
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_TREAT_AS_STRING: _ClassVar[OpcUaUnknownDataTypeHandling]
|
|
28
|
+
|
|
29
|
+
class OpcUaFailedMonitorHandling(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
30
|
+
__slots__ = ()
|
|
31
|
+
OPC_UA_FAILED_MONITOR_HANDLING_UNSPECIFIED: _ClassVar[OpcUaFailedMonitorHandling]
|
|
32
|
+
OPC_UA_FAILED_MONITOR_HANDLING_ERROR: _ClassVar[OpcUaFailedMonitorHandling]
|
|
33
|
+
OPC_UA_FAILED_MONITOR_HANDLING_IGNORE: _ClassVar[OpcUaFailedMonitorHandling]
|
|
34
|
+
|
|
35
|
+
class OpcUaDataChangeTrigger(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
36
|
+
__slots__ = ()
|
|
37
|
+
OPC_UA_DATA_CHANGE_TRIGGER_UNSPECIFIED: _ClassVar[OpcUaDataChangeTrigger]
|
|
38
|
+
OPC_UA_DATA_CHANGE_TRIGGER_STATUS_ONLY: _ClassVar[OpcUaDataChangeTrigger]
|
|
39
|
+
OPC_UA_DATA_CHANGE_TRIGGER_STATUS_VALUE: _ClassVar[OpcUaDataChangeTrigger]
|
|
40
|
+
OPC_UA_DATA_CHANGE_TRIGGER_STATUS_VALUE_TIMESTAMP: _ClassVar[OpcUaDataChangeTrigger]
|
|
41
|
+
|
|
42
|
+
class OpcUaDeadbandType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
43
|
+
__slots__ = ()
|
|
44
|
+
OPC_UA_DEADBAND_TYPE_UNSPECIFIED: _ClassVar[OpcUaDeadbandType]
|
|
45
|
+
OPC_UA_DEADBAND_TYPE_NONE: _ClassVar[OpcUaDeadbandType]
|
|
46
|
+
OPC_UA_DEADBAND_TYPE_ABSOLUTE: _ClassVar[OpcUaDeadbandType]
|
|
47
|
+
OPC_UA_DEADBAND_TYPE_PERCENT: _ClassVar[OpcUaDeadbandType]
|
|
48
|
+
OPC_UA_REFERENCE_EXPLORATION_TYPE_UNSPECIFIED: OpcUaReferenceExplorationType
|
|
49
|
+
OPC_UA_REFERENCE_EXPLORATION_TYPE_ORGANIZES: OpcUaReferenceExplorationType
|
|
50
|
+
OPC_UA_REFERENCE_EXPLORATION_TYPE_HIERARCHICAL_REFERENCES: OpcUaReferenceExplorationType
|
|
51
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_UNSPECIFIED: OpcUaUnknownDataTypeHandling
|
|
52
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_ERROR: OpcUaUnknownDataTypeHandling
|
|
53
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_TREAT_AS_DOUBLE: OpcUaUnknownDataTypeHandling
|
|
54
|
+
OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_TREAT_AS_STRING: OpcUaUnknownDataTypeHandling
|
|
55
|
+
OPC_UA_FAILED_MONITOR_HANDLING_UNSPECIFIED: OpcUaFailedMonitorHandling
|
|
56
|
+
OPC_UA_FAILED_MONITOR_HANDLING_ERROR: OpcUaFailedMonitorHandling
|
|
57
|
+
OPC_UA_FAILED_MONITOR_HANDLING_IGNORE: OpcUaFailedMonitorHandling
|
|
58
|
+
OPC_UA_DATA_CHANGE_TRIGGER_UNSPECIFIED: OpcUaDataChangeTrigger
|
|
59
|
+
OPC_UA_DATA_CHANGE_TRIGGER_STATUS_ONLY: OpcUaDataChangeTrigger
|
|
60
|
+
OPC_UA_DATA_CHANGE_TRIGGER_STATUS_VALUE: OpcUaDataChangeTrigger
|
|
61
|
+
OPC_UA_DATA_CHANGE_TRIGGER_STATUS_VALUE_TIMESTAMP: OpcUaDataChangeTrigger
|
|
62
|
+
OPC_UA_DEADBAND_TYPE_UNSPECIFIED: OpcUaDeadbandType
|
|
63
|
+
OPC_UA_DEADBAND_TYPE_NONE: OpcUaDeadbandType
|
|
64
|
+
OPC_UA_DEADBAND_TYPE_ABSOLUTE: OpcUaDeadbandType
|
|
65
|
+
OPC_UA_DEADBAND_TYPE_PERCENT: OpcUaDeadbandType
|
|
66
|
+
|
|
67
|
+
class OpcAuthenticationConfig(_message.Message):
|
|
68
|
+
__slots__ = ("anonymous", "username_password", "token")
|
|
69
|
+
ANONYMOUS_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
USERNAME_PASSWORD_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
anonymous: _empty_pb2.Empty
|
|
73
|
+
username_password: OpcUsernamePasswordAuthentication
|
|
74
|
+
token: OpcTokenAuthentication
|
|
75
|
+
def __init__(self, anonymous: _Optional[_Union[_empty_pb2.Empty, _Mapping]] = ..., username_password: _Optional[_Union[OpcUsernamePasswordAuthentication, _Mapping]] = ..., token: _Optional[_Union[OpcTokenAuthentication, _Mapping]] = ...) -> None: ...
|
|
76
|
+
|
|
77
|
+
class OpcAuthenticationConfigSecret(_message.Message):
|
|
78
|
+
__slots__ = ("anonymous", "username_password", "token")
|
|
79
|
+
ANONYMOUS_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
USERNAME_PASSWORD_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
anonymous: _empty_pb2.Empty
|
|
83
|
+
username_password: OpcUsernamePasswordAuthenticationSecret
|
|
84
|
+
token: OpcTokenAuthenticationSecret
|
|
85
|
+
def __init__(self, anonymous: _Optional[_Union[_empty_pb2.Empty, _Mapping]] = ..., username_password: _Optional[_Union[OpcUsernamePasswordAuthenticationSecret, _Mapping]] = ..., token: _Optional[_Union[OpcTokenAuthenticationSecret, _Mapping]] = ...) -> None: ...
|
|
86
|
+
|
|
87
|
+
class OpcUsernamePasswordAuthentication(_message.Message):
|
|
88
|
+
__slots__ = ("username", "password")
|
|
89
|
+
USERNAME_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
PASSWORD_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
username: str
|
|
92
|
+
password: str
|
|
93
|
+
def __init__(self, username: _Optional[str] = ..., password: _Optional[str] = ...) -> None: ...
|
|
94
|
+
|
|
95
|
+
class OpcUsernamePasswordAuthenticationSecret(_message.Message):
|
|
96
|
+
__slots__ = ("username", "password")
|
|
97
|
+
USERNAME_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
PASSWORD_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
username: str
|
|
100
|
+
password: str
|
|
101
|
+
def __init__(self, username: _Optional[str] = ..., password: _Optional[str] = ...) -> None: ...
|
|
102
|
+
|
|
103
|
+
class OpcTokenAuthentication(_message.Message):
|
|
104
|
+
__slots__ = ("token",)
|
|
105
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
token: str
|
|
107
|
+
def __init__(self, token: _Optional[str] = ...) -> None: ...
|
|
108
|
+
|
|
109
|
+
class OpcTokenAuthenticationSecret(_message.Message):
|
|
110
|
+
__slots__ = ("token",)
|
|
111
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
token: str
|
|
113
|
+
def __init__(self, token: _Optional[str] = ...) -> None: ...
|
|
114
|
+
|
|
115
|
+
class OpcIdentifierValue(_message.Message):
|
|
116
|
+
__slots__ = ("numeric", "string")
|
|
117
|
+
NUMERIC_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
STRING_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
numeric: int
|
|
120
|
+
string: str
|
|
121
|
+
def __init__(self, numeric: _Optional[int] = ..., string: _Optional[str] = ...) -> None: ...
|
|
122
|
+
|
|
123
|
+
class OpcNode(_message.Message):
|
|
124
|
+
__slots__ = ("namespace", "identifier")
|
|
125
|
+
NAMESPACE_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
IDENTIFIER_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
namespace: int
|
|
128
|
+
identifier: OpcIdentifierValue
|
|
129
|
+
def __init__(self, namespace: _Optional[int] = ..., identifier: _Optional[_Union[OpcIdentifierValue, _Mapping]] = ...) -> None: ...
|
|
130
|
+
|
|
131
|
+
class OpcUaChannelNamingConvention(_message.Message):
|
|
132
|
+
__slots__ = ("node_id", "browse_name", "display_name", "full_path")
|
|
133
|
+
class OpcUaNodeId(_message.Message):
|
|
134
|
+
__slots__ = ()
|
|
135
|
+
def __init__(self) -> None: ...
|
|
136
|
+
class OpcUaBrowseName(_message.Message):
|
|
137
|
+
__slots__ = ()
|
|
138
|
+
def __init__(self) -> None: ...
|
|
139
|
+
class OpcUaDisplayName(_message.Message):
|
|
140
|
+
__slots__ = ()
|
|
141
|
+
def __init__(self) -> None: ...
|
|
142
|
+
class OpcUaFullPath(_message.Message):
|
|
143
|
+
__slots__ = ("root_nodes", "delimiter")
|
|
144
|
+
ROOT_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
DELIMITER_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
root_nodes: _containers.RepeatedCompositeFieldContainer[OpcNode]
|
|
147
|
+
delimiter: str
|
|
148
|
+
def __init__(self, root_nodes: _Optional[_Iterable[_Union[OpcNode, _Mapping]]] = ..., delimiter: _Optional[str] = ...) -> None: ...
|
|
149
|
+
NODE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
BROWSE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
FULL_PATH_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
node_id: OpcUaChannelNamingConvention.OpcUaNodeId
|
|
154
|
+
browse_name: OpcUaChannelNamingConvention.OpcUaBrowseName
|
|
155
|
+
display_name: OpcUaChannelNamingConvention.OpcUaDisplayName
|
|
156
|
+
full_path: OpcUaChannelNamingConvention.OpcUaFullPath
|
|
157
|
+
def __init__(self, node_id: _Optional[_Union[OpcUaChannelNamingConvention.OpcUaNodeId, _Mapping]] = ..., browse_name: _Optional[_Union[OpcUaChannelNamingConvention.OpcUaBrowseName, _Mapping]] = ..., display_name: _Optional[_Union[OpcUaChannelNamingConvention.OpcUaDisplayName, _Mapping]] = ..., full_path: _Optional[_Union[OpcUaChannelNamingConvention.OpcUaFullPath, _Mapping]] = ...) -> None: ...
|
|
158
|
+
|
|
159
|
+
class OpcUaConnectorDetails(_message.Message):
|
|
160
|
+
__slots__ = ("uri", "authentication_config", "scraping_config")
|
|
161
|
+
URI_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
AUTHENTICATION_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
SCRAPING_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
uri: str
|
|
165
|
+
authentication_config: OpcAuthenticationConfig
|
|
166
|
+
scraping_config: OpcUaScrapingConfig
|
|
167
|
+
def __init__(self, uri: _Optional[str] = ..., authentication_config: _Optional[_Union[OpcAuthenticationConfig, _Mapping]] = ..., scraping_config: _Optional[_Union[OpcUaScrapingConfig, _Mapping]] = ...) -> None: ...
|
|
168
|
+
|
|
169
|
+
class OpcUaConnectorDetailsUpdates(_message.Message):
|
|
170
|
+
__slots__ = ("uri", "authentication_config", "scraping_config")
|
|
171
|
+
URI_FIELD_NUMBER: _ClassVar[int]
|
|
172
|
+
AUTHENTICATION_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
173
|
+
SCRAPING_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
174
|
+
uri: str
|
|
175
|
+
authentication_config: OpcAuthenticationConfig
|
|
176
|
+
scraping_config: OpcUaScrapingConfigUpdates
|
|
177
|
+
def __init__(self, uri: _Optional[str] = ..., authentication_config: _Optional[_Union[OpcAuthenticationConfig, _Mapping]] = ..., scraping_config: _Optional[_Union[OpcUaScrapingConfigUpdates, _Mapping]] = ...) -> None: ...
|
|
178
|
+
|
|
179
|
+
class OpcUaConnectorDetailsSecret(_message.Message):
|
|
180
|
+
__slots__ = ("uri", "authentication_config", "scraping_config")
|
|
181
|
+
URI_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
AUTHENTICATION_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
SCRAPING_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
uri: str
|
|
185
|
+
authentication_config: OpcAuthenticationConfigSecret
|
|
186
|
+
scraping_config: OpcUaScrapingConfig
|
|
187
|
+
def __init__(self, uri: _Optional[str] = ..., authentication_config: _Optional[_Union[OpcAuthenticationConfigSecret, _Mapping]] = ..., scraping_config: _Optional[_Union[OpcUaScrapingConfig, _Mapping]] = ...) -> None: ...
|
|
188
|
+
|
|
189
|
+
class OpcUaTraversalConfig(_message.Message):
|
|
190
|
+
__slots__ = ("root_nodes", "skip_nodes", "reference_exploration_type")
|
|
191
|
+
ROOT_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
192
|
+
SKIP_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
193
|
+
REFERENCE_EXPLORATION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
194
|
+
root_nodes: _containers.RepeatedCompositeFieldContainer[OpcNode]
|
|
195
|
+
skip_nodes: _containers.RepeatedCompositeFieldContainer[OpcNode]
|
|
196
|
+
reference_exploration_type: OpcUaReferenceExplorationType
|
|
197
|
+
def __init__(self, root_nodes: _Optional[_Iterable[_Union[OpcNode, _Mapping]]] = ..., skip_nodes: _Optional[_Iterable[_Union[OpcNode, _Mapping]]] = ..., reference_exploration_type: _Optional[_Union[OpcUaReferenceExplorationType, str]] = ...) -> None: ...
|
|
198
|
+
|
|
199
|
+
class OpcUaDirectNodeSubscription(_message.Message):
|
|
200
|
+
__slots__ = ("nodes",)
|
|
201
|
+
NODES_FIELD_NUMBER: _ClassVar[int]
|
|
202
|
+
nodes: _containers.RepeatedCompositeFieldContainer[OpcNode]
|
|
203
|
+
def __init__(self, nodes: _Optional[_Iterable[_Union[OpcNode, _Mapping]]] = ...) -> None: ...
|
|
204
|
+
|
|
205
|
+
class OpcUaNodeExplorationConfig(_message.Message):
|
|
206
|
+
__slots__ = ("opc_ua_traversal_config", "opc_ua_direct_node_subscription")
|
|
207
|
+
OPC_UA_TRAVERSAL_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
208
|
+
OPC_UA_DIRECT_NODE_SUBSCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
209
|
+
opc_ua_traversal_config: OpcUaTraversalConfig
|
|
210
|
+
opc_ua_direct_node_subscription: OpcUaDirectNodeSubscription
|
|
211
|
+
def __init__(self, opc_ua_traversal_config: _Optional[_Union[OpcUaTraversalConfig, _Mapping]] = ..., opc_ua_direct_node_subscription: _Optional[_Union[OpcUaDirectNodeSubscription, _Mapping]] = ...) -> None: ...
|
|
212
|
+
|
|
213
|
+
class OpcUaTimestampHandling(_message.Message):
|
|
214
|
+
__slots__ = ("server", "source", "relative")
|
|
215
|
+
class OpcUaServerTime(_message.Message):
|
|
216
|
+
__slots__ = ()
|
|
217
|
+
def __init__(self) -> None: ...
|
|
218
|
+
class OpcUaSourceTime(_message.Message):
|
|
219
|
+
__slots__ = ()
|
|
220
|
+
def __init__(self) -> None: ...
|
|
221
|
+
class OpcUaRelativeTimestamp(_message.Message):
|
|
222
|
+
__slots__ = ("offset",)
|
|
223
|
+
OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
224
|
+
offset: _timestamp_pb2.Timestamp
|
|
225
|
+
def __init__(self, offset: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
|
|
226
|
+
SERVER_FIELD_NUMBER: _ClassVar[int]
|
|
227
|
+
SOURCE_FIELD_NUMBER: _ClassVar[int]
|
|
228
|
+
RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
229
|
+
server: OpcUaTimestampHandling.OpcUaServerTime
|
|
230
|
+
source: OpcUaTimestampHandling.OpcUaSourceTime
|
|
231
|
+
relative: OpcUaTimestampHandling.OpcUaRelativeTimestamp
|
|
232
|
+
def __init__(self, server: _Optional[_Union[OpcUaTimestampHandling.OpcUaServerTime, _Mapping]] = ..., source: _Optional[_Union[OpcUaTimestampHandling.OpcUaSourceTime, _Mapping]] = ..., relative: _Optional[_Union[OpcUaTimestampHandling.OpcUaRelativeTimestamp, _Mapping]] = ...) -> None: ...
|
|
233
|
+
|
|
234
|
+
class OpcUaDataChangeFilter(_message.Message):
|
|
235
|
+
__slots__ = ("trigger", "deadband_type", "deadband_value")
|
|
236
|
+
TRIGGER_FIELD_NUMBER: _ClassVar[int]
|
|
237
|
+
DEADBAND_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
238
|
+
DEADBAND_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
239
|
+
trigger: OpcUaDataChangeTrigger
|
|
240
|
+
deadband_type: OpcUaDeadbandType
|
|
241
|
+
deadband_value: float
|
|
242
|
+
def __init__(self, trigger: _Optional[_Union[OpcUaDataChangeTrigger, str]] = ..., deadband_type: _Optional[_Union[OpcUaDeadbandType, str]] = ..., deadband_value: _Optional[float] = ...) -> None: ...
|
|
243
|
+
|
|
244
|
+
class OpcUaScrapingConfig(_message.Message):
|
|
245
|
+
__slots__ = ("node_exploration_config", "unit_node_name", "channel_naming_convention", "override_host", "unknown_data_type_handling", "failed_monitor_handling", "timestamp_handling", "data_change_filter")
|
|
246
|
+
NODE_EXPLORATION_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
247
|
+
UNIT_NODE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
248
|
+
CHANNEL_NAMING_CONVENTION_FIELD_NUMBER: _ClassVar[int]
|
|
249
|
+
OVERRIDE_HOST_FIELD_NUMBER: _ClassVar[int]
|
|
250
|
+
UNKNOWN_DATA_TYPE_HANDLING_FIELD_NUMBER: _ClassVar[int]
|
|
251
|
+
FAILED_MONITOR_HANDLING_FIELD_NUMBER: _ClassVar[int]
|
|
252
|
+
TIMESTAMP_HANDLING_FIELD_NUMBER: _ClassVar[int]
|
|
253
|
+
DATA_CHANGE_FILTER_FIELD_NUMBER: _ClassVar[int]
|
|
254
|
+
node_exploration_config: OpcUaNodeExplorationConfig
|
|
255
|
+
unit_node_name: str
|
|
256
|
+
channel_naming_convention: OpcUaChannelNamingConvention
|
|
257
|
+
override_host: bool
|
|
258
|
+
unknown_data_type_handling: OpcUaUnknownDataTypeHandling
|
|
259
|
+
failed_monitor_handling: OpcUaFailedMonitorHandling
|
|
260
|
+
timestamp_handling: OpcUaTimestampHandling
|
|
261
|
+
data_change_filter: OpcUaDataChangeFilter
|
|
262
|
+
def __init__(self, node_exploration_config: _Optional[_Union[OpcUaNodeExplorationConfig, _Mapping]] = ..., unit_node_name: _Optional[str] = ..., channel_naming_convention: _Optional[_Union[OpcUaChannelNamingConvention, _Mapping]] = ..., override_host: bool = ..., unknown_data_type_handling: _Optional[_Union[OpcUaUnknownDataTypeHandling, str]] = ..., failed_monitor_handling: _Optional[_Union[OpcUaFailedMonitorHandling, str]] = ..., timestamp_handling: _Optional[_Union[OpcUaTimestampHandling, _Mapping]] = ..., data_change_filter: _Optional[_Union[OpcUaDataChangeFilter, _Mapping]] = ...) -> None: ...
|
|
263
|
+
|
|
264
|
+
class OpcUaScrapingConfigUpdates(_message.Message):
|
|
265
|
+
__slots__ = ("node_exploration_config", "unit_node_name", "channel_naming_convention", "override_host", "unknown_data_type_handling", "failed_monitor_handling", "timestamp_handling", "data_change_filter")
|
|
266
|
+
NODE_EXPLORATION_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
267
|
+
UNIT_NODE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
268
|
+
CHANNEL_NAMING_CONVENTION_FIELD_NUMBER: _ClassVar[int]
|
|
269
|
+
OVERRIDE_HOST_FIELD_NUMBER: _ClassVar[int]
|
|
270
|
+
UNKNOWN_DATA_TYPE_HANDLING_FIELD_NUMBER: _ClassVar[int]
|
|
271
|
+
FAILED_MONITOR_HANDLING_FIELD_NUMBER: _ClassVar[int]
|
|
272
|
+
TIMESTAMP_HANDLING_FIELD_NUMBER: _ClassVar[int]
|
|
273
|
+
DATA_CHANGE_FILTER_FIELD_NUMBER: _ClassVar[int]
|
|
274
|
+
node_exploration_config: OpcUaNodeExplorationConfig
|
|
275
|
+
unit_node_name: str
|
|
276
|
+
channel_naming_convention: OpcUaChannelNamingConvention
|
|
277
|
+
override_host: bool
|
|
278
|
+
unknown_data_type_handling: OpcUaUnknownDataTypeHandling
|
|
279
|
+
failed_monitor_handling: OpcUaFailedMonitorHandling
|
|
280
|
+
timestamp_handling: OpcUaTimestampHandling
|
|
281
|
+
data_change_filter: OpcUaDataChangeFilter
|
|
282
|
+
def __init__(self, node_exploration_config: _Optional[_Union[OpcUaNodeExplorationConfig, _Mapping]] = ..., unit_node_name: _Optional[str] = ..., channel_naming_convention: _Optional[_Union[OpcUaChannelNamingConvention, _Mapping]] = ..., override_host: bool = ..., unknown_data_type_handling: _Optional[_Union[OpcUaUnknownDataTypeHandling, str]] = ..., failed_monitor_handling: _Optional[_Union[OpcUaFailedMonitorHandling, str]] = ..., timestamp_handling: _Optional[_Union[OpcUaTimestampHandling, _Mapping]] = ..., data_change_filter: _Optional[_Union[OpcUaDataChangeFilter, _Mapping]] = ...) -> None: ...
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.76.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ ' but the generated code in nominal/data_connector/v1/opc_ua_connector_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -28,7 +28,7 @@ from nominal.gen.v1 import error_pb2 as nominal_dot_gen_dot_v1_dot_error__pb2
|
|
|
28
28
|
from nominal.types.time import time_pb2 as nominal_dot_types_dot_time_dot_time__pb2
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nDnominal/direct_channel_writer/v2/direct_nominal_channel_writer.proto\x12 nominal.direct_channel_writer.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x1anominal/gen/v1/alias.proto\x1a\x1anominal/gen/v1/error.proto\x1a\x1dnominal/types/time/time.proto\"\xa8\x01\n\x13WriteBatchesRequest\x12?\n\x07\x62\x61tches\x18\x01 \x03(\x0b\x32..nominal.direct_channel_writer.v2.RecordsBatch\x12P\n\x0f\x64\x61ta_source_rid\x18\x02 \x01(\tB7\x9a\xb2\x1a\x33\n1io.nominal.api.rids.NominalDataSourceOrDatasetRid\"\xc3\x01\n\x0b\x41rrayPoints\x12R\n\x13\x64ouble_array_points\x18\x01 \x01(\x0b\x32\x33.nominal.direct_channel_writer.v2.DoubleArrayPointsH\x00\x12R\n\x13string_array_points\x18\x02 \x01(\x0b\x32\x33.nominal.direct_channel_writer.v2.StringArrayPointsH\x00\x42\x0c\n\narray_type\"W\n\x11StringArrayPoints\x12\x42\n\x06points\x18\x01 \x03(\x0b\x32\x32.nominal.direct_channel_writer.v2.StringArrayPoint\"!\n\x10StringArrayPoint\x12\r\n\x05value\x18\x02 \x03(\t\"W\n\x11\x44oubleArrayPoints\x12\x42\n\x06points\x18\x01 \x03(\x0b\x32\x32.nominal.direct_channel_writer.v2.DoubleArrayPoint\"!\n\x10\x44oubleArrayPoint\x12\r\n\x05value\x18\x02 \x03(\x01\"G\n\tLogPoints\x12:\n\x06points\x18\x01 \x03(\x0b\x32*.nominal.direct_channel_writer.v2.LogPoint\"E\n\x08LogPoint\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.nominal.direct_channel_writer.v2.LogValue\"\x8c\x01\n\x08LogValue\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x42\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x34.nominal.direct_channel_writer.v2.LogValue.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x1e\n\x0cStringPoints\x12\x0e\n\x06points\x18\x01 \x03(\t\"\x1e\n\x0c\x44oublePoints\x12\x0e\n\x06points\x18\x01 \x03(\x01\"\x1b\n\tIntPoints\x12\x0e\n\x06points\x18\x01 \x03(\x03\"\
|
|
31
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nDnominal/direct_channel_writer/v2/direct_nominal_channel_writer.proto\x12 nominal.direct_channel_writer.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x1anominal/gen/v1/alias.proto\x1a\x1anominal/gen/v1/error.proto\x1a\x1dnominal/types/time/time.proto\"\xa8\x01\n\x13WriteBatchesRequest\x12?\n\x07\x62\x61tches\x18\x01 \x03(\x0b\x32..nominal.direct_channel_writer.v2.RecordsBatch\x12P\n\x0f\x64\x61ta_source_rid\x18\x02 \x01(\tB7\x9a\xb2\x1a\x33\n1io.nominal.api.rids.NominalDataSourceOrDatasetRid\"\xc3\x01\n\x0b\x41rrayPoints\x12R\n\x13\x64ouble_array_points\x18\x01 \x01(\x0b\x32\x33.nominal.direct_channel_writer.v2.DoubleArrayPointsH\x00\x12R\n\x13string_array_points\x18\x02 \x01(\x0b\x32\x33.nominal.direct_channel_writer.v2.StringArrayPointsH\x00\x42\x0c\n\narray_type\"W\n\x11StringArrayPoints\x12\x42\n\x06points\x18\x01 \x03(\x0b\x32\x32.nominal.direct_channel_writer.v2.StringArrayPoint\"!\n\x10StringArrayPoint\x12\r\n\x05value\x18\x02 \x03(\t\"W\n\x11\x44oubleArrayPoints\x12\x42\n\x06points\x18\x01 \x03(\x0b\x32\x32.nominal.direct_channel_writer.v2.DoubleArrayPoint\"!\n\x10\x44oubleArrayPoint\x12\r\n\x05value\x18\x02 \x03(\x01\"G\n\tLogPoints\x12:\n\x06points\x18\x01 \x03(\x0b\x32*.nominal.direct_channel_writer.v2.LogPoint\"E\n\x08LogPoint\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.nominal.direct_channel_writer.v2.LogValue\"\x1e\n\x0cStructPoints\x12\x0e\n\x06points\x18\x01 \x03(\t\"\x8c\x01\n\x08LogValue\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x42\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x34.nominal.direct_channel_writer.v2.LogValue.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x1e\n\x0cStringPoints\x12\x0e\n\x06points\x18\x01 \x03(\t\"\x1e\n\x0c\x44oublePoints\x12\x0e\n\x06points\x18\x01 \x03(\x01\"\x1b\n\tIntPoints\x12\x0e\n\x06points\x18\x01 \x03(\x03\"\xed\x03\n\x06Points\x12\x31\n\ntimestamps\x18\x01 \x03(\x0b\x32\x1d.nominal.types.time.Timestamp\x12G\n\rdouble_points\x18\x02 \x01(\x0b\x32..nominal.direct_channel_writer.v2.DoublePointsH\x00\x12G\n\rstring_points\x18\x03 \x01(\x0b\x32..nominal.direct_channel_writer.v2.StringPointsH\x00\x12\x41\n\nlog_points\x18\x04 \x01(\x0b\x32+.nominal.direct_channel_writer.v2.LogPointsH\x00\x12\x41\n\nint_points\x18\x05 \x01(\x0b\x32+.nominal.direct_channel_writer.v2.IntPointsH\x00\x12\x45\n\x0c\x61rray_points\x18\x06 \x01(\x0b\x32-.nominal.direct_channel_writer.v2.ArrayPointsH\x00\x12G\n\rstruct_points\x18\x07 \x01(\x0b\x32..nominal.direct_channel_writer.v2.StructPointsH\x00\x42\x08\n\x06points\"\xa3\x02\n\x0cRecordsBatch\x12-\n\x07\x63hannel\x18\x01 \x01(\tB\x1c\x9a\xb2\x1a\x18\n\x16io.nominal.api.Channel\x12}\n\x04tags\x18\x02 \x03(\x0b\x32\x38.nominal.direct_channel_writer.v2.RecordsBatch.TagsEntryB5\x9a\xb2\x1a\x31\x12\x16io.nominal.api.TagName\x1a\x17io.nominal.api.TagValue\x12\x38\n\x06points\x18\x03 \x01(\x0b\x32(.nominal.direct_channel_writer.v2.Points\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x16\n\x14WriteBatchesResponse*\xfa\x0f\n\x1fNominalDirectChannelWriterError\x12\x62\n9NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_DATA_SOURCE_NOT_FOUND\x10\x00\x1a#\xb2\xb2\x1a\x1f\n\tNOT_FOUND\x12\x12\x44\x61taSourceNotFound\x12\x64\n:NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_DATA_SOURCES_NOT_FOUND\x10\x01\x1a$\xb2\xb2\x1a \n\tNOT_FOUND\x12\x13\x44\x61taSourcesNotFound\x12u\n?NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_INVALID_NOMINAL_DATA_SOURCE\x10\x02\x1a\x30\xb2\xb2\x1a,\n\x10INVALID_ARGUMENT\x12\x18InvalidNominalDataSource\x12\x85\x01\n@NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_NOMINAL_DATA_SOURCE_CONFLICT\x10\x03\x1a?\xb2\xb2\x1a;\n\x0e\x41LREADY_EXISTS\x12)The requested data source already exists.\x12{\n3NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_ARRAY_TOO_LARGE\x10\x04\x1a\x42\xb2\xb2\x1a>\n\x10INVALID_ARGUMENT\x12*Array size exceeds maximum allowed length.\x12\x9a\x01\n:NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_CONFLICTING_DATA_TYPES\x10\x05\x1aZ\xb2\xb2\x1aV\n\x10INVALID_ARGUMENT\x12\x42\x46ound two different data types for the same series in the request.\x12\x8c\x01\n7NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_INVALID_DATA_SOURCE\x10\x06\x1aO\xb2\xb2\x1aK\n\x10INVALID_ARGUMENT\x12\x37The nominal data source or dataset provided is invalid.\x12\x84\x01\n>NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_INVALID_TELEGRAF_TIMESTAMP\x10\x07\x1a@\xb2\xb2\x1a<\n\x10INVALID_ARGUMENT\x12(InvalidTelegrafgoogle.protobuf.Timestamp\x12s\n5NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_INVALID_TIMESTAMP\x10\x08\x1a\x38\xb2\xb2\x1a\x34\n\x10INVALID_ARGUMENT\x12 Invalidgoogle.protobuf.Timestamp\x12\xb0\x01\nDNOMINAL_DIRECT_CHANNEL_WRITER_ERROR_MISMATCHED_TIMESTAMPS_AND_VALUES\x10\t\x1a\x66\xb2\xb2\x1a\x62\n\x10INVALID_ARGUMENT\x12NColumnar streaming request contains different numbers of timestamps and values\x12\x81\x01\nANOMINAL_DIRECT_CHANNEL_WRITER_ERROR_STREAMING_DISABLED_ON_DATASET\x10\n\x1a:\xb2\xb2\x1a\x36\n\x10INVALID_ARGUMENT\x12\"Unsupported dataset for streaming.\x12\x91\x01\n1NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_INVALID_RANGE\x10\x0b\x1aZ\xb2\xb2\x1aV\n\x10INVALID_ARGUMENT\x12\x42The start time of the provided Range is greater than its end time.\x12\x8d\x01\n7NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_POINTS_TYPE_NOT_SET\x10\x0c\x1aP\xb2\xb2\x1aL\n\x10INVALID_ARGUMENT\x12\x38The provided ArrayPoints type or Points type is not set.\x12\x84\x01\n=NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_ARRAY_POINTS_TYPE_NOT_SET\x10\r\x1a\x41\xb2\xb2\x1a=\n\x10INVALID_ARGUMENT\x12)The provided ArrayPoints type is not set.\x12\x86\x01\n2NOMINAL_DIRECT_CHANNEL_WRITER_ERROR_NOT_AUTHORIZED\x10\x0e\x1aN\xb2\xb2\x1aJ\n\x11PERMISSION_DENIED\x12\x35Not authorized to write to the specified data source.2\xc9\x01\n!DirectNominalChannelWriterService\x12\xa3\x01\n\x0cWriteBatches\x12\x35.nominal.direct_channel_writer.v2.WriteBatchesRequest\x1a\x36.nominal.direct_channel_writer.v2.WriteBatchesResponse\"$\x82\xd3\xe4\x93\x02\x1e\"\x19/storage/direct-writer/v2:\x01*B\'\n#io.nominal.direct_channel_writer.v2P\x01\x62\x06proto3')
|
|
32
32
|
|
|
33
33
|
_globals = globals()
|
|
34
34
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -78,8 +78,8 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
78
78
|
_globals['_RECORDSBATCH'].fields_by_name['tags']._serialized_options = b'\232\262\0321\022\026io.nominal.api.TagName\032\027io.nominal.api.TagValue'
|
|
79
79
|
_globals['_DIRECTNOMINALCHANNELWRITERSERVICE'].methods_by_name['WriteBatches']._loaded_options = None
|
|
80
80
|
_globals['_DIRECTNOMINALCHANNELWRITERSERVICE'].methods_by_name['WriteBatches']._serialized_options = b'\202\323\344\223\002\036\"\031/storage/direct-writer/v2:\001*'
|
|
81
|
-
_globals['_NOMINALDIRECTCHANNELWRITERERROR']._serialized_start=
|
|
82
|
-
_globals['_NOMINALDIRECTCHANNELWRITERERROR']._serialized_end=
|
|
81
|
+
_globals['_NOMINALDIRECTCHANNELWRITERERROR']._serialized_start=2067
|
|
82
|
+
_globals['_NOMINALDIRECTCHANNELWRITERERROR']._serialized_end=4109
|
|
83
83
|
_globals['_WRITEBATCHESREQUEST']._serialized_start=224
|
|
84
84
|
_globals['_WRITEBATCHESREQUEST']._serialized_end=392
|
|
85
85
|
_globals['_ARRAYPOINTS']._serialized_start=395
|
|
@@ -96,24 +96,26 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
96
96
|
_globals['_LOGPOINTS']._serialized_end=911
|
|
97
97
|
_globals['_LOGPOINT']._serialized_start=913
|
|
98
98
|
_globals['_LOGPOINT']._serialized_end=982
|
|
99
|
-
_globals['
|
|
100
|
-
_globals['
|
|
101
|
-
_globals['
|
|
102
|
-
_globals['
|
|
103
|
-
_globals['
|
|
104
|
-
_globals['
|
|
105
|
-
_globals['
|
|
106
|
-
_globals['
|
|
107
|
-
_globals['
|
|
108
|
-
_globals['
|
|
109
|
-
_globals['
|
|
110
|
-
_globals['
|
|
111
|
-
_globals['
|
|
112
|
-
_globals['
|
|
113
|
-
_globals['
|
|
114
|
-
_globals['
|
|
115
|
-
_globals['
|
|
116
|
-
_globals['
|
|
117
|
-
_globals['
|
|
118
|
-
_globals['
|
|
99
|
+
_globals['_STRUCTPOINTS']._serialized_start=984
|
|
100
|
+
_globals['_STRUCTPOINTS']._serialized_end=1014
|
|
101
|
+
_globals['_LOGVALUE']._serialized_start=1017
|
|
102
|
+
_globals['_LOGVALUE']._serialized_end=1157
|
|
103
|
+
_globals['_LOGVALUE_ARGSENTRY']._serialized_start=1114
|
|
104
|
+
_globals['_LOGVALUE_ARGSENTRY']._serialized_end=1157
|
|
105
|
+
_globals['_STRINGPOINTS']._serialized_start=1159
|
|
106
|
+
_globals['_STRINGPOINTS']._serialized_end=1189
|
|
107
|
+
_globals['_DOUBLEPOINTS']._serialized_start=1191
|
|
108
|
+
_globals['_DOUBLEPOINTS']._serialized_end=1221
|
|
109
|
+
_globals['_INTPOINTS']._serialized_start=1223
|
|
110
|
+
_globals['_INTPOINTS']._serialized_end=1250
|
|
111
|
+
_globals['_POINTS']._serialized_start=1253
|
|
112
|
+
_globals['_POINTS']._serialized_end=1746
|
|
113
|
+
_globals['_RECORDSBATCH']._serialized_start=1749
|
|
114
|
+
_globals['_RECORDSBATCH']._serialized_end=2040
|
|
115
|
+
_globals['_RECORDSBATCH_TAGSENTRY']._serialized_start=1997
|
|
116
|
+
_globals['_RECORDSBATCH_TAGSENTRY']._serialized_end=2040
|
|
117
|
+
_globals['_WRITEBATCHESRESPONSE']._serialized_start=2042
|
|
118
|
+
_globals['_WRITEBATCHESRESPONSE']._serialized_end=2064
|
|
119
|
+
_globals['_DIRECTNOMINALCHANNELWRITERSERVICE']._serialized_start=4112
|
|
120
|
+
_globals['_DIRECTNOMINALCHANNELWRITERSERVICE']._serialized_end=4313
|
|
119
121
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -96,6 +96,12 @@ class LogPoint(_message.Message):
|
|
|
96
96
|
value: LogValue
|
|
97
97
|
def __init__(self, value: _Optional[_Union[LogValue, _Mapping]] = ...) -> None: ...
|
|
98
98
|
|
|
99
|
+
class StructPoints(_message.Message):
|
|
100
|
+
__slots__ = ("points",)
|
|
101
|
+
POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
points: _containers.RepeatedScalarFieldContainer[str]
|
|
103
|
+
def __init__(self, points: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
104
|
+
|
|
99
105
|
class LogValue(_message.Message):
|
|
100
106
|
__slots__ = ("message", "args")
|
|
101
107
|
class ArgsEntry(_message.Message):
|
|
@@ -130,20 +136,22 @@ class IntPoints(_message.Message):
|
|
|
130
136
|
def __init__(self, points: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
131
137
|
|
|
132
138
|
class Points(_message.Message):
|
|
133
|
-
__slots__ = ("timestamps", "double_points", "string_points", "log_points", "int_points", "array_points")
|
|
139
|
+
__slots__ = ("timestamps", "double_points", "string_points", "log_points", "int_points", "array_points", "struct_points")
|
|
134
140
|
TIMESTAMPS_FIELD_NUMBER: _ClassVar[int]
|
|
135
141
|
DOUBLE_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
136
142
|
STRING_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
137
143
|
LOG_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
138
144
|
INT_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
139
145
|
ARRAY_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
STRUCT_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
140
147
|
timestamps: _containers.RepeatedCompositeFieldContainer[_time_pb2.Timestamp]
|
|
141
148
|
double_points: DoublePoints
|
|
142
149
|
string_points: StringPoints
|
|
143
150
|
log_points: LogPoints
|
|
144
151
|
int_points: IntPoints
|
|
145
152
|
array_points: ArrayPoints
|
|
146
|
-
|
|
153
|
+
struct_points: StructPoints
|
|
154
|
+
def __init__(self, timestamps: _Optional[_Iterable[_Union[_time_pb2.Timestamp, _Mapping]]] = ..., double_points: _Optional[_Union[DoublePoints, _Mapping]] = ..., string_points: _Optional[_Union[StringPoints, _Mapping]] = ..., log_points: _Optional[_Union[LogPoints, _Mapping]] = ..., int_points: _Optional[_Union[IntPoints, _Mapping]] = ..., array_points: _Optional[_Union[ArrayPoints, _Mapping]] = ..., struct_points: _Optional[_Union[StructPoints, _Mapping]] = ...) -> None: ...
|
|
147
155
|
|
|
148
156
|
class RecordsBatch(_message.Message):
|
|
149
157
|
__slots__ = ("channel", "tags", "points")
|