nominal-api-protos 0.971.0__py3-none-any.whl → 0.980.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/workbook_agent_pb2.py +78 -78
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi +12 -12
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.py +137 -0
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.pyi +222 -0
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2_grpc.py +368 -0
- nominal_api_protos/nominal/data_connector/v1/opc_ua_pb2.py +117 -0
- nominal_api_protos/nominal/data_connector/v1/opc_ua_pb2.pyi +282 -0
- nominal_api_protos/nominal/data_connector/v1/opc_ua_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-0.971.0.dist-info → nominal_api_protos-0.980.0.dist-info}/METADATA +1 -1
- {nominal_api_protos-0.971.0.dist-info → nominal_api_protos-0.980.0.dist-info}/RECORD +19 -13
- {nominal_api_protos-0.971.0.dist-info → nominal_api_protos-0.980.0.dist-info}/WHEEL +0 -0
- {nominal_api_protos-0.971.0.dist-info → nominal_api_protos-0.980.0.dist-info}/top_level.txt +0 -0
|
@@ -148,7 +148,7 @@ class ProcedureSectionNode(_message.Message):
|
|
|
148
148
|
def __init__(self, id: _Optional[str] = ..., title: _Optional[str] = ..., description: _Optional[str] = ...) -> None: ...
|
|
149
149
|
|
|
150
150
|
class ProcedureStepNode(_message.Message):
|
|
151
|
-
__slots__ = ("id", "title", "content", "description", "is_required", "auto_start", "initial_auto_proceed_config", "success_condition", "completion_action_configs")
|
|
151
|
+
__slots__ = ("id", "title", "content", "description", "is_required", "auto_start", "initial_auto_proceed_config", "success_condition", "completion_action_configs", "attachments")
|
|
152
152
|
ID_FIELD_NUMBER: _ClassVar[int]
|
|
153
153
|
TITLE_FIELD_NUMBER: _ClassVar[int]
|
|
154
154
|
CONTENT_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -158,6 +158,7 @@ class ProcedureStepNode(_message.Message):
|
|
|
158
158
|
INITIAL_AUTO_PROCEED_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
159
159
|
SUCCESS_CONDITION_FIELD_NUMBER: _ClassVar[int]
|
|
160
160
|
COMPLETION_ACTION_CONFIGS_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
ATTACHMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
161
162
|
id: str
|
|
162
163
|
title: str
|
|
163
164
|
content: ProcedureStepContent
|
|
@@ -167,12 +168,13 @@ class ProcedureStepNode(_message.Message):
|
|
|
167
168
|
initial_auto_proceed_config: AutoProceedConfig
|
|
168
169
|
success_condition: SuccessCondition
|
|
169
170
|
completion_action_configs: _containers.RepeatedCompositeFieldContainer[CompletionActionConfig]
|
|
170
|
-
|
|
171
|
+
attachments: _containers.RepeatedScalarFieldContainer[str]
|
|
172
|
+
def __init__(self, id: _Optional[str] = ..., title: _Optional[str] = ..., content: _Optional[_Union[ProcedureStepContent, _Mapping]] = ..., description: _Optional[str] = ..., is_required: bool = ..., auto_start: _Optional[_Union[AutoStartConfig, _Mapping]] = ..., initial_auto_proceed_config: _Optional[_Union[AutoProceedConfig, _Mapping]] = ..., success_condition: _Optional[_Union[SuccessCondition, _Mapping]] = ..., completion_action_configs: _Optional[_Iterable[_Union[CompletionActionConfig, _Mapping]]] = ..., attachments: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
171
173
|
|
|
172
174
|
class NestedProcedureNode(_message.Message):
|
|
173
175
|
__slots__ = ("id", "title", "description", "steps", "step")
|
|
174
176
|
class NestedStepNode(_message.Message):
|
|
175
|
-
__slots__ = ("is_required", "auto_start", "initial_auto_proceed_config", "success_condition", "completion_action_configs", "form", "start_ingest", "select_or_create_asset")
|
|
177
|
+
__slots__ = ("is_required", "auto_start", "initial_auto_proceed_config", "success_condition", "completion_action_configs", "form", "start_ingest", "select_or_create_asset", "attachments")
|
|
176
178
|
IS_REQUIRED_FIELD_NUMBER: _ClassVar[int]
|
|
177
179
|
AUTO_START_FIELD_NUMBER: _ClassVar[int]
|
|
178
180
|
INITIAL_AUTO_PROCEED_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -181,6 +183,7 @@ class NestedProcedureNode(_message.Message):
|
|
|
181
183
|
FORM_FIELD_NUMBER: _ClassVar[int]
|
|
182
184
|
START_INGEST_FIELD_NUMBER: _ClassVar[int]
|
|
183
185
|
SELECT_OR_CREATE_ASSET_FIELD_NUMBER: _ClassVar[int]
|
|
186
|
+
ATTACHMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
184
187
|
is_required: bool
|
|
185
188
|
auto_start: AutoStartConfig
|
|
186
189
|
initial_auto_proceed_config: AutoProceedConfig
|
|
@@ -189,7 +192,8 @@ class NestedProcedureNode(_message.Message):
|
|
|
189
192
|
form: FormStep
|
|
190
193
|
start_ingest: StartIngestStep
|
|
191
194
|
select_or_create_asset: SelectOrCreateAssetStep
|
|
192
|
-
|
|
195
|
+
attachments: _containers.RepeatedScalarFieldContainer[str]
|
|
196
|
+
def __init__(self, is_required: bool = ..., auto_start: _Optional[_Union[AutoStartConfig, _Mapping]] = ..., initial_auto_proceed_config: _Optional[_Union[AutoProceedConfig, _Mapping]] = ..., success_condition: _Optional[_Union[SuccessCondition, _Mapping]] = ..., completion_action_configs: _Optional[_Iterable[_Union[CompletionActionConfig, _Mapping]]] = ..., form: _Optional[_Union[FormStep, _Mapping]] = ..., start_ingest: _Optional[_Union[StartIngestStep, _Mapping]] = ..., select_or_create_asset: _Optional[_Union[SelectOrCreateAssetStep, _Mapping]] = ..., attachments: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
193
197
|
ID_FIELD_NUMBER: _ClassVar[int]
|
|
194
198
|
TITLE_FIELD_NUMBER: _ClassVar[int]
|
|
195
199
|
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -28,7 +28,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
|
|
|
28
28
|
from nominal.gen.v1 import alias_pb2 as nominal_dot_gen_dot_v1_dot_alias__pb2
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n4nominal/streaming_connection_service/v1/opc_ua.proto\x12\'nominal.streaming_connection_service.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1anominal/gen/v1/alias.proto\"\xa5\x02\n\x17OpcAuthenticationConfig\x12+\n\tanonymous\x18\x01 \x01(\x0b\x32\x16.google.protobuf.EmptyH\x00\x12g\n\x11username_password\x18\x02 \x01(\x0b\x32J.nominal.streaming_connection_service.v1.OpcUsernamePasswordAuthenticationH\x00\x12P\n\x05token\x18\x03 \x01(\x0b\x32?.nominal.streaming_connection_service.v1.OpcTokenAuthenticationH\x00\x42\"\n\x19opc_authentication_config\x12\x05\xbaH\x02\x08\x01\"\xb7\x02\n\x1dOpcAuthenticationConfigSecret\x12+\n\tanonymous\x18\x01 \x01(\x0b\x32\x16.google.protobuf.EmptyH\x00\x12m\n\x11username_password\x18\x02 \x01(\x0b\x32P.nominal.streaming_connection_service.v1.OpcUsernamePasswordAuthenticationSecretH\x00\x12V\n\x05token\x18\x03 \x01(\x0b\x32\x45.nominal.streaming_connection_service.v1.OpcTokenAuthenticationSecretH\x00\x42\"\n\x19opc_authentication_config\x12\x05\xbaH\x02\x08\x01\"G\n!OpcUsernamePasswordAuthentication\x12\x10\n\x08username\x18\x01 \x01(\t\x12\x10\n\x08password\x18\x02 \x01(\t\"u\n\'OpcUsernamePasswordAuthenticationSecret\x12\x10\n\x08username\x18\x01 \x01(\t\x12\x38\n\x08password\x18\x02 \x01(\tB&\x9a\xb2\x1a\"\n io.nominal.secrets.api.SecretRid\"\'\n\x16OpcTokenAuthentication\x12\r\n\x05token\x18\x01 \x01(\t\"U\n\x1cOpcTokenAuthenticationSecret\x12\x35\n\x05token\x18\x01 \x01(\tB&\x9a\xb2\x1a\"\n io.nominal.secrets.api.SecretRid\"X\n\x12OpcIdentifierValue\x12\x11\n\x07numeric\x18\x01 \x01(\x05H\x00\x12\x10\n\x06string\x18\x02 \x01(\tH\x00\x42\x1d\n\x14opc_identifier_value\x12\x05\xbaH\x02\x08\x01\"\x80\x01\n\x07OpcNode\x12\x16\n\tnamespace\x18\x01 \x01(\rH\x00\x88\x01\x01\x12O\n\nidentifier\x18\x02 \x01(\x0b\x32;.nominal.streaming_connection_service.v1.OpcIdentifierValueB\x0c\n\n_namespace\"\x88\x05\n\x1cOpcUaChannelNamingConvention\x12\x64\n\x07node_id\x18\x01 \x01(\x0b\x32Q.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaNodeIdH\x00\x12l\n\x0b\x62rowse_name\x18\x02 \x01(\x0b\x32U.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaBrowseNameH\x00\x12n\n\x0c\x64isplay_name\x18\x03 \x01(\x0b\x32V.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaDisplayNameH\x00\x12h\n\tfull_path\x18\x04 \x01(\x0b\x32S.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaFullPathH\x00\x1a\r\n\x0bOpcUaNodeId\x1a\x11\n\x0fOpcUaBrowseName\x1a\x12\n\x10OpcUaDisplayName\x1ah\n\rOpcUaFullPath\x12\x44\n\nroot_nodes\x18\x01 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNode\x12\x11\n\tdelimiter\x18\x02 \x01(\tB\x1a\n\x11naming_convention\x12\x05\xbaH\x02\x08\x01\"\xdb\x01\n\x16OpcUaConnectionDetails\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12S\n\x0fsecurity_policy\x18\x02 \x01(\x0e\x32:.nominal.streaming_connection_service.v1.OpcSecurityPolicy\x12_\n\x15\x61uthentication_config\x18\x03 \x01(\x0b\x32@.nominal.streaming_connection_service.v1.OpcAuthenticationConfig\"\xe7\x01\n\x1cOpcUaConnectionDetailsSecret\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12S\n\x0fsecurity_policy\x18\x02 \x01(\x0e\x32:.nominal.streaming_connection_service.v1.OpcSecurityPolicy\x12\x65\n\x15\x61uthentication_config\x18\x03 \x01(\x0b\x32\x46.nominal.streaming_connection_service.v1.OpcAuthenticationConfigSecret\"\x98\x02\n\x14OpcUaTraversalConfig\x12N\n\nroot_nodes\x18\x01 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNodeB\x08\xbaH\x05\x92\x01\x02\x08\x01\x12\x44\n\nskip_nodes\x18\x02 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNode\x12j\n\x1areference_exploration_type\x18\x03 \x01(\x0e\x32\x46.nominal.streaming_connection_service.v1.OpcUaReferenceExplorationType\"h\n\x1bOpcUaDirectNodeSubscription\x12I\n\x05nodes\x18\x01 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNodeB\x08\xbaH\x05\x92\x01\x02\x08\x01\"\x91\x02\n\x1aOpcUaNodeExplorationConfig\x12`\n\x17opc_ua_traversal_config\x18\x01 \x01(\x0b\x32=.nominal.streaming_connection_service.v1.OpcUaTraversalConfigH\x00\x12o\n\x1fopc_ua_direct_node_subscription\x18\x02 \x01(\x0b\x32\x44.nominal.streaming_connection_service.v1.OpcUaDirectNodeSubscriptionH\x00\x42 \n\x1eopc_ua_node_exploration_config\"\xd8\x03\n\x16OpcUaTimestampHandling\x12\x61\n\x06server\x18\x01 \x01(\x0b\x32O.nominal.streaming_connection_service.v1.OpcUaTimestampHandling.OpcUaServerTimeH\x00\x12\x61\n\x06source\x18\x02 \x01(\x0b\x32O.nominal.streaming_connection_service.v1.OpcUaTimestampHandling.OpcUaSourceTimeH\x00\x12j\n\x08relative\x18\x03 \x01(\x0b\x32V.nominal.streaming_connection_service.v1.OpcUaTimestampHandling.OpcUaRelativeTimestampH\x00\x1a\x11\n\x0fOpcUaServerTime\x1a\x11\n\x0fOpcUaSourceTime\x1aT\n\x16OpcUaRelativeTimestamp\x12/\n\x06offset\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x42\t\n\x07_offsetB\x10\n\x0etimestamp_type\"\xd4\x01\n\x15OpcUaDataChangeFilter\x12P\n\x07trigger\x18\x01 \x01(\x0e\x32?.nominal.streaming_connection_service.v1.OpcUaDataChangeTrigger\x12Q\n\rdeadband_type\x18\x02 \x01(\x0e\x32:.nominal.streaming_connection_service.v1.OpcUaDeadbandType\x12\x16\n\x0e\x64\x65\x61\x64\x62\x61nd_value\x18\x03 \x01(\x01\"\x9e\x05\n\x13OpcUaScrapingConfig\x12\x64\n\x17node_exploration_config\x18\x01 \x01(\x0b\x32\x43.nominal.streaming_connection_service.v1.OpcUaNodeExplorationConfig\x12\x16\n\x0eunit_node_name\x18\x02 \x01(\t\x12h\n\x19\x63hannel_naming_convention\x18\x03 \x01(\x0b\x32\x45.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention\x12\x15\n\roverride_host\x18\x04 \x01(\x08\x12i\n\x1aunknown_data_type_handling\x18\x05 \x01(\x0e\x32\x45.nominal.streaming_connection_service.v1.OpcUaUnknownDataTypeHandling\x12\x64\n\x17\x66\x61iled_monitor_handling\x18\x06 \x01(\x0e\x32\x43.nominal.streaming_connection_service.v1.OpcUaFailedMonitorHandling\x12[\n\x12timestamp_handling\x18\x07 \x01(\x0b\x32?.nominal.streaming_connection_service.v1.OpcUaTimestampHandling\x12Z\n\x12\x64\x61ta_change_filter\x18\x08 \x01(\x0b\x32>.nominal.streaming_connection_service.v1.OpcUaDataChangeFilter*
|
|
31
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n4nominal/streaming_connection_service/v1/opc_ua.proto\x12\'nominal.streaming_connection_service.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1anominal/gen/v1/alias.proto\"\xa5\x02\n\x17OpcAuthenticationConfig\x12+\n\tanonymous\x18\x01 \x01(\x0b\x32\x16.google.protobuf.EmptyH\x00\x12g\n\x11username_password\x18\x02 \x01(\x0b\x32J.nominal.streaming_connection_service.v1.OpcUsernamePasswordAuthenticationH\x00\x12P\n\x05token\x18\x03 \x01(\x0b\x32?.nominal.streaming_connection_service.v1.OpcTokenAuthenticationH\x00\x42\"\n\x19opc_authentication_config\x12\x05\xbaH\x02\x08\x01\"\xb7\x02\n\x1dOpcAuthenticationConfigSecret\x12+\n\tanonymous\x18\x01 \x01(\x0b\x32\x16.google.protobuf.EmptyH\x00\x12m\n\x11username_password\x18\x02 \x01(\x0b\x32P.nominal.streaming_connection_service.v1.OpcUsernamePasswordAuthenticationSecretH\x00\x12V\n\x05token\x18\x03 \x01(\x0b\x32\x45.nominal.streaming_connection_service.v1.OpcTokenAuthenticationSecretH\x00\x42\"\n\x19opc_authentication_config\x12\x05\xbaH\x02\x08\x01\"G\n!OpcUsernamePasswordAuthentication\x12\x10\n\x08username\x18\x01 \x01(\t\x12\x10\n\x08password\x18\x02 \x01(\t\"u\n\'OpcUsernamePasswordAuthenticationSecret\x12\x10\n\x08username\x18\x01 \x01(\t\x12\x38\n\x08password\x18\x02 \x01(\tB&\x9a\xb2\x1a\"\n io.nominal.secrets.api.SecretRid\"\'\n\x16OpcTokenAuthentication\x12\r\n\x05token\x18\x01 \x01(\t\"U\n\x1cOpcTokenAuthenticationSecret\x12\x35\n\x05token\x18\x01 \x01(\tB&\x9a\xb2\x1a\"\n io.nominal.secrets.api.SecretRid\"X\n\x12OpcIdentifierValue\x12\x11\n\x07numeric\x18\x01 \x01(\x05H\x00\x12\x10\n\x06string\x18\x02 \x01(\tH\x00\x42\x1d\n\x14opc_identifier_value\x12\x05\xbaH\x02\x08\x01\"\x80\x01\n\x07OpcNode\x12\x16\n\tnamespace\x18\x01 \x01(\rH\x00\x88\x01\x01\x12O\n\nidentifier\x18\x02 \x01(\x0b\x32;.nominal.streaming_connection_service.v1.OpcIdentifierValueB\x0c\n\n_namespace\"\x88\x05\n\x1cOpcUaChannelNamingConvention\x12\x64\n\x07node_id\x18\x01 \x01(\x0b\x32Q.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaNodeIdH\x00\x12l\n\x0b\x62rowse_name\x18\x02 \x01(\x0b\x32U.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaBrowseNameH\x00\x12n\n\x0c\x64isplay_name\x18\x03 \x01(\x0b\x32V.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaDisplayNameH\x00\x12h\n\tfull_path\x18\x04 \x01(\x0b\x32S.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention.OpcUaFullPathH\x00\x1a\r\n\x0bOpcUaNodeId\x1a\x11\n\x0fOpcUaBrowseName\x1a\x12\n\x10OpcUaDisplayName\x1ah\n\rOpcUaFullPath\x12\x44\n\nroot_nodes\x18\x01 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNode\x12\x11\n\tdelimiter\x18\x02 \x01(\tB\x1a\n\x11naming_convention\x12\x05\xbaH\x02\x08\x01\"\xdb\x01\n\x16OpcUaConnectionDetails\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12S\n\x0fsecurity_policy\x18\x02 \x01(\x0e\x32:.nominal.streaming_connection_service.v1.OpcSecurityPolicy\x12_\n\x15\x61uthentication_config\x18\x03 \x01(\x0b\x32@.nominal.streaming_connection_service.v1.OpcAuthenticationConfig\"\xe7\x01\n\x1cOpcUaConnectionDetailsSecret\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12S\n\x0fsecurity_policy\x18\x02 \x01(\x0e\x32:.nominal.streaming_connection_service.v1.OpcSecurityPolicy\x12\x65\n\x15\x61uthentication_config\x18\x03 \x01(\x0b\x32\x46.nominal.streaming_connection_service.v1.OpcAuthenticationConfigSecret\"\x98\x02\n\x14OpcUaTraversalConfig\x12N\n\nroot_nodes\x18\x01 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNodeB\x08\xbaH\x05\x92\x01\x02\x08\x01\x12\x44\n\nskip_nodes\x18\x02 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNode\x12j\n\x1areference_exploration_type\x18\x03 \x01(\x0e\x32\x46.nominal.streaming_connection_service.v1.OpcUaReferenceExplorationType\"h\n\x1bOpcUaDirectNodeSubscription\x12I\n\x05nodes\x18\x01 \x03(\x0b\x32\x30.nominal.streaming_connection_service.v1.OpcNodeB\x08\xbaH\x05\x92\x01\x02\x08\x01\"\x91\x02\n\x1aOpcUaNodeExplorationConfig\x12`\n\x17opc_ua_traversal_config\x18\x01 \x01(\x0b\x32=.nominal.streaming_connection_service.v1.OpcUaTraversalConfigH\x00\x12o\n\x1fopc_ua_direct_node_subscription\x18\x02 \x01(\x0b\x32\x44.nominal.streaming_connection_service.v1.OpcUaDirectNodeSubscriptionH\x00\x42 \n\x1eopc_ua_node_exploration_config\"\xd8\x03\n\x16OpcUaTimestampHandling\x12\x61\n\x06server\x18\x01 \x01(\x0b\x32O.nominal.streaming_connection_service.v1.OpcUaTimestampHandling.OpcUaServerTimeH\x00\x12\x61\n\x06source\x18\x02 \x01(\x0b\x32O.nominal.streaming_connection_service.v1.OpcUaTimestampHandling.OpcUaSourceTimeH\x00\x12j\n\x08relative\x18\x03 \x01(\x0b\x32V.nominal.streaming_connection_service.v1.OpcUaTimestampHandling.OpcUaRelativeTimestampH\x00\x1a\x11\n\x0fOpcUaServerTime\x1a\x11\n\x0fOpcUaSourceTime\x1aT\n\x16OpcUaRelativeTimestamp\x12/\n\x06offset\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x42\t\n\x07_offsetB\x10\n\x0etimestamp_type\"\xd4\x01\n\x15OpcUaDataChangeFilter\x12P\n\x07trigger\x18\x01 \x01(\x0e\x32?.nominal.streaming_connection_service.v1.OpcUaDataChangeTrigger\x12Q\n\rdeadband_type\x18\x02 \x01(\x0e\x32:.nominal.streaming_connection_service.v1.OpcUaDeadbandType\x12\x16\n\x0e\x64\x65\x61\x64\x62\x61nd_value\x18\x03 \x01(\x01\"\x9e\x05\n\x13OpcUaScrapingConfig\x12\x64\n\x17node_exploration_config\x18\x01 \x01(\x0b\x32\x43.nominal.streaming_connection_service.v1.OpcUaNodeExplorationConfig\x12\x16\n\x0eunit_node_name\x18\x02 \x01(\t\x12h\n\x19\x63hannel_naming_convention\x18\x03 \x01(\x0b\x32\x45.nominal.streaming_connection_service.v1.OpcUaChannelNamingConvention\x12\x15\n\roverride_host\x18\x04 \x01(\x08\x12i\n\x1aunknown_data_type_handling\x18\x05 \x01(\x0e\x32\x45.nominal.streaming_connection_service.v1.OpcUaUnknownDataTypeHandling\x12\x64\n\x17\x66\x61iled_monitor_handling\x18\x06 \x01(\x0e\x32\x43.nominal.streaming_connection_service.v1.OpcUaFailedMonitorHandling\x12[\n\x12timestamp_handling\x18\x07 \x01(\x0b\x32?.nominal.streaming_connection_service.v1.OpcUaTimestampHandling\x12Z\n\x12\x64\x61ta_change_filter\x18\x08 \x01(\x0b\x32>.nominal.streaming_connection_service.v1.OpcUaDataChangeFilter*B\n\x11OpcSecurityPolicy\x12#\n\x1fOPC_SECURITY_POLICY_UNSPECIFIED\x10\x00\x12\x08\n\x04NONE\x10\x01*\xc2\x01\n\x1dOpcUaReferenceExplorationType\x12\x31\n-OPC_UA_REFERENCE_EXPLORATION_TYPE_UNSPECIFIED\x10\x00\x12/\n+OPC_UA_REFERENCE_EXPLORATION_TYPE_ORGANIZES\x10\x01\x12=\n9OPC_UA_REFERENCE_EXPLORATION_TYPE_HIERARCHICAL_REFERENCES\x10\x02*\xec\x01\n\x1cOpcUaUnknownDataTypeHandling\x12\x31\n-OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_UNSPECIFIED\x10\x00\x12+\n\'OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_ERROR\x10\x01\x12\x35\n1OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_TREAT_AS_DOUBLE\x10\x02\x12\x35\n1OPC_UA_UNKNOWN_DATA_TYPE_HANDLING_TREAT_AS_STRING\x10\x03*\xa1\x01\n\x1aOpcUaFailedMonitorHandling\x12.\n*OPC_UA_FAILED_MONITOR_HANDLING_UNSPECIFIED\x10\x00\x12(\n$OPC_UA_FAILED_MONITOR_HANDLING_ERROR\x10\x01\x12)\n%OPC_UA_FAILED_MONITOR_HANDLING_IGNORE\x10\x02*\xd4\x01\n\x16OpcUaDataChangeTrigger\x12*\n&OPC_UA_DATA_CHANGE_TRIGGER_UNSPECIFIED\x10\x00\x12*\n&OPC_UA_DATA_CHANGE_TRIGGER_STATUS_ONLY\x10\x01\x12+\n\'OPC_UA_DATA_CHANGE_TRIGGER_STATUS_VALUE\x10\x02\x12\x35\n1OPC_UA_DATA_CHANGE_TRIGGER_STATUS_VALUE_TIMESTAMP\x10\x03*\x9d\x01\n\x11OpcUaDeadbandType\x12$\n OPC_UA_DEADBAND_TYPE_UNSPECIFIED\x10\x00\x12\x1d\n\x19OPC_UA_DEADBAND_TYPE_NONE\x10\x01\x12!\n\x1dOPC_UA_DEADBAND_TYPE_ABSOLUTE\x10\x02\x12 \n\x1cOPC_UA_DEADBAND_TYPE_PERCENT\x10\x03\x42.\n*io.nominal.streaming_connection_service.v1P\x01\x62\x06proto3')
|
|
32
32
|
|
|
33
33
|
_globals = globals()
|
|
34
34
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -53,17 +53,17 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
53
53
|
_globals['_OPCUADIRECTNODESUBSCRIPTION'].fields_by_name['nodes']._loaded_options = None
|
|
54
54
|
_globals['_OPCUADIRECTNODESUBSCRIPTION'].fields_by_name['nodes']._serialized_options = b'\272H\005\222\001\002\010\001'
|
|
55
55
|
_globals['_OPCSECURITYPOLICY']._serialized_start=4502
|
|
56
|
-
_globals['_OPCSECURITYPOLICY']._serialized_end=
|
|
57
|
-
_globals['_OPCUAREFERENCEEXPLORATIONTYPE']._serialized_start=
|
|
58
|
-
_globals['_OPCUAREFERENCEEXPLORATIONTYPE']._serialized_end=
|
|
59
|
-
_globals['_OPCUAUNKNOWNDATATYPEHANDLING']._serialized_start=
|
|
60
|
-
_globals['_OPCUAUNKNOWNDATATYPEHANDLING']._serialized_end=
|
|
61
|
-
_globals['_OPCUAFAILEDMONITORHANDLING']._serialized_start=
|
|
62
|
-
_globals['_OPCUAFAILEDMONITORHANDLING']._serialized_end=
|
|
63
|
-
_globals['_OPCUADATACHANGETRIGGER']._serialized_start=
|
|
64
|
-
_globals['_OPCUADATACHANGETRIGGER']._serialized_end=
|
|
65
|
-
_globals['_OPCUADEADBANDTYPE']._serialized_start=
|
|
66
|
-
_globals['_OPCUADEADBANDTYPE']._serialized_end=
|
|
56
|
+
_globals['_OPCSECURITYPOLICY']._serialized_end=4568
|
|
57
|
+
_globals['_OPCUAREFERENCEEXPLORATIONTYPE']._serialized_start=4571
|
|
58
|
+
_globals['_OPCUAREFERENCEEXPLORATIONTYPE']._serialized_end=4765
|
|
59
|
+
_globals['_OPCUAUNKNOWNDATATYPEHANDLING']._serialized_start=4768
|
|
60
|
+
_globals['_OPCUAUNKNOWNDATATYPEHANDLING']._serialized_end=5004
|
|
61
|
+
_globals['_OPCUAFAILEDMONITORHANDLING']._serialized_start=5007
|
|
62
|
+
_globals['_OPCUAFAILEDMONITORHANDLING']._serialized_end=5168
|
|
63
|
+
_globals['_OPCUADATACHANGETRIGGER']._serialized_start=5171
|
|
64
|
+
_globals['_OPCUADATACHANGETRIGGER']._serialized_end=5383
|
|
65
|
+
_globals['_OPCUADEADBANDTYPE']._serialized_start=5386
|
|
66
|
+
_globals['_OPCUADEADBANDTYPE']._serialized_end=5543
|
|
67
67
|
_globals['_OPCAUTHENTICATIONCONFIG']._serialized_start=217
|
|
68
68
|
_globals['_OPCAUTHENTICATIONCONFIG']._serialized_end=510
|
|
69
69
|
_globals['_OPCAUTHENTICATIONCONFIGSECRET']._serialized_start=513
|
|
@@ -17,7 +17,6 @@ class OpcSecurityPolicy(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
|
17
17
|
__slots__ = ()
|
|
18
18
|
OPC_SECURITY_POLICY_UNSPECIFIED: _ClassVar[OpcSecurityPolicy]
|
|
19
19
|
NONE: _ClassVar[OpcSecurityPolicy]
|
|
20
|
-
BASIC_256_SHA_256: _ClassVar[OpcSecurityPolicy]
|
|
21
20
|
|
|
22
21
|
class OpcUaReferenceExplorationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
23
22
|
__slots__ = ()
|
|
@@ -53,7 +52,6 @@ class OpcUaDeadbandType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
|
53
52
|
OPC_UA_DEADBAND_TYPE_PERCENT: _ClassVar[OpcUaDeadbandType]
|
|
54
53
|
OPC_SECURITY_POLICY_UNSPECIFIED: OpcSecurityPolicy
|
|
55
54
|
NONE: OpcSecurityPolicy
|
|
56
|
-
BASIC_256_SHA_256: OpcSecurityPolicy
|
|
57
55
|
OPC_UA_REFERENCE_EXPLORATION_TYPE_UNSPECIFIED: OpcUaReferenceExplorationType
|
|
58
56
|
OPC_UA_REFERENCE_EXPLORATION_TYPE_ORGANIZES: OpcUaReferenceExplorationType
|
|
59
57
|
OPC_UA_REFERENCE_EXPLORATION_TYPE_HIERARCHICAL_REFERENCES: OpcUaReferenceExplorationType
|
|
@@ -11,8 +11,8 @@ nominal_api_protos/nominal/ai/v1/ai_features_pb2_grpc.py,sha256=Cdwt8uuXCTLRAF7c
|
|
|
11
11
|
nominal_api_protos/nominal/ai/v1/knowledge_base_pb2.py,sha256=Dsf63Ytqk_r8VVNO11v2IOn83quzbHrq8UkQXPNxYCQ,4828
|
|
12
12
|
nominal_api_protos/nominal/ai/v1/knowledge_base_pb2.pyi,sha256=Z_KxZu-If8Psuae4fPCiTZdKB3FG12QiQVs02srMtME,4596
|
|
13
13
|
nominal_api_protos/nominal/ai/v1/knowledge_base_pb2_grpc.py,sha256=T-ut4KyPTUR5GY2RXMGhGy4vzAdBDIFLLk7K4bH0Wcw,11888
|
|
14
|
-
nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.py,sha256=
|
|
15
|
-
nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi,sha256=
|
|
14
|
+
nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.py,sha256=TTMR2YVA-ttqsgorwZxeShGG34mwR9mFHKOQagD_Ipk,13220
|
|
15
|
+
nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi,sha256=0liBPWUKKATGcZ_X3IMR9KY6mynkUcFHqbvS_qjHpdY,15716
|
|
16
16
|
nominal_api_protos/nominal/ai/v1/workbook_agent_pb2_grpc.py,sha256=ZsKJg-eZjYjxpQs8qeixzvOH4MgT22Q7YTTrJuo8FVM,14316
|
|
17
17
|
nominal_api_protos/nominal/application/v1/application_pb2.py,sha256=Kgvx0zgiijr64FJV8tgzq2NijB3oGlwA_w4kUrlIV_Q,2433
|
|
18
18
|
nominal_api_protos/nominal/application/v1/application_pb2.pyi,sha256=c6e_qS1PmxPBgzWpDOq1VdU89W2AskdrBqWghH5hKmo,561
|
|
@@ -50,26 +50,32 @@ nominal_api_protos/nominal/connections/v1/external_api_connections_pb2_grpc.py,s
|
|
|
50
50
|
nominal_api_protos/nominal/conversations/v1/conversations_pb2.py,sha256=-wldWCj1VbcjCCOYVEhPQvTBGAzauMYzQUGfveGA-qo,8008
|
|
51
51
|
nominal_api_protos/nominal/conversations/v1/conversations_pb2.pyi,sha256=nojuB7cNopoecx0R4AoOmPRirqvoA7CgxkhlobmFgUM,8064
|
|
52
52
|
nominal_api_protos/nominal/conversations/v1/conversations_pb2_grpc.py,sha256=lVOoDZFzXV8i64oyILZ3ygiKRM_AguQxTsgPp-m3NeY,12421
|
|
53
|
-
nominal_api_protos/nominal/
|
|
54
|
-
nominal_api_protos/nominal/
|
|
53
|
+
nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.py,sha256=O8j6b9NpX2Ojx61o0cikUAJ-lNnCuvgauc6FC8dlasg,17524
|
|
54
|
+
nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.pyi,sha256=_xkwaa3R4ZRTE56pFtMnrYzPdBc2kRIyFeCUQjrL5Ic,10728
|
|
55
|
+
nominal_api_protos/nominal/data_connector/v1/data_connector_pb2_grpc.py,sha256=Eetau4RhyaoKeY7UBQG3fQA8EbBeQFOuTIdzrauSeEw,16684
|
|
56
|
+
nominal_api_protos/nominal/data_connector/v1/opc_ua_pb2.py,sha256=Oxv6SRdfmFoTq4Nd-SGUuha9AB4NgxNEQGN2QA3hENM,16129
|
|
57
|
+
nominal_api_protos/nominal/data_connector/v1/opc_ua_pb2.pyi,sha256=Fxt9lfwTxSXxuu8_WBLvUGWpU2Lpha57PfVcxaLLVWk,16982
|
|
58
|
+
nominal_api_protos/nominal/data_connector/v1/opc_ua_pb2_grpc.py,sha256=Zj7R_VsXrsGly0u-n48JsBcUMbmuLNkTnArTUWJylPk,912
|
|
59
|
+
nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.py,sha256=etAoHJpVsozcGIbwVgxkd5SoC-jdM-ECU3zJ8fgm6k8,16667
|
|
60
|
+
nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.pyi,sha256=tvBHftSX8d5nQQomf5UKwNAyolsqsgGRGh--r7YgTgk,9837
|
|
55
61
|
nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2_grpc.py,sha256=itsUaYfQ_TWNpUfCdq4wPH_wNvx-ofjSQqu6B2L9UYM,4805
|
|
56
62
|
nominal_api_protos/nominal/edge/v1/edge_sync_pb2.py,sha256=C2uxi17fN99ukwEAFl4LveGwmne51jWNVjBxtx6Psjo,9793
|
|
57
63
|
nominal_api_protos/nominal/edge/v1/edge_sync_pb2.pyi,sha256=Ju1JIgNjRGc-8GriwIoSF2PwkZ_M7VnXqgfSjPfZ8i8,3972
|
|
58
64
|
nominal_api_protos/nominal/edge/v1/edge_sync_pb2_grpc.py,sha256=ko6MvzERfBKZ_LuwuBxtadhFjghycZlFJVzfnvNel6o,9687
|
|
59
|
-
nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.py,sha256=
|
|
65
|
+
nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.py,sha256=nX82aKLAcfXC5pO35-Pn3A45WJaEHb_elqP_f2o0anM,67012
|
|
60
66
|
nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.pyi,sha256=GcpThy8mHGfWGRyvrdQch-bVgXzvWcVBCGGDWWbrb6Q,46495
|
|
61
67
|
nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2_grpc.py,sha256=qFCHv7FZ8ZfkaHa59XSbQU-RoDAu6WLzuwVnrdPp7Zg,21211
|
|
62
68
|
nominal_api_protos/nominal/procedures/v1/id_format_pb2.py,sha256=I1W4kVKBMNfJlk3ccwPvufKYsJsXOdMQX4qIs0KWJq8,3527
|
|
63
69
|
nominal_api_protos/nominal/procedures/v1/id_format_pb2.pyi,sha256=RqEhEeOKYbxtUWoCgJFervQZlUdB8Js_ryv3bNWQKL8,498
|
|
64
70
|
nominal_api_protos/nominal/procedures/v1/id_format_pb2_grpc.py,sha256=B4v8Xrlv5aGK-LjkwQnpdH59XpS1jcjq9dgrhmsCp6M,911
|
|
65
|
-
nominal_api_protos/nominal/procedures/v1/procedures_pb2.py,sha256=
|
|
66
|
-
nominal_api_protos/nominal/procedures/v1/procedures_pb2.pyi,sha256=
|
|
71
|
+
nominal_api_protos/nominal/procedures/v1/procedures_pb2.py,sha256=EaTOr2qnN8oPRiKef9uK7cldBGgkrKAXjOzI1bNJ8qI,85044
|
|
72
|
+
nominal_api_protos/nominal/procedures/v1/procedures_pb2.pyi,sha256=G54jeD7oM-9IhLjiUmEd7JErpX_T7aKidoCarwhK21Q,57704
|
|
67
73
|
nominal_api_protos/nominal/procedures/v1/procedures_pb2_grpc.py,sha256=r6kxr3ny-wJVnnukeIDuuT-Z6bqhFqwVPvaiAf_bvFg,26670
|
|
68
74
|
nominal_api_protos/nominal/scout/elements/v1/elements_pb2.py,sha256=-T2RQp6NlnfaWR930ExhoDusEsM0dpuBVTfPTEWzAJ8,2346
|
|
69
75
|
nominal_api_protos/nominal/scout/elements/v1/elements_pb2.pyi,sha256=VXIH7egTSO_rJl1uq25zijhpVGVkDEJ83H10SlwLdxg,809
|
|
70
76
|
nominal_api_protos/nominal/scout/elements/v1/elements_pb2_grpc.py,sha256=Qd2NPLmbKVnWAeMnEWUlsrVjNNY7meDAeWmPiOc622I,914
|
|
71
|
-
nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.py,sha256=
|
|
72
|
-
nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.pyi,sha256=
|
|
77
|
+
nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.py,sha256=DXlJ32ACAb7yAhQpUQbYwJ-21Bltm-3W-rddDAGttRU,14967
|
|
78
|
+
nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.pyi,sha256=S6Xnsc5x9st7n_64MEu5iNmGlV5iskDAapbkOTsHDnc,14963
|
|
73
79
|
nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2_grpc.py,sha256=kEtwET5GFaXInUD_hzdweWc7SiedyRi3mkBBhdqVzOQ,926
|
|
74
80
|
nominal_api_protos/nominal/streaming_connection_service/v1/streaming_connection_service_pb2.py,sha256=Ao6CmQQ_G6PRTYcRTd1Q3NK8jmt6i2Z0aMXlahcOn_0,16348
|
|
75
81
|
nominal_api_protos/nominal/streaming_connection_service/v1/streaming_connection_service_pb2.pyi,sha256=bXupNLtz5BPt8xCJjdM49CUspbriLrzuNImE-pLv-Vc,7996
|
|
@@ -92,7 +98,7 @@ nominal_api_protos/nominal/versioning/v1/versioning_pb2_grpc.py,sha256=X6uaQTGIZ
|
|
|
92
98
|
nominal_api_protos/nominal/workspaces/v1/workspaces_pb2.py,sha256=If3gH8W_yuTpFrBIoctbaMFgIPvkPE0cuZC7HpqjPlM,14331
|
|
93
99
|
nominal_api_protos/nominal/workspaces/v1/workspaces_pb2.pyi,sha256=qsnUMQrUtaA0z0N1MoQbfjuFt-Qf_rKjn1YmEV0WjmU,6917
|
|
94
100
|
nominal_api_protos/nominal/workspaces/v1/workspaces_pb2_grpc.py,sha256=sKvcCPuF3Tn_APr_QTJD06cpo4KRC8aVxc-gCqQnTsc,10541
|
|
95
|
-
nominal_api_protos-0.
|
|
96
|
-
nominal_api_protos-0.
|
|
97
|
-
nominal_api_protos-0.
|
|
98
|
-
nominal_api_protos-0.
|
|
101
|
+
nominal_api_protos-0.980.0.dist-info/METADATA,sha256=-QTWggo7OyFS7Q_Hqq3AKre6QOasgfrJCnLqANoKIRQ,233
|
|
102
|
+
nominal_api_protos-0.980.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
103
|
+
nominal_api_protos-0.980.0.dist-info/top_level.txt,sha256=LGL0l0Ex9617MHzOemB7GgioLYe-livRUUrqIkV0hpQ,19
|
|
104
|
+
nominal_api_protos-0.980.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|