nominal-api-protos 0.967.1__py3-none-any.whl → 0.985.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.

Potentially problematic release.


This version of nominal-api-protos might be problematic. Click here for more details.

Files changed (29) hide show
  1. nominal_api_protos/nominal/ai/v1/ai_agent_pb2.py +121 -0
  2. nominal_api_protos/nominal/ai/v1/ai_agent_pb2.pyi +345 -0
  3. nominal_api_protos/nominal/ai/v1/ai_agent_pb2_grpc.py +321 -0
  4. nominal_api_protos/nominal/ai/v1/ai_features_pb2.py +40 -0
  5. nominal_api_protos/nominal/ai/v1/ai_features_pb2.pyi +15 -0
  6. nominal_api_protos/nominal/ai/v1/ai_features_pb2_grpc.py +101 -0
  7. nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.py +8 -57
  8. nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi +15 -214
  9. nominal_api_protos/nominal/ai/v1/workbook_agent_pb2_grpc.py +230 -6
  10. nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.py +137 -0
  11. nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.pyi +222 -0
  12. nominal_api_protos/nominal/data_connector/v1/data_connector_pb2_grpc.py +368 -0
  13. nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2.py +117 -0
  14. nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2.pyi +282 -0
  15. nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2_grpc.py +24 -0
  16. nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.py +25 -23
  17. nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.pyi +10 -2
  18. nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.py +92 -82
  19. nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.pyi +34 -4
  20. nominal_api_protos/nominal/procedures/v1/procedures_pb2.py +228 -208
  21. nominal_api_protos/nominal/procedures/v1/procedures_pb2.pyi +54 -8
  22. nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.py +12 -12
  23. nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.pyi +0 -2
  24. nominal_api_protos/nominal_write_pb2.py +24 -14
  25. nominal_api_protos/nominal_write_pb2.pyi +40 -2
  26. {nominal_api_protos-0.967.1.dist-info → nominal_api_protos-0.985.0.dist-info}/METADATA +3 -1
  27. {nominal_api_protos-0.967.1.dist-info → nominal_api_protos-0.985.0.dist-info}/RECORD +29 -17
  28. {nominal_api_protos-0.967.1.dist-info → nominal_api_protos-0.985.0.dist-info}/WHEEL +0 -0
  29. {nominal_api_protos-0.967.1.dist-info → nominal_api_protos-0.985.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
- 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]]] = ...) -> None: ...
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
- 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]] = ...) -> None: ...
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]
@@ -366,10 +370,12 @@ class StartIngestStep(_message.Message):
366
370
  class IngestTypeConfig(_message.Message):
367
371
  __slots__ = ("containerized_extractor",)
368
372
  class ContainerizedExtractorIngestConfig(_message.Message):
369
- __slots__ = ("rid",)
373
+ __slots__ = ("rid", "file_input_bindings")
370
374
  RID_FIELD_NUMBER: _ClassVar[int]
375
+ FILE_INPUT_BINDINGS_FIELD_NUMBER: _ClassVar[int]
371
376
  rid: str
372
- def __init__(self, rid: _Optional[str] = ...) -> None: ...
377
+ file_input_bindings: _containers.RepeatedCompositeFieldContainer[FileInputBinding]
378
+ def __init__(self, rid: _Optional[str] = ..., file_input_bindings: _Optional[_Iterable[_Union[FileInputBinding, _Mapping]]] = ...) -> None: ...
373
379
  CONTAINERIZED_EXTRACTOR_FIELD_NUMBER: _ClassVar[int]
374
380
  containerized_extractor: StartIngestStep.IngestTypeConfig.ContainerizedExtractorIngestConfig
375
381
  def __init__(self, containerized_extractor: _Optional[_Union[StartIngestStep.IngestTypeConfig.ContainerizedExtractorIngestConfig, _Mapping]] = ...) -> None: ...
@@ -383,6 +389,20 @@ class StartIngestStep(_message.Message):
383
389
  ingest_job_output_field_id: str
384
390
  def __init__(self, asset: _Optional[_Union[AssetReference, _Mapping]] = ..., ref_name: _Optional[_Union[StringReference, _Mapping]] = ..., ingest_type_config: _Optional[_Union[StartIngestStep.IngestTypeConfig, _Mapping]] = ..., ingest_job_output_field_id: _Optional[str] = ...) -> None: ...
385
391
 
392
+ class FileInputBinding(_message.Message):
393
+ __slots__ = ("environment_variable", "file_reference")
394
+ ENVIRONMENT_VARIABLE_FIELD_NUMBER: _ClassVar[int]
395
+ FILE_REFERENCE_FIELD_NUMBER: _ClassVar[int]
396
+ environment_variable: str
397
+ file_reference: FileReference
398
+ def __init__(self, environment_variable: _Optional[str] = ..., file_reference: _Optional[_Union[FileReference, _Mapping]] = ...) -> None: ...
399
+
400
+ class FileReference(_message.Message):
401
+ __slots__ = ("field_id",)
402
+ FIELD_ID_FIELD_NUMBER: _ClassVar[int]
403
+ field_id: str
404
+ def __init__(self, field_id: _Optional[str] = ...) -> None: ...
405
+
386
406
  class SelectOrCreateAssetStep(_message.Message):
387
407
  __slots__ = ("asset_output_field_id", "create_asset_parameters", "preset_options")
388
408
  class CreateAssetParameters(_message.Message):
@@ -568,7 +588,7 @@ class IntegrationReference(_message.Message):
568
588
  def __init__(self, rid: _Optional[str] = ...) -> None: ...
569
589
 
570
590
  class FormField(_message.Message):
571
- __slots__ = ("id", "asset", "checkbox", "text", "int", "double", "single_enum", "multi_enum")
591
+ __slots__ = ("id", "asset", "checkbox", "text", "int", "double", "single_enum", "multi_enum", "file_upload", "multi_file_upload", "label", "description")
572
592
  ID_FIELD_NUMBER: _ClassVar[int]
573
593
  ASSET_FIELD_NUMBER: _ClassVar[int]
574
594
  CHECKBOX_FIELD_NUMBER: _ClassVar[int]
@@ -577,6 +597,10 @@ class FormField(_message.Message):
577
597
  DOUBLE_FIELD_NUMBER: _ClassVar[int]
578
598
  SINGLE_ENUM_FIELD_NUMBER: _ClassVar[int]
579
599
  MULTI_ENUM_FIELD_NUMBER: _ClassVar[int]
600
+ FILE_UPLOAD_FIELD_NUMBER: _ClassVar[int]
601
+ MULTI_FILE_UPLOAD_FIELD_NUMBER: _ClassVar[int]
602
+ LABEL_FIELD_NUMBER: _ClassVar[int]
603
+ DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
580
604
  id: str
581
605
  asset: AssetField
582
606
  checkbox: CheckboxField
@@ -585,7 +609,11 @@ class FormField(_message.Message):
585
609
  double: DoubleField
586
610
  single_enum: SingleEnumField
587
611
  multi_enum: MultiEnumField
588
- def __init__(self, id: _Optional[str] = ..., asset: _Optional[_Union[AssetField, _Mapping]] = ..., checkbox: _Optional[_Union[CheckboxField, _Mapping]] = ..., text: _Optional[_Union[TextField, _Mapping]] = ..., int: _Optional[_Union[IntField, _Mapping]] = ..., double: _Optional[_Union[DoubleField, _Mapping]] = ..., single_enum: _Optional[_Union[SingleEnumField, _Mapping]] = ..., multi_enum: _Optional[_Union[MultiEnumField, _Mapping]] = ...) -> None: ...
612
+ file_upload: FileUploadField
613
+ multi_file_upload: MultiFileUploadField
614
+ label: str
615
+ description: str
616
+ def __init__(self, id: _Optional[str] = ..., asset: _Optional[_Union[AssetField, _Mapping]] = ..., checkbox: _Optional[_Union[CheckboxField, _Mapping]] = ..., text: _Optional[_Union[TextField, _Mapping]] = ..., int: _Optional[_Union[IntField, _Mapping]] = ..., double: _Optional[_Union[DoubleField, _Mapping]] = ..., single_enum: _Optional[_Union[SingleEnumField, _Mapping]] = ..., multi_enum: _Optional[_Union[MultiEnumField, _Mapping]] = ..., file_upload: _Optional[_Union[FileUploadField, _Mapping]] = ..., multi_file_upload: _Optional[_Union[MultiFileUploadField, _Mapping]] = ..., label: _Optional[str] = ..., description: _Optional[str] = ...) -> None: ...
589
617
 
590
618
  class PresetAssetFieldOptions(_message.Message):
591
619
  __slots__ = ("options", "default_option")
@@ -705,6 +733,24 @@ class MultiEnumField(_message.Message):
705
733
  max_count: int
706
734
  def __init__(self, label: _Optional[str] = ..., options: _Optional[_Iterable[str]] = ..., buttons: _Optional[_Union[EnumFieldButtonsInputType, _Mapping]] = ..., dropdown: _Optional[_Union[EnumFieldMenuInputType, _Mapping]] = ..., allow_custom: bool = ..., min_count: _Optional[int] = ..., max_count: _Optional[int] = ...) -> None: ...
707
735
 
736
+ class FileUploadField(_message.Message):
737
+ __slots__ = ("is_required", "suffix_filters")
738
+ IS_REQUIRED_FIELD_NUMBER: _ClassVar[int]
739
+ SUFFIX_FILTERS_FIELD_NUMBER: _ClassVar[int]
740
+ is_required: bool
741
+ suffix_filters: _containers.RepeatedScalarFieldContainer[str]
742
+ def __init__(self, is_required: bool = ..., suffix_filters: _Optional[_Iterable[str]] = ...) -> None: ...
743
+
744
+ class MultiFileUploadField(_message.Message):
745
+ __slots__ = ("min_count", "max_count", "suffix_filters")
746
+ MIN_COUNT_FIELD_NUMBER: _ClassVar[int]
747
+ MAX_COUNT_FIELD_NUMBER: _ClassVar[int]
748
+ SUFFIX_FILTERS_FIELD_NUMBER: _ClassVar[int]
749
+ min_count: int
750
+ max_count: int
751
+ suffix_filters: _containers.RepeatedScalarFieldContainer[str]
752
+ def __init__(self, min_count: _Optional[int] = ..., max_count: _Optional[int] = ..., suffix_filters: _Optional[_Iterable[str]] = ...) -> None: ...
753
+
708
754
  class ProcedureMetadata(_message.Message):
709
755
  __slots__ = ("rid", "title", "description", "labels", "properties", "is_archived", "is_published", "created_at", "created_by", "updated_at", "updated_by", "workspace")
710
756
  class PropertiesEntry(_message.Message):
@@ -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*Y\n\x11OpcSecurityPolicy\x12#\n\x1fOPC_SECURITY_POLICY_UNSPECIFIED\x10\x00\x12\x08\n\x04NONE\x10\x01\x12\x15\n\x11\x42\x41SIC_256_SHA_256\x10\x02*\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')
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=4591
57
- _globals['_OPCUAREFERENCEEXPLORATIONTYPE']._serialized_start=4594
58
- _globals['_OPCUAREFERENCEEXPLORATIONTYPE']._serialized_end=4788
59
- _globals['_OPCUAUNKNOWNDATATYPEHANDLING']._serialized_start=4791
60
- _globals['_OPCUAUNKNOWNDATATYPEHANDLING']._serialized_end=5027
61
- _globals['_OPCUAFAILEDMONITORHANDLING']._serialized_start=5030
62
- _globals['_OPCUAFAILEDMONITORHANDLING']._serialized_end=5191
63
- _globals['_OPCUADATACHANGETRIGGER']._serialized_start=5194
64
- _globals['_OPCUADATACHANGETRIGGER']._serialized_end=5406
65
- _globals['_OPCUADEADBANDTYPE']._serialized_start=5409
66
- _globals['_OPCUADEADBANDTYPE']._serialized_end=5566
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
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
25
25
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
26
26
 
27
27
 
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13nominal_write.proto\x12\x1aio.nominal.scout.api.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"I\n\x13WriteRequestNominal\x12\x32\n\x06series\x18\x01 \x03(\x0b\x32\".io.nominal.scout.api.proto.Series\"\xdb\x01\n\x06Series\x12\x34\n\x07\x63hannel\x18\x01 \x01(\x0b\x32#.io.nominal.scout.api.proto.Channel\x12:\n\x04tags\x18\x02 \x03(\x0b\x32,.io.nominal.scout.api.proto.Series.TagsEntry\x12\x32\n\x06points\x18\x03 \x01(\x0b\x32\".io.nominal.scout.api.proto.Points\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x17\n\x07\x43hannel\x12\x0c\n\x04name\x18\x01 \x01(\t\"\xe2\x01\n\x06Points\x12\x41\n\rdouble_points\x18\x01 \x01(\x0b\x32(.io.nominal.scout.api.proto.DoublePointsH\x00\x12\x41\n\rstring_points\x18\x02 \x01(\x0b\x32(.io.nominal.scout.api.proto.StringPointsH\x00\x12\x43\n\x0einteger_points\x18\x03 \x01(\x0b\x32).io.nominal.scout.api.proto.IntegerPointsH\x00\x42\r\n\x0bpoints_type\"G\n\x0c\x44oublePoints\x12\x37\n\x06points\x18\x01 \x03(\x0b\x32\'.io.nominal.scout.api.proto.DoublePoint\"G\n\x0cStringPoints\x12\x37\n\x06points\x18\x01 \x03(\x0b\x32\'.io.nominal.scout.api.proto.StringPoint\"I\n\rIntegerPoints\x12\x38\n\x06points\x18\x01 \x03(\x0b\x32(.io.nominal.scout.api.proto.IntegerPoint\"K\n\x0b\x44oublePoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\x01\"K\n\x0bStringPoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\t\"L\n\x0cIntegerPoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\x03\x42\x1e\n\x1aio.nominal.scout.api.protoP\x01\x62\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13nominal_write.proto\x12\x1aio.nominal.scout.api.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"I\n\x13WriteRequestNominal\x12\x32\n\x06series\x18\x01 \x03(\x0b\x32\".io.nominal.scout.api.proto.Series\"\xdb\x01\n\x06Series\x12\x34\n\x07\x63hannel\x18\x01 \x01(\x0b\x32#.io.nominal.scout.api.proto.Channel\x12:\n\x04tags\x18\x02 \x03(\x0b\x32,.io.nominal.scout.api.proto.Series.TagsEntry\x12\x32\n\x06points\x18\x03 \x01(\x0b\x32\".io.nominal.scout.api.proto.Points\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x17\n\x07\x43hannel\x12\x0c\n\x04name\x18\x01 \x01(\t\"\xa3\x02\n\x06Points\x12\x41\n\rdouble_points\x18\x01 \x01(\x0b\x32(.io.nominal.scout.api.proto.DoublePointsH\x00\x12\x41\n\rstring_points\x18\x02 \x01(\x0b\x32(.io.nominal.scout.api.proto.StringPointsH\x00\x12\x43\n\x0einteger_points\x18\x03 \x01(\x0b\x32).io.nominal.scout.api.proto.IntegerPointsH\x00\x12?\n\x0c\x61rray_points\x18\x04 \x01(\x0b\x32\'.io.nominal.scout.api.proto.ArrayPointsH\x00\x42\r\n\x0bpoints_type\"G\n\x0c\x44oublePoints\x12\x37\n\x06points\x18\x01 \x03(\x0b\x32\'.io.nominal.scout.api.proto.DoublePoint\"G\n\x0cStringPoints\x12\x37\n\x06points\x18\x01 \x03(\x0b\x32\'.io.nominal.scout.api.proto.StringPoint\"I\n\rIntegerPoints\x12\x38\n\x06points\x18\x01 \x03(\x0b\x32(.io.nominal.scout.api.proto.IntegerPoint\"K\n\x0b\x44oublePoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\x01\"K\n\x0bStringPoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\t\"L\n\x0cIntegerPoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\x03\"\xb7\x01\n\x0b\x41rrayPoints\x12L\n\x13\x64ouble_array_points\x18\x01 \x01(\x0b\x32-.io.nominal.scout.api.proto.DoubleArrayPointsH\x00\x12L\n\x13string_array_points\x18\x02 \x01(\x0b\x32-.io.nominal.scout.api.proto.StringArrayPointsH\x00\x42\x0c\n\narray_type\"Q\n\x11\x44oubleArrayPoints\x12<\n\x06points\x18\x01 \x03(\x0b\x32,.io.nominal.scout.api.proto.DoubleArrayPoint\"Q\n\x11StringArrayPoints\x12<\n\x06points\x18\x01 \x03(\x0b\x32,.io.nominal.scout.api.proto.StringArrayPoint\"P\n\x10\x44oubleArrayPoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x03(\x01\"P\n\x10StringArrayPoint\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x03(\tB\x1e\n\x1aio.nominal.scout.api.protoP\x01\x62\x06proto3')
29
29
 
30
30
  _globals = globals()
31
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -44,17 +44,27 @@ if not _descriptor._USE_C_DESCRIPTORS:
44
44
  _globals['_CHANNEL']._serialized_start=381
45
45
  _globals['_CHANNEL']._serialized_end=404
46
46
  _globals['_POINTS']._serialized_start=407
47
- _globals['_POINTS']._serialized_end=633
48
- _globals['_DOUBLEPOINTS']._serialized_start=635
49
- _globals['_DOUBLEPOINTS']._serialized_end=706
50
- _globals['_STRINGPOINTS']._serialized_start=708
51
- _globals['_STRINGPOINTS']._serialized_end=779
52
- _globals['_INTEGERPOINTS']._serialized_start=781
53
- _globals['_INTEGERPOINTS']._serialized_end=854
54
- _globals['_DOUBLEPOINT']._serialized_start=856
55
- _globals['_DOUBLEPOINT']._serialized_end=931
56
- _globals['_STRINGPOINT']._serialized_start=933
57
- _globals['_STRINGPOINT']._serialized_end=1008
58
- _globals['_INTEGERPOINT']._serialized_start=1010
59
- _globals['_INTEGERPOINT']._serialized_end=1086
47
+ _globals['_POINTS']._serialized_end=698
48
+ _globals['_DOUBLEPOINTS']._serialized_start=700
49
+ _globals['_DOUBLEPOINTS']._serialized_end=771
50
+ _globals['_STRINGPOINTS']._serialized_start=773
51
+ _globals['_STRINGPOINTS']._serialized_end=844
52
+ _globals['_INTEGERPOINTS']._serialized_start=846
53
+ _globals['_INTEGERPOINTS']._serialized_end=919
54
+ _globals['_DOUBLEPOINT']._serialized_start=921
55
+ _globals['_DOUBLEPOINT']._serialized_end=996
56
+ _globals['_STRINGPOINT']._serialized_start=998
57
+ _globals['_STRINGPOINT']._serialized_end=1073
58
+ _globals['_INTEGERPOINT']._serialized_start=1075
59
+ _globals['_INTEGERPOINT']._serialized_end=1151
60
+ _globals['_ARRAYPOINTS']._serialized_start=1154
61
+ _globals['_ARRAYPOINTS']._serialized_end=1337
62
+ _globals['_DOUBLEARRAYPOINTS']._serialized_start=1339
63
+ _globals['_DOUBLEARRAYPOINTS']._serialized_end=1420
64
+ _globals['_STRINGARRAYPOINTS']._serialized_start=1422
65
+ _globals['_STRINGARRAYPOINTS']._serialized_end=1503
66
+ _globals['_DOUBLEARRAYPOINT']._serialized_start=1505
67
+ _globals['_DOUBLEARRAYPOINT']._serialized_end=1585
68
+ _globals['_STRINGARRAYPOINT']._serialized_start=1587
69
+ _globals['_STRINGARRAYPOINT']._serialized_end=1667
60
70
  # @@protoc_insertion_point(module_scope)
@@ -39,14 +39,16 @@ class Channel(_message.Message):
39
39
  def __init__(self, name: _Optional[str] = ...) -> None: ...
40
40
 
41
41
  class Points(_message.Message):
42
- __slots__ = ("double_points", "string_points", "integer_points")
42
+ __slots__ = ("double_points", "string_points", "integer_points", "array_points")
43
43
  DOUBLE_POINTS_FIELD_NUMBER: _ClassVar[int]
44
44
  STRING_POINTS_FIELD_NUMBER: _ClassVar[int]
45
45
  INTEGER_POINTS_FIELD_NUMBER: _ClassVar[int]
46
+ ARRAY_POINTS_FIELD_NUMBER: _ClassVar[int]
46
47
  double_points: DoublePoints
47
48
  string_points: StringPoints
48
49
  integer_points: IntegerPoints
49
- def __init__(self, double_points: _Optional[_Union[DoublePoints, _Mapping]] = ..., string_points: _Optional[_Union[StringPoints, _Mapping]] = ..., integer_points: _Optional[_Union[IntegerPoints, _Mapping]] = ...) -> None: ...
50
+ array_points: ArrayPoints
51
+ def __init__(self, double_points: _Optional[_Union[DoublePoints, _Mapping]] = ..., string_points: _Optional[_Union[StringPoints, _Mapping]] = ..., integer_points: _Optional[_Union[IntegerPoints, _Mapping]] = ..., array_points: _Optional[_Union[ArrayPoints, _Mapping]] = ...) -> None: ...
50
52
 
51
53
  class DoublePoints(_message.Message):
52
54
  __slots__ = ("points",)
@@ -89,3 +91,39 @@ class IntegerPoint(_message.Message):
89
91
  timestamp: _timestamp_pb2.Timestamp
90
92
  value: int
91
93
  def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., value: _Optional[int] = ...) -> None: ...
94
+
95
+ class ArrayPoints(_message.Message):
96
+ __slots__ = ("double_array_points", "string_array_points")
97
+ DOUBLE_ARRAY_POINTS_FIELD_NUMBER: _ClassVar[int]
98
+ STRING_ARRAY_POINTS_FIELD_NUMBER: _ClassVar[int]
99
+ double_array_points: DoubleArrayPoints
100
+ string_array_points: StringArrayPoints
101
+ def __init__(self, double_array_points: _Optional[_Union[DoubleArrayPoints, _Mapping]] = ..., string_array_points: _Optional[_Union[StringArrayPoints, _Mapping]] = ...) -> None: ...
102
+
103
+ class DoubleArrayPoints(_message.Message):
104
+ __slots__ = ("points",)
105
+ POINTS_FIELD_NUMBER: _ClassVar[int]
106
+ points: _containers.RepeatedCompositeFieldContainer[DoubleArrayPoint]
107
+ def __init__(self, points: _Optional[_Iterable[_Union[DoubleArrayPoint, _Mapping]]] = ...) -> None: ...
108
+
109
+ class StringArrayPoints(_message.Message):
110
+ __slots__ = ("points",)
111
+ POINTS_FIELD_NUMBER: _ClassVar[int]
112
+ points: _containers.RepeatedCompositeFieldContainer[StringArrayPoint]
113
+ def __init__(self, points: _Optional[_Iterable[_Union[StringArrayPoint, _Mapping]]] = ...) -> None: ...
114
+
115
+ class DoubleArrayPoint(_message.Message):
116
+ __slots__ = ("timestamp", "value")
117
+ TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
118
+ VALUE_FIELD_NUMBER: _ClassVar[int]
119
+ timestamp: _timestamp_pb2.Timestamp
120
+ value: _containers.RepeatedScalarFieldContainer[float]
121
+ def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., value: _Optional[_Iterable[float]] = ...) -> None: ...
122
+
123
+ class StringArrayPoint(_message.Message):
124
+ __slots__ = ("timestamp", "value")
125
+ TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
126
+ VALUE_FIELD_NUMBER: _ClassVar[int]
127
+ timestamp: _timestamp_pb2.Timestamp
128
+ value: _containers.RepeatedScalarFieldContainer[str]
129
+ def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., value: _Optional[_Iterable[str]] = ...) -> None: ...
@@ -1,7 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api-protos
3
- Version: 0.967.1
3
+ Version: 0.985.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: protobuf>=5.25.0
6
+ Requires-Dist: grpcio>=1.76.0
7
+ Requires-Dist: grpcio-tools>=1.76.0
6
8
  Dynamic: requires-dist
7
9
  Dynamic: requires-python
@@ -1,16 +1,22 @@
1
- nominal_api_protos/nominal_write_pb2.py,sha256=4h11jbIs9aotDqtLlrkeT0R_8moPfJ2gg4tYclIjNbg,4155
2
- nominal_api_protos/nominal_write_pb2.pyi,sha256=qg9icVAIH88fxpzD4zqs1otE_Qstwiew0TMwCIoDZlY,4168
1
+ nominal_api_protos/nominal_write_pb2.py,sha256=5IekZ8GQIcRKRpFLla-JRDpJbgJ6HWaX7qcnstfUvmE,5525
2
+ nominal_api_protos/nominal_write_pb2.pyi,sha256=0SGb8Zs7JY8OTrds7LOlCqL4FC6O22bhxQ2u-zLL_2g,6249
3
3
  nominal_api_protos/nominal_write_pb2_grpc.py,sha256=lfNwYREbTicLP8RS6hqXPH8Sx6-dYk5_5p6QG0biw98,893
4
4
  nominal_api_protos/prometheus_remote_write_pb2.py,sha256=hG4LXQikJs2sFZ57U9lPQv5E8G0XXxnB7uvAOE1-keQ,2192
5
5
  nominal_api_protos/prometheus_remote_write_pb2.pyi,sha256=V0Vct6AbqB2iQlAUz7QLPizufoFU0Dpw3nBhQeI61Ss,1649
6
6
  nominal_api_protos/prometheus_remote_write_pb2_grpc.py,sha256=j-q7LlZVisarUYxAaeLwFDJZQ0SNlOEuIcIqeEPiKlM,903
7
7
  nominal_api_protos/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ nominal_api_protos/nominal/ai/v1/ai_agent_pb2.py,sha256=djwbQbSnLZV7PvgdXGWlSNyqoR30TcIwp5dqt3VcQ1Q,13548
9
+ nominal_api_protos/nominal/ai/v1/ai_agent_pb2.pyi,sha256=tjPCBxrgve-FdUsLfXzy5uvvO0byKqtsHnDiS8FknH0,15899
10
+ nominal_api_protos/nominal/ai/v1/ai_agent_pb2_grpc.py,sha256=A2UDMXeqm5uq-CsBllf8BcOYIcI7aKfy_ErGhSi3I-g,13944
11
+ nominal_api_protos/nominal/ai/v1/ai_features_pb2.py,sha256=2yDvy2Qgu571N6_ertDaVLryUaPcsMUNjD5nAYVPxII,1809
12
+ nominal_api_protos/nominal/ai/v1/ai_features_pb2.pyi,sha256=PhkixtOLawdlL7r7c2j6yK4P8091KQ7VGeRP9XPDLXo,523
13
+ nominal_api_protos/nominal/ai/v1/ai_features_pb2_grpc.py,sha256=Cdwt8uuXCTLRAF7cy0YF-KGPpJoYyriUx4-BWgoB-yc,3931
8
14
  nominal_api_protos/nominal/ai/v1/knowledge_base_pb2.py,sha256=Dsf63Ytqk_r8VVNO11v2IOn83quzbHrq8UkQXPNxYCQ,4828
9
15
  nominal_api_protos/nominal/ai/v1/knowledge_base_pb2.pyi,sha256=Z_KxZu-If8Psuae4fPCiTZdKB3FG12QiQVs02srMtME,4596
10
16
  nominal_api_protos/nominal/ai/v1/knowledge_base_pb2_grpc.py,sha256=T-ut4KyPTUR5GY2RXMGhGy4vzAdBDIFLLk7K4bH0Wcw,11888
11
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.py,sha256=ZF08oZuHpj2UmsBbGzjfejXY91Nxrfii2VTk2InJIGc,8730
12
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi,sha256=xvcSwYt6zO2MRoEPli02XowqQ4TfEmx2u2i9gqRD9KY,10572
13
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2_grpc.py,sha256=X2BlPnqLMram_fZvuMkFO6FbEaw6YYzBy8m-PmRAug4,3907
17
+ nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.py,sha256=p1qlsjCDVEQVdO_R5n7Y4N_wvadrSTlqDzIWXAqoXQE,3180
18
+ nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi,sha256=VQJOeiiuxTZYGBvvS_U-oN457Ixz6Evqciv7yX9vKnc,1933
19
+ nominal_api_protos/nominal/ai/v1/workbook_agent_pb2_grpc.py,sha256=o-6kbT6LHQ3QrS6ISEKjY88cD0HF7NFBmH1XsMdOg-s,14423
14
20
  nominal_api_protos/nominal/application/v1/application_pb2.py,sha256=Kgvx0zgiijr64FJV8tgzq2NijB3oGlwA_w4kUrlIV_Q,2433
15
21
  nominal_api_protos/nominal/application/v1/application_pb2.pyi,sha256=c6e_qS1PmxPBgzWpDOq1VdU89W2AskdrBqWghH5hKmo,561
16
22
  nominal_api_protos/nominal/application/v1/application_pb2_grpc.py,sha256=RmNoMjM1FgBLVXpvFNFptLp75PR9N4Z0EtVtFNT6F5E,3968
@@ -47,26 +53,32 @@ nominal_api_protos/nominal/connections/v1/external_api_connections_pb2_grpc.py,s
47
53
  nominal_api_protos/nominal/conversations/v1/conversations_pb2.py,sha256=-wldWCj1VbcjCCOYVEhPQvTBGAzauMYzQUGfveGA-qo,8008
48
54
  nominal_api_protos/nominal/conversations/v1/conversations_pb2.pyi,sha256=nojuB7cNopoecx0R4AoOmPRirqvoA7CgxkhlobmFgUM,8064
49
55
  nominal_api_protos/nominal/conversations/v1/conversations_pb2_grpc.py,sha256=lVOoDZFzXV8i64oyILZ3ygiKRM_AguQxTsgPp-m3NeY,12421
50
- nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.py,sha256=vPvzGHT0NM8siWsMn60ULHtnq3RSQBtFMnb2bRAmCbI,16411
51
- nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.pyi,sha256=XLW7FqiceWaXMZIg_qWKDouyjXcJUmk6HqJM83HZPQY,9435
56
+ nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.py,sha256=gFtJtk3JVeJLltV3h57RgTmEHTuLlgysiLyX0oQZWjo,17558
57
+ nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.pyi,sha256=LenM9q6gCdOW7MC_FhEo4lWm2lGMPi3cDXh2_BkMcs8,10808
58
+ nominal_api_protos/nominal/data_connector/v1/data_connector_pb2_grpc.py,sha256=Eetau4RhyaoKeY7UBQG3fQA8EbBeQFOuTIdzrauSeEw,16684
59
+ nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2.py,sha256=SD-wUjIz9xX9eELcctwNR_2O6fj6ajtj0A3rlrxuAb8,16169
60
+ nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2.pyi,sha256=Fxt9lfwTxSXxuu8_WBLvUGWpU2Lpha57PfVcxaLLVWk,16982
61
+ nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2_grpc.py,sha256=cvXRgygoZ9stAy_PyCuwhZNuBm_m6e6ADrzUNk6FaY4,922
62
+ nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.py,sha256=etAoHJpVsozcGIbwVgxkd5SoC-jdM-ECU3zJ8fgm6k8,16667
63
+ nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2.pyi,sha256=tvBHftSX8d5nQQomf5UKwNAyolsqsgGRGh--r7YgTgk,9837
52
64
  nominal_api_protos/nominal/direct_channel_writer/v2/direct_nominal_channel_writer_pb2_grpc.py,sha256=itsUaYfQ_TWNpUfCdq4wPH_wNvx-ofjSQqu6B2L9UYM,4805
53
65
  nominal_api_protos/nominal/edge/v1/edge_sync_pb2.py,sha256=C2uxi17fN99ukwEAFl4LveGwmne51jWNVjBxtx6Psjo,9793
54
66
  nominal_api_protos/nominal/edge/v1/edge_sync_pb2.pyi,sha256=Ju1JIgNjRGc-8GriwIoSF2PwkZ_M7VnXqgfSjPfZ8i8,3972
55
67
  nominal_api_protos/nominal/edge/v1/edge_sync_pb2_grpc.py,sha256=ko6MvzERfBKZ_LuwuBxtadhFjghycZlFJVzfnvNel6o,9687
56
- nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.py,sha256=mEMut_jfvLOZlDzhuoFr3zaVi_3pduvXTl0nXSSs8NY,65305
57
- nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.pyi,sha256=nfRerchy8GNfqIRIaDpknzKbdsQToDsZPZW3bfjhAHA,44725
68
+ nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.py,sha256=nX82aKLAcfXC5pO35-Pn3A45WJaEHb_elqP_f2o0anM,67012
69
+ nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2.pyi,sha256=GcpThy8mHGfWGRyvrdQch-bVgXzvWcVBCGGDWWbrb6Q,46495
58
70
  nominal_api_protos/nominal/procedures/executions/v1/procedure_executions_pb2_grpc.py,sha256=qFCHv7FZ8ZfkaHa59XSbQU-RoDAu6WLzuwVnrdPp7Zg,21211
59
71
  nominal_api_protos/nominal/procedures/v1/id_format_pb2.py,sha256=I1W4kVKBMNfJlk3ccwPvufKYsJsXOdMQX4qIs0KWJq8,3527
60
72
  nominal_api_protos/nominal/procedures/v1/id_format_pb2.pyi,sha256=RqEhEeOKYbxtUWoCgJFervQZlUdB8Js_ryv3bNWQKL8,498
61
73
  nominal_api_protos/nominal/procedures/v1/id_format_pb2_grpc.py,sha256=B4v8Xrlv5aGK-LjkwQnpdH59XpS1jcjq9dgrhmsCp6M,911
62
- nominal_api_protos/nominal/procedures/v1/procedures_pb2.py,sha256=mOuWU4Ox7ZGy9Y9akmvCkCi9jiv3G3-8mVvCHdGiLbM,81948
63
- nominal_api_protos/nominal/procedures/v1/procedures_pb2.pyi,sha256=eFg0aw4X2aKbb2j5GR_Ulea_xtoGJxmLGzKK19uZyS4,55045
74
+ nominal_api_protos/nominal/procedures/v1/procedures_pb2.py,sha256=EaTOr2qnN8oPRiKef9uK7cldBGgkrKAXjOzI1bNJ8qI,85044
75
+ nominal_api_protos/nominal/procedures/v1/procedures_pb2.pyi,sha256=G54jeD7oM-9IhLjiUmEd7JErpX_T7aKidoCarwhK21Q,57704
64
76
  nominal_api_protos/nominal/procedures/v1/procedures_pb2_grpc.py,sha256=r6kxr3ny-wJVnnukeIDuuT-Z6bqhFqwVPvaiAf_bvFg,26670
65
77
  nominal_api_protos/nominal/scout/elements/v1/elements_pb2.py,sha256=-T2RQp6NlnfaWR930ExhoDusEsM0dpuBVTfPTEWzAJ8,2346
66
78
  nominal_api_protos/nominal/scout/elements/v1/elements_pb2.pyi,sha256=VXIH7egTSO_rJl1uq25zijhpVGVkDEJ83H10SlwLdxg,809
67
79
  nominal_api_protos/nominal/scout/elements/v1/elements_pb2_grpc.py,sha256=Qd2NPLmbKVnWAeMnEWUlsrVjNNY7meDAeWmPiOc622I,914
68
- nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.py,sha256=auHm3W_YeybXJ8iuYwknTeKB3KOnr7EQjbN-N10qHwk,15012
69
- nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.pyi,sha256=Q2GZCrJ7kgtiI2N19dndoVBXq8FP2BpVP1-BNQdEgJU,15052
80
+ nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.py,sha256=DXlJ32ACAb7yAhQpUQbYwJ-21Bltm-3W-rddDAGttRU,14967
81
+ nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2.pyi,sha256=S6Xnsc5x9st7n_64MEu5iNmGlV5iskDAapbkOTsHDnc,14963
70
82
  nominal_api_protos/nominal/streaming_connection_service/v1/opc_ua_pb2_grpc.py,sha256=kEtwET5GFaXInUD_hzdweWc7SiedyRi3mkBBhdqVzOQ,926
71
83
  nominal_api_protos/nominal/streaming_connection_service/v1/streaming_connection_service_pb2.py,sha256=Ao6CmQQ_G6PRTYcRTd1Q3NK8jmt6i2Z0aMXlahcOn_0,16348
72
84
  nominal_api_protos/nominal/streaming_connection_service/v1/streaming_connection_service_pb2.pyi,sha256=bXupNLtz5BPt8xCJjdM49CUspbriLrzuNImE-pLv-Vc,7996
@@ -89,7 +101,7 @@ nominal_api_protos/nominal/versioning/v1/versioning_pb2_grpc.py,sha256=X6uaQTGIZ
89
101
  nominal_api_protos/nominal/workspaces/v1/workspaces_pb2.py,sha256=If3gH8W_yuTpFrBIoctbaMFgIPvkPE0cuZC7HpqjPlM,14331
90
102
  nominal_api_protos/nominal/workspaces/v1/workspaces_pb2.pyi,sha256=qsnUMQrUtaA0z0N1MoQbfjuFt-Qf_rKjn1YmEV0WjmU,6917
91
103
  nominal_api_protos/nominal/workspaces/v1/workspaces_pb2_grpc.py,sha256=sKvcCPuF3Tn_APr_QTJD06cpo4KRC8aVxc-gCqQnTsc,10541
92
- nominal_api_protos-0.967.1.dist-info/METADATA,sha256=7RqjXAPc9tw1yQzDw87dOu--R4DaJMJYJsl03KwmCk8,167
93
- nominal_api_protos-0.967.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
94
- nominal_api_protos-0.967.1.dist-info/top_level.txt,sha256=LGL0l0Ex9617MHzOemB7GgioLYe-livRUUrqIkV0hpQ,19
95
- nominal_api_protos-0.967.1.dist-info/RECORD,,
104
+ nominal_api_protos-0.985.0.dist-info/METADATA,sha256=qlODHxsNzUqHmt0DrwYJyG4Vdo-t8_7YgvtYRzld6Bk,233
105
+ nominal_api_protos-0.985.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
106
+ nominal_api_protos-0.985.0.dist-info/top_level.txt,sha256=LGL0l0Ex9617MHzOemB7GgioLYe-livRUUrqIkV0hpQ,19
107
+ nominal_api_protos-0.985.0.dist-info/RECORD,,