nominal-api 0.679.0__py3-none-any.whl → 0.681.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 might be problematic. Click here for more details.

nominal_api/__init__.py CHANGED
@@ -75,5 +75,5 @@ __all__ = [
75
75
 
76
76
  __conjure_generator_version__ = "4.9.0"
77
77
 
78
- __version__ = "0.679.0"
78
+ __version__ = "0.681.0"
79
79
 
nominal_api/_impl.py CHANGED
@@ -7320,12 +7320,13 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
7320
7320
  'labels': ConjureFieldDefinition('labels', List[api_Label]),
7321
7321
  'created_at': ConjureFieldDefinition('createdAt', str),
7322
7322
  'is_archived': ConjureFieldDefinition('isArchived', bool),
7323
- 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata)
7323
+ 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata),
7324
+ 'output_file_format': ConjureFieldDefinition('outputFileFormat', ingest_api_FileOutputFormat)
7324
7325
  }
7325
7326
 
7326
- __slots__: List[str] = ['_rid', '_name', '_description', '_image', '_inputs', '_properties', '_labels', '_created_at', '_is_archived', '_timestamp_metadata']
7327
+ __slots__: List[str] = ['_rid', '_name', '_description', '_image', '_inputs', '_properties', '_labels', '_created_at', '_is_archived', '_timestamp_metadata', '_output_file_format']
7327
7328
 
7328
- def __init__(self, created_at: str, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], is_archived: bool, labels: List[str], name: str, properties: Dict[str, str], rid: str, timestamp_metadata: "ingest_api_TimestampMetadata", description: Optional[str] = None) -> None:
7329
+ def __init__(self, created_at: str, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], is_archived: bool, labels: List[str], name: str, output_file_format: "ingest_api_FileOutputFormat", properties: Dict[str, str], rid: str, timestamp_metadata: "ingest_api_TimestampMetadata", description: Optional[str] = None) -> None:
7329
7330
  self._rid = rid
7330
7331
  self._name = name
7331
7332
  self._description = description
@@ -7336,6 +7337,7 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
7336
7337
  self._created_at = created_at
7337
7338
  self._is_archived = is_archived
7338
7339
  self._timestamp_metadata = timestamp_metadata
7340
+ self._output_file_format = output_file_format
7339
7341
 
7340
7342
  @builtins.property
7341
7343
  def rid(self) -> str:
@@ -7407,6 +7409,13 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
7407
7409
  """
7408
7410
  return self._timestamp_metadata
7409
7411
 
7412
+ @builtins.property
7413
+ def output_file_format(self) -> "ingest_api_FileOutputFormat":
7414
+ """
7415
+ The format of the output file. Currently only "parquet", "csv", "parquet.tar" are supported
7416
+ """
7417
+ return self._output_file_format
7418
+
7410
7419
 
7411
7420
  ingest_api_ContainerizedExtractor.__name__ = "ContainerizedExtractor"
7412
7421
  ingest_api_ContainerizedExtractor.__qualname__ = "ContainerizedExtractor"
@@ -8338,6 +8347,26 @@ ingest_api_FileFilterVisitor.__qualname__ = "FileFilterVisitor"
8338
8347
  ingest_api_FileFilterVisitor.__module__ = "nominal_api.ingest_api"
8339
8348
 
8340
8349
 
8350
+ class ingest_api_FileOutputFormat(ConjureEnumType):
8351
+
8352
+ PARQUET = 'PARQUET'
8353
+ '''PARQUET'''
8354
+ CSV = 'CSV'
8355
+ '''CSV'''
8356
+ PARQUET_TAR = 'PARQUET_TAR'
8357
+ '''PARQUET_TAR'''
8358
+ UNKNOWN = 'UNKNOWN'
8359
+ '''UNKNOWN'''
8360
+
8361
+ def __reduce_ex__(self, proto):
8362
+ return self.__class__, (self.name,)
8363
+
8364
+
8365
+ ingest_api_FileOutputFormat.__name__ = "FileOutputFormat"
8366
+ ingest_api_FileOutputFormat.__qualname__ = "FileOutputFormat"
8367
+ ingest_api_FileOutputFormat.__module__ = "nominal_api.ingest_api"
8368
+
8369
+
8341
8370
  class ingest_api_GcsIngestSource(ConjureBeanType):
8342
8371
 
8343
8372
  @builtins.classmethod
@@ -10864,12 +10893,13 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
10864
10893
  'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
10865
10894
  'labels': ConjureFieldDefinition('labels', List[api_Label]),
10866
10895
  'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid),
10867
- 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata)
10896
+ 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata),
10897
+ 'output_file_format': ConjureFieldDefinition('outputFileFormat', OptionalTypeWrapper[ingest_api_FileOutputFormat])
10868
10898
  }
10869
10899
 
10870
- __slots__: List[str] = ['_name', '_description', '_image', '_inputs', '_properties', '_labels', '_workspace', '_timestamp_metadata']
10900
+ __slots__: List[str] = ['_name', '_description', '_image', '_inputs', '_properties', '_labels', '_workspace', '_timestamp_metadata', '_output_file_format']
10871
10901
 
10872
- def __init__(self, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], labels: List[str], name: str, properties: Dict[str, str], timestamp_metadata: "ingest_api_TimestampMetadata", workspace: str, description: Optional[str] = None) -> None:
10902
+ def __init__(self, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], labels: List[str], name: str, properties: Dict[str, str], timestamp_metadata: "ingest_api_TimestampMetadata", workspace: str, description: Optional[str] = None, output_file_format: Optional["ingest_api_FileOutputFormat"] = None) -> None:
10873
10903
  self._name = name
10874
10904
  self._description = description
10875
10905
  self._image = image
@@ -10878,6 +10908,7 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
10878
10908
  self._labels = labels
10879
10909
  self._workspace = workspace
10880
10910
  self._timestamp_metadata = timestamp_metadata
10911
+ self._output_file_format = output_file_format
10881
10912
 
10882
10913
  @builtins.property
10883
10914
  def name(self) -> str:
@@ -10920,6 +10951,13 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
10920
10951
  """
10921
10952
  return self._timestamp_metadata
10922
10953
 
10954
+ @builtins.property
10955
+ def output_file_format(self) -> Optional["ingest_api_FileOutputFormat"]:
10956
+ """
10957
+ The format of the output file. Currently only "parquet", "csv", "parquet.tar" are supported
10958
+ """
10959
+ return self._output_file_format
10960
+
10923
10961
 
10924
10962
  ingest_api_RegisterContainerizedExtractorRequest.__name__ = "RegisterContainerizedExtractorRequest"
10925
10963
  ingest_api_RegisterContainerizedExtractorRequest.__qualname__ = "RegisterContainerizedExtractorRequest"
@@ -13541,8 +13579,6 @@ class persistent_compute_api_InvalidComputationType(ConjureEnumType):
13541
13579
  '''CURVE_FITTING'''
13542
13580
  PAGE_SUMMARIZATION_STRATEGY = 'PAGE_SUMMARIZATION_STRATEGY'
13543
13581
  '''PAGE_SUMMARIZATION_STRATEGY'''
13544
- LOOK_BACK_TOO_FAR = 'LOOK_BACK_TOO_FAR'
13545
- '''LOOK_BACK_TOO_FAR'''
13546
13582
  LOG_SERIES = 'LOG_SERIES'
13547
13583
  '''LOG_SERIES'''
13548
13584
  LITERAL_RANGES = 'LITERAL_RANGES'
@@ -13889,6 +13925,8 @@ class persistent_compute_api_SubscriptionCreationError(ConjureBeanType):
13889
13925
  """
13890
13926
  This will be sent if there is an error while creating a subscription. This means that the subscription was
13891
13927
  never created and the client will have to re-try creating it if warranted.
13928
+ This can also be sent after a subscription was first successfully started and sent result. In that case it
13929
+ means that the subscription encountered an unrecoverable error at runtime and will be stopped.
13892
13930
  """
13893
13931
 
13894
13932
  @builtins.classmethod
@@ -64182,6 +64220,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64182
64220
  _long_field: Optional["scout_internal_search_api_LongField"] = None
64183
64221
  _boolean_field: Optional["scout_internal_search_api_BooleanField"] = None
64184
64222
  _exact_match: Optional[str] = None
64223
+ _string_array_exact_match: Optional["scout_internal_search_api_StringArrayField"] = None
64185
64224
  _search_text: Optional[str] = None
64186
64225
  _label: Optional[str] = None
64187
64226
  _property: Optional["api_Property"] = None
@@ -64199,6 +64238,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64199
64238
  'long_field': ConjureFieldDefinition('longField', scout_internal_search_api_LongField),
64200
64239
  'boolean_field': ConjureFieldDefinition('booleanField', scout_internal_search_api_BooleanField),
64201
64240
  'exact_match': ConjureFieldDefinition('exactMatch', str),
64241
+ 'string_array_exact_match': ConjureFieldDefinition('stringArrayExactMatch', scout_internal_search_api_StringArrayField),
64202
64242
  'search_text': ConjureFieldDefinition('searchText', str),
64203
64243
  'label': ConjureFieldDefinition('label', api_Label),
64204
64244
  'property': ConjureFieldDefinition('property', api_Property),
@@ -64216,6 +64256,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64216
64256
  long_field: Optional["scout_internal_search_api_LongField"] = None,
64217
64257
  boolean_field: Optional["scout_internal_search_api_BooleanField"] = None,
64218
64258
  exact_match: Optional[str] = None,
64259
+ string_array_exact_match: Optional["scout_internal_search_api_StringArrayField"] = None,
64219
64260
  search_text: Optional[str] = None,
64220
64261
  label: Optional[str] = None,
64221
64262
  property: Optional["api_Property"] = None,
@@ -64226,7 +64267,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64226
64267
  type_of_union: Optional[str] = None
64227
64268
  ) -> None:
64228
64269
  if type_of_union is None:
64229
- if (date_time_field is not None) + (string_field is not None) + (timestamp_field is not None) + (long_field is not None) + (boolean_field is not None) + (exact_match is not None) + (search_text is not None) + (label is not None) + (property is not None) + (and_ is not None) + (or_ is not None) + (not_ is not None) + (workspace is not None) != 1:
64270
+ if (date_time_field is not None) + (string_field is not None) + (timestamp_field is not None) + (long_field is not None) + (boolean_field is not None) + (exact_match is not None) + (string_array_exact_match is not None) + (search_text is not None) + (label is not None) + (property is not None) + (and_ is not None) + (or_ is not None) + (not_ is not None) + (workspace is not None) != 1:
64230
64271
  raise ValueError('a union must contain a single member')
64231
64272
 
64232
64273
  if date_time_field is not None:
@@ -64247,6 +64288,9 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64247
64288
  if exact_match is not None:
64248
64289
  self._exact_match = exact_match
64249
64290
  self._type = 'exactMatch'
64291
+ if string_array_exact_match is not None:
64292
+ self._string_array_exact_match = string_array_exact_match
64293
+ self._type = 'stringArrayExactMatch'
64250
64294
  if search_text is not None:
64251
64295
  self._search_text = search_text
64252
64296
  self._type = 'searchText'
@@ -64299,6 +64343,11 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64299
64343
  raise ValueError('a union value must not be None')
64300
64344
  self._exact_match = exact_match
64301
64345
  self._type = 'exactMatch'
64346
+ elif type_of_union == 'stringArrayExactMatch':
64347
+ if string_array_exact_match is None:
64348
+ raise ValueError('a union value must not be None')
64349
+ self._string_array_exact_match = string_array_exact_match
64350
+ self._type = 'stringArrayExactMatch'
64302
64351
  elif type_of_union == 'searchText':
64303
64352
  if search_text is None:
64304
64353
  raise ValueError('a union value must not be None')
@@ -64362,6 +64411,14 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64362
64411
  """
64363
64412
  return self._exact_match
64364
64413
 
64414
+ @builtins.property
64415
+ def string_array_exact_match(self) -> Optional["scout_internal_search_api_StringArrayField"]:
64416
+ """
64417
+ Requires the string values in the query to exactly match the set of string values in the resource.
64418
+ To do a partial match, use an "and" on StringField queries.
64419
+ """
64420
+ return self._string_array_exact_match
64421
+
64365
64422
  @builtins.property
64366
64423
  def search_text(self) -> Optional[str]:
64367
64424
  return self._search_text
@@ -64405,6 +64462,8 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
64405
64462
  return visitor._boolean_field(self.boolean_field)
64406
64463
  if self._type == 'exactMatch' and self.exact_match is not None:
64407
64464
  return visitor._exact_match(self.exact_match)
64465
+ if self._type == 'stringArrayExactMatch' and self.string_array_exact_match is not None:
64466
+ return visitor._string_array_exact_match(self.string_array_exact_match)
64408
64467
  if self._type == 'searchText' and self.search_text is not None:
64409
64468
  return visitor._search_text(self.search_text)
64410
64469
  if self._type == 'label' and self.label is not None:
@@ -64452,6 +64511,10 @@ class scout_internal_search_api_SearchQueryVisitor:
64452
64511
  def _exact_match(self, exact_match: str) -> Any:
64453
64512
  pass
64454
64513
 
64514
+ @abstractmethod
64515
+ def _string_array_exact_match(self, string_array_exact_match: "scout_internal_search_api_StringArrayField") -> Any:
64516
+ pass
64517
+
64455
64518
  @abstractmethod
64456
64519
  def _search_text(self, search_text: str) -> Any:
64457
64520
  pass
@@ -64486,6 +64549,35 @@ scout_internal_search_api_SearchQueryVisitor.__qualname__ = "SearchQueryVisitor"
64486
64549
  scout_internal_search_api_SearchQueryVisitor.__module__ = "nominal_api.scout_internal_search_api"
64487
64550
 
64488
64551
 
64552
+ class scout_internal_search_api_StringArrayField(ConjureBeanType):
64553
+
64554
+ @builtins.classmethod
64555
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
64556
+ return {
64557
+ 'name': ConjureFieldDefinition('name', str),
64558
+ 'value': ConjureFieldDefinition('value', List[str])
64559
+ }
64560
+
64561
+ __slots__: List[str] = ['_name', '_value']
64562
+
64563
+ def __init__(self, name: str, value: List[str]) -> None:
64564
+ self._name = name
64565
+ self._value = value
64566
+
64567
+ @builtins.property
64568
+ def name(self) -> str:
64569
+ return self._name
64570
+
64571
+ @builtins.property
64572
+ def value(self) -> List[str]:
64573
+ return self._value
64574
+
64575
+
64576
+ scout_internal_search_api_StringArrayField.__name__ = "StringArrayField"
64577
+ scout_internal_search_api_StringArrayField.__qualname__ = "StringArrayField"
64578
+ scout_internal_search_api_StringArrayField.__module__ = "nominal_api.scout_internal_search_api"
64579
+
64580
+
64489
64581
  class scout_internal_search_api_StringField(ConjureBeanType):
64490
64582
 
64491
64583
  @builtins.classmethod
@@ -66097,6 +66189,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66097
66189
  _label: Optional[str] = None
66098
66190
  _property: Optional["api_Property"] = None
66099
66191
  _asset_rid: Optional[str] = None
66192
+ _exact_asset_rids: Optional[List[str]] = None
66100
66193
  _author_rid: Optional[str] = None
66101
66194
  _run_rid: Optional[str] = None
66102
66195
  _notebook_type: Optional["scout_notebook_api_NotebookType"] = None
@@ -66114,6 +66207,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66114
66207
  'label': ConjureFieldDefinition('label', api_Label),
66115
66208
  'property': ConjureFieldDefinition('property', api_Property),
66116
66209
  'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
66210
+ 'exact_asset_rids': ConjureFieldDefinition('exactAssetRids', List[scout_rids_api_AssetRid]),
66117
66211
  'author_rid': ConjureFieldDefinition('authorRid', scout_rids_api_UserRid),
66118
66212
  'run_rid': ConjureFieldDefinition('runRid', scout_run_api_RunRid),
66119
66213
  'notebook_type': ConjureFieldDefinition('notebookType', scout_notebook_api_NotebookType),
@@ -66131,6 +66225,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66131
66225
  label: Optional[str] = None,
66132
66226
  property: Optional["api_Property"] = None,
66133
66227
  asset_rid: Optional[str] = None,
66228
+ exact_asset_rids: Optional[List[str]] = None,
66134
66229
  author_rid: Optional[str] = None,
66135
66230
  run_rid: Optional[str] = None,
66136
66231
  notebook_type: Optional["scout_notebook_api_NotebookType"] = None,
@@ -66140,7 +66235,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66140
66235
  type_of_union: Optional[str] = None
66141
66236
  ) -> None:
66142
66237
  if type_of_union is None:
66143
- if (and_ is not None) + (or_ is not None) + (exact_match is not None) + (search_text is not None) + (label is not None) + (property is not None) + (asset_rid is not None) + (author_rid is not None) + (run_rid is not None) + (notebook_type is not None) + (draft_state is not None) + (archived is not None) + (workspace is not None) != 1:
66238
+ if (and_ is not None) + (or_ is not None) + (exact_match is not None) + (search_text is not None) + (label is not None) + (property is not None) + (asset_rid is not None) + (exact_asset_rids is not None) + (author_rid is not None) + (run_rid is not None) + (notebook_type is not None) + (draft_state is not None) + (archived is not None) + (workspace is not None) != 1:
66144
66239
  raise ValueError('a union must contain a single member')
66145
66240
 
66146
66241
  if and_ is not None:
@@ -66164,6 +66259,9 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66164
66259
  if asset_rid is not None:
66165
66260
  self._asset_rid = asset_rid
66166
66261
  self._type = 'assetRid'
66262
+ if exact_asset_rids is not None:
66263
+ self._exact_asset_rids = exact_asset_rids
66264
+ self._type = 'exactAssetRids'
66167
66265
  if author_rid is not None:
66168
66266
  self._author_rid = author_rid
66169
66267
  self._type = 'authorRid'
@@ -66218,6 +66316,11 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66218
66316
  raise ValueError('a union value must not be None')
66219
66317
  self._asset_rid = asset_rid
66220
66318
  self._type = 'assetRid'
66319
+ elif type_of_union == 'exactAssetRids':
66320
+ if exact_asset_rids is None:
66321
+ raise ValueError('a union value must not be None')
66322
+ self._exact_asset_rids = exact_asset_rids
66323
+ self._type = 'exactAssetRids'
66221
66324
  elif type_of_union == 'authorRid':
66222
66325
  if author_rid is None:
66223
66326
  raise ValueError('a union value must not be None')
@@ -66280,6 +66383,14 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66280
66383
  def asset_rid(self) -> Optional[str]:
66281
66384
  return self._asset_rid
66282
66385
 
66386
+ @builtins.property
66387
+ def exact_asset_rids(self) -> Optional[List[str]]:
66388
+ """
66389
+ Requires the set of assets in the query to exactly match the set of assets in the notebook.
66390
+ To do a partial match, use an "and" on AssetRid queries.
66391
+ """
66392
+ return self._exact_asset_rids
66393
+
66283
66394
  @builtins.property
66284
66395
  def author_rid(self) -> Optional[str]:
66285
66396
  return self._author_rid
@@ -66321,6 +66432,8 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
66321
66432
  return visitor._property(self.property)
66322
66433
  if self._type == 'assetRid' and self.asset_rid is not None:
66323
66434
  return visitor._asset_rid(self.asset_rid)
66435
+ if self._type == 'exactAssetRids' and self.exact_asset_rids is not None:
66436
+ return visitor._exact_asset_rids(self.exact_asset_rids)
66324
66437
  if self._type == 'authorRid' and self.author_rid is not None:
66325
66438
  return visitor._author_rid(self.author_rid)
66326
66439
  if self._type == 'runRid' and self.run_rid is not None:
@@ -66370,6 +66483,10 @@ class scout_notebook_api_SearchNotebooksQueryVisitor:
66370
66483
  def _asset_rid(self, asset_rid: str) -> Any:
66371
66484
  pass
66372
66485
 
66486
+ @abstractmethod
66487
+ def _exact_asset_rids(self, exact_asset_rids: List[str]) -> Any:
66488
+ pass
66489
+
66373
66490
  @abstractmethod
66374
66491
  def _author_rid(self, author_rid: str) -> Any:
66375
66492
  pass
@@ -68658,6 +68775,8 @@ scout_run_api_SearchRunsWithDataReviewSummaryResponse.__module__ = "nominal_api.
68658
68775
 
68659
68776
  class scout_run_api_SortField(ConjureEnumType):
68660
68777
 
68778
+ NAME = 'NAME'
68779
+ '''NAME'''
68661
68780
  CREATED_AT = 'CREATED_AT'
68662
68781
  '''CREATED_AT'''
68663
68782
  START_TIME = 'START_TIME'
@@ -32,6 +32,7 @@ from .._impl import (
32
32
  ingest_api_FileExtractionInput as FileExtractionInput,
33
33
  ingest_api_FileFilter as FileFilter,
34
34
  ingest_api_FileFilterVisitor as FileFilterVisitor,
35
+ ingest_api_FileOutputFormat as FileOutputFormat,
35
36
  ingest_api_FileSuffix as FileSuffix,
36
37
  ingest_api_GcsIngestSource as GcsIngestSource,
37
38
  ingest_api_GetContainerizedExtractorsRequest as GetContainerizedExtractorsRequest,
@@ -6,6 +6,7 @@ from .._impl import (
6
6
  scout_internal_search_api_Operator as Operator,
7
7
  scout_internal_search_api_SearchQuery as SearchQuery,
8
8
  scout_internal_search_api_SearchQueryVisitor as SearchQueryVisitor,
9
+ scout_internal_search_api_StringArrayField as StringArrayField,
9
10
  scout_internal_search_api_StringField as StringField,
10
11
  scout_internal_search_api_TimestampField as TimestampField,
11
12
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.679.0
3
+ Version: 0.681.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<3,>=2.8.0
@@ -1,5 +1,5 @@
1
- nominal_api/__init__.py,sha256=vYbORryGzN8wKHzcN9rwwlpRwabVJ-gaBa1OvxYkOSc,1955
2
- nominal_api/_impl.py,sha256=3vRcYaiScoWpgvn2JVLTESOafYr7qBZSFAvHewDtP08,3157647
1
+ nominal_api/__init__.py,sha256=82jUXrR6k5wFQIi63f4fLCCyBUj65HZtZFIm03WNpzg,1955
2
+ nominal_api/_impl.py,sha256=NN7KGIDyjyCXWdTri_bkiP2DKECxiDpp-wtwMwx8eII,3162935
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=1oJPOuAMfV2uClPUW8Ie1nj2Y6j81TDpedcc3yUFTe0,1294
5
5
  nominal_api/api_ids/__init__.py,sha256=CAtt44XgNZEEUDv-BbEbYtuxQ8y1wqSZU-STjBYdZv8,80
@@ -15,7 +15,7 @@ nominal_api/datasource_logset/__init__.py,sha256=H3fNxqyYC490MwvdWbt5BwhgWQUev7u
15
15
  nominal_api/datasource_logset_api/__init__.py,sha256=JyjO1tQmG-HZ7kYMi8lSfeaaYddBZdCMIyqc0IUJfWo,1006
16
16
  nominal_api/datasource_pagination_api/__init__.py,sha256=3GO8TAUavOe6dUEitOhje74aSZHjTKVI5N1MNuct1lI,212
17
17
  nominal_api/event/__init__.py,sha256=0RHeL5Kc0IkA5yvhbfu1eKNpCG_GKQ9PwBf8zO1grss,1296
18
- nominal_api/ingest_api/__init__.py,sha256=jR-wxTvd8Z5ykeB7wYeBB-KG_vNZoadH16soayfkEHg,7438
18
+ nominal_api/ingest_api/__init__.py,sha256=pX6SuqdKC9Um0Rko2-EE04LyjOpaN8jAYDezl3LGAPw,7491
19
19
  nominal_api/ingest_workflow_api/__init__.py,sha256=Xvz7jXoK5k_zEWzGnMB9EB942T-yCpX3CNHq-rqewlg,2094
20
20
  nominal_api/persistent_compute_api/__init__.py,sha256=ThraDBJyYB5nFrbB6FZZpDoVAmsq8GAibiK0nu63MVA,2050
21
21
  nominal_api/scout/__init__.py,sha256=ip3XK_9jJKAoFiCifUVMTpDMiUE4mWIdGzMDu7LASus,324
@@ -42,7 +42,7 @@ nominal_api/scout_datasource_connection_api_influx/__init__.py,sha256=PeUZYnCR7I
42
42
  nominal_api/scout_favorites/__init__.py,sha256=qiOvaWVVl3O7tXZIq_NrCWFcMx-Q-H5sA_NpIc4TFVU,98
43
43
  nominal_api/scout_favorites_api/__init__.py,sha256=VOsTMNCQTHYxdYRzRlvEyli5b7Lo2BEnSNcWT2HA9uY,380
44
44
  nominal_api/scout_integrations_api/__init__.py,sha256=8iXeDLEbgMYEZz0dEZsvUj7v9JkuaaTdxkzS-ld8E0U,1432
45
- nominal_api/scout_internal_search_api/__init__.py,sha256=CF2YYZXkl95YkEgCbhqXSdAQ4ayPDDOJiCcyoFKOaA8,520
45
+ nominal_api/scout_internal_search_api/__init__.py,sha256=zSfj3VwnMZaPbzSKot14JE-sBnJSoTC8Y8BQF0TEDZo,588
46
46
  nominal_api/scout_jobs_api/__init__.py,sha256=_2ETRUShk1pestGAKzHwc69S-ililQRD4Y9JLD5qqZ4,146
47
47
  nominal_api/scout_layout_api/__init__.py,sha256=mKszV44ni9VODK9jFyY3O9YOV9DYltKJ20s91922EKc,1363
48
48
  nominal_api/scout_metadata/__init__.py,sha256=GIhWKJL2XSMB0iGaKfcGgmPHuvGWWmkK4lXSa1YsB44,332
@@ -72,7 +72,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=Q9iZHurmyDsJIFbUg-Eb
72
72
  nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
73
73
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
74
74
  nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
75
- nominal_api-0.679.0.dist-info/METADATA,sha256=vDcA9mgA-V0oDj7zbfDA9IXPMl7qBmoDleUOsMYhGXg,199
76
- nominal_api-0.679.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
77
- nominal_api-0.679.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
78
- nominal_api-0.679.0.dist-info/RECORD,,
75
+ nominal_api-0.681.0.dist-info/METADATA,sha256=j8HIN0TIXm6xq-yaioFgQLrLtldQ7z7nbCyNFGCb0k4,199
76
+ nominal_api-0.681.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
77
+ nominal_api-0.681.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
78
+ nominal_api-0.681.0.dist-info/RECORD,,