nominal-api 0.730.0__py3-none-any.whl → 0.731.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.17.0"
77
77
 
78
- __version__ = "0.730.0"
78
+ __version__ = "0.731.0"
79
79
 
nominal_api/_impl.py CHANGED
@@ -14518,6 +14518,63 @@ persistent_compute_api_InvalidComputationType.__qualname__ = "InvalidComputation
14518
14518
  persistent_compute_api_InvalidComputationType.__module__ = "nominal_api.persistent_compute_api"
14519
14519
 
14520
14520
 
14521
+ class persistent_compute_api_IsEnabledResponse(ConjureBeanType):
14522
+
14523
+ @builtins.classmethod
14524
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
14525
+ return {
14526
+ }
14527
+
14528
+ __slots__: List[str] = []
14529
+
14530
+
14531
+
14532
+ persistent_compute_api_IsEnabledResponse.__name__ = "IsEnabledResponse"
14533
+ persistent_compute_api_IsEnabledResponse.__qualname__ = "IsEnabledResponse"
14534
+ persistent_compute_api_IsEnabledResponse.__module__ = "nominal_api.persistent_compute_api"
14535
+
14536
+
14537
+ class persistent_compute_api_PersistentComputeService(Service):
14538
+ """Exposes a simple endpoints for checking whether or not persistent compute is enabled.
14539
+ """
14540
+
14541
+ def is_enabled(self, auth_header: str) -> "persistent_compute_api_IsEnabledResponse":
14542
+ """Simple "ping" like endpoint to see if the service is enabled (and available).
14543
+ """
14544
+ _conjure_encoder = ConjureEncoder()
14545
+
14546
+ _headers: Dict[str, Any] = {
14547
+ 'Accept': 'application/json',
14548
+ 'Authorization': auth_header,
14549
+ }
14550
+
14551
+ _params: Dict[str, Any] = {
14552
+ }
14553
+
14554
+ _path_params: Dict[str, str] = {
14555
+ }
14556
+
14557
+ _json: Any = None
14558
+
14559
+ _path = '/persistent-compute/enabled'
14560
+ _path = _path.format(**_path_params)
14561
+
14562
+ _response: Response = self._request(
14563
+ 'GET',
14564
+ self._uri + _path,
14565
+ params=_params,
14566
+ headers=_headers,
14567
+ json=_json)
14568
+
14569
+ _decoder = ConjureDecoder()
14570
+ return _decoder.decode(_response.json(), persistent_compute_api_IsEnabledResponse, self._return_none_for_unknown_union_types)
14571
+
14572
+
14573
+ persistent_compute_api_PersistentComputeService.__name__ = "PersistentComputeService"
14574
+ persistent_compute_api_PersistentComputeService.__qualname__ = "PersistentComputeService"
14575
+ persistent_compute_api_PersistentComputeService.__module__ = "nominal_api.persistent_compute_api"
14576
+
14577
+
14521
14578
  class persistent_compute_api_Ping(ConjureBeanType):
14522
14579
  """A ping can be sent by both client and server to keep the connection open and check that it is still working.
14523
14580
  The receiving end should send back a pong immediately.
@@ -23890,28 +23947,34 @@ scout_chartdefinition_api_DefaultFill.__module__ = "nominal_api.scout_chartdefin
23890
23947
 
23891
23948
  class scout_chartdefinition_api_DisconnectedValueVisualization(ConjureUnionType):
23892
23949
  _always_connect: Optional["scout_chartdefinition_api_AlwaysConnectDisconnectedValues"] = None
23950
+ _never: Optional["scout_chartdefinition_api_NeverConnectDisconnectedValues"] = None
23893
23951
  _threshold: Optional["scout_chartdefinition_api_ThresholdDisconnectedValues"] = None
23894
23952
 
23895
23953
  @builtins.classmethod
23896
23954
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
23897
23955
  return {
23898
23956
  'always_connect': ConjureFieldDefinition('alwaysConnect', scout_chartdefinition_api_AlwaysConnectDisconnectedValues),
23957
+ 'never': ConjureFieldDefinition('never', scout_chartdefinition_api_NeverConnectDisconnectedValues),
23899
23958
  'threshold': ConjureFieldDefinition('threshold', scout_chartdefinition_api_ThresholdDisconnectedValues)
23900
23959
  }
23901
23960
 
23902
23961
  def __init__(
23903
23962
  self,
23904
23963
  always_connect: Optional["scout_chartdefinition_api_AlwaysConnectDisconnectedValues"] = None,
23964
+ never: Optional["scout_chartdefinition_api_NeverConnectDisconnectedValues"] = None,
23905
23965
  threshold: Optional["scout_chartdefinition_api_ThresholdDisconnectedValues"] = None,
23906
23966
  type_of_union: Optional[str] = None
23907
23967
  ) -> None:
23908
23968
  if type_of_union is None:
23909
- if (always_connect is not None) + (threshold is not None) != 1:
23969
+ if (always_connect is not None) + (never is not None) + (threshold is not None) != 1:
23910
23970
  raise ValueError('a union must contain a single member')
23911
23971
 
23912
23972
  if always_connect is not None:
23913
23973
  self._always_connect = always_connect
23914
23974
  self._type = 'alwaysConnect'
23975
+ if never is not None:
23976
+ self._never = never
23977
+ self._type = 'never'
23915
23978
  if threshold is not None:
23916
23979
  self._threshold = threshold
23917
23980
  self._type = 'threshold'
@@ -23921,6 +23984,11 @@ class scout_chartdefinition_api_DisconnectedValueVisualization(ConjureUnionType)
23921
23984
  raise ValueError('a union value must not be None')
23922
23985
  self._always_connect = always_connect
23923
23986
  self._type = 'alwaysConnect'
23987
+ elif type_of_union == 'never':
23988
+ if never is None:
23989
+ raise ValueError('a union value must not be None')
23990
+ self._never = never
23991
+ self._type = 'never'
23924
23992
  elif type_of_union == 'threshold':
23925
23993
  if threshold is None:
23926
23994
  raise ValueError('a union value must not be None')
@@ -23931,6 +23999,10 @@ class scout_chartdefinition_api_DisconnectedValueVisualization(ConjureUnionType)
23931
23999
  def always_connect(self) -> Optional["scout_chartdefinition_api_AlwaysConnectDisconnectedValues"]:
23932
24000
  return self._always_connect
23933
24001
 
24002
+ @builtins.property
24003
+ def never(self) -> Optional["scout_chartdefinition_api_NeverConnectDisconnectedValues"]:
24004
+ return self._never
24005
+
23934
24006
  @builtins.property
23935
24007
  def threshold(self) -> Optional["scout_chartdefinition_api_ThresholdDisconnectedValues"]:
23936
24008
  return self._threshold
@@ -23940,6 +24012,8 @@ class scout_chartdefinition_api_DisconnectedValueVisualization(ConjureUnionType)
23940
24012
  raise ValueError('{} is not an instance of scout_chartdefinition_api_DisconnectedValueVisualizationVisitor'.format(visitor.__class__.__name__))
23941
24013
  if self._type == 'alwaysConnect' and self.always_connect is not None:
23942
24014
  return visitor._always_connect(self.always_connect)
24015
+ if self._type == 'never' and self.never is not None:
24016
+ return visitor._never(self.never)
23943
24017
  if self._type == 'threshold' and self.threshold is not None:
23944
24018
  return visitor._threshold(self.threshold)
23945
24019
 
@@ -23955,6 +24029,10 @@ class scout_chartdefinition_api_DisconnectedValueVisualizationVisitor:
23955
24029
  def _always_connect(self, always_connect: "scout_chartdefinition_api_AlwaysConnectDisconnectedValues") -> Any:
23956
24030
  pass
23957
24031
 
24032
+ @abstractmethod
24033
+ def _never(self, never: "scout_chartdefinition_api_NeverConnectDisconnectedValues") -> Any:
24034
+ pass
24035
+
23958
24036
  @abstractmethod
23959
24037
  def _threshold(self, threshold: "scout_chartdefinition_api_ThresholdDisconnectedValues") -> Any:
23960
24038
  pass
@@ -25310,6 +25388,24 @@ scout_chartdefinition_api_LogPanelDefinitionV1.__qualname__ = "LogPanelDefinitio
25310
25388
  scout_chartdefinition_api_LogPanelDefinitionV1.__module__ = "nominal_api.scout_chartdefinition_api"
25311
25389
 
25312
25390
 
25391
+ class scout_chartdefinition_api_NeverConnectDisconnectedValues(ConjureBeanType):
25392
+ """This option indicates that disconnected values are never connected with a line.
25393
+ """
25394
+
25395
+ @builtins.classmethod
25396
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
25397
+ return {
25398
+ }
25399
+
25400
+ __slots__: List[str] = []
25401
+
25402
+
25403
+
25404
+ scout_chartdefinition_api_NeverConnectDisconnectedValues.__name__ = "NeverConnectDisconnectedValues"
25405
+ scout_chartdefinition_api_NeverConnectDisconnectedValues.__qualname__ = "NeverConnectDisconnectedValues"
25406
+ scout_chartdefinition_api_NeverConnectDisconnectedValues.__module__ = "nominal_api.scout_chartdefinition_api"
25407
+
25408
+
25313
25409
  class scout_chartdefinition_api_NumberFormat(ConjureBeanType):
25314
25410
  """Number format for numeric cells, eg 1e4 | 10000 | 10,000.
25315
25411
  """
@@ -26183,7 +26279,8 @@ scout_chartdefinition_api_Threshold.__module__ = "nominal_api.scout_chartdefinit
26183
26279
 
26184
26280
 
26185
26281
  class scout_chartdefinition_api_ThresholdDisconnectedValues(ConjureBeanType):
26186
- """This option indicates the duration below which disconnected values will always be connected with a line.
26282
+ """NOTE this is deprecated and will be translated to NeverConnectDisconnectedValues by the frontend.
26283
+ This option indicates the duration below which disconnected values will always be connected with a line.
26187
26284
  """
26188
26285
 
26189
26286
  @builtins.classmethod
@@ -40022,6 +40119,32 @@ scout_compute_api_ErrorResult.__qualname__ = "ErrorResult"
40022
40119
  scout_compute_api_ErrorResult.__module__ = "nominal_api.scout_compute_api"
40023
40120
 
40024
40121
 
40122
+ class scout_compute_api_EventsSearchRanges(ConjureBeanType):
40123
+ """Produces a range series with a range for each event matching the query.
40124
+ Throws if there are more than 1,000 results.
40125
+ """
40126
+
40127
+ @builtins.classmethod
40128
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
40129
+ return {
40130
+ 'search_query': ConjureFieldDefinition('searchQuery', event_SearchQuery)
40131
+ }
40132
+
40133
+ __slots__: List[str] = ['_search_query']
40134
+
40135
+ def __init__(self, search_query: "event_SearchQuery") -> None:
40136
+ self._search_query = search_query
40137
+
40138
+ @builtins.property
40139
+ def search_query(self) -> "event_SearchQuery":
40140
+ return self._search_query
40141
+
40142
+
40143
+ scout_compute_api_EventsSearchRanges.__name__ = "EventsSearchRanges"
40144
+ scout_compute_api_EventsSearchRanges.__qualname__ = "EventsSearchRanges"
40145
+ scout_compute_api_EventsSearchRanges.__module__ = "nominal_api.scout_compute_api"
40146
+
40147
+
40025
40148
  class scout_compute_api_ExcludeNegativeValues(ConjureBeanType):
40026
40149
 
40027
40150
  @builtins.classmethod
@@ -42183,6 +42306,8 @@ class scout_compute_api_NumericAggregationFunction(ConjureEnumType):
42183
42306
  '''MAX'''
42184
42307
  COUNT = 'COUNT'
42185
42308
  '''COUNT'''
42309
+ STANDARD_DEVIATION = 'STANDARD_DEVIATION'
42310
+ '''STANDARD_DEVIATION'''
42186
42311
  UNKNOWN = 'UNKNOWN'
42187
42312
  '''UNKNOWN'''
42188
42313
 
@@ -44605,6 +44730,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44605
44730
  _duration_filter: Optional["scout_compute_api_DurationFilterRanges"] = None
44606
44731
  _enum_filter: Optional["scout_compute_api_EnumFilterRanges"] = None
44607
44732
  _enum_series_equality_ranges_node: Optional["scout_compute_api_EnumSeriesEqualityRanges"] = None
44733
+ _events_search: Optional["scout_compute_api_EventsSearchRanges"] = None
44608
44734
  _function: Optional["scout_compute_api_RangesFunction"] = None
44609
44735
  _intersect_range: Optional["scout_compute_api_IntersectRanges"] = None
44610
44736
  _literal_ranges: Optional["scout_compute_api_LiteralRanges"] = None
@@ -44628,6 +44754,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44628
44754
  'duration_filter': ConjureFieldDefinition('durationFilter', scout_compute_api_DurationFilterRanges),
44629
44755
  'enum_filter': ConjureFieldDefinition('enumFilter', scout_compute_api_EnumFilterRanges),
44630
44756
  'enum_series_equality_ranges_node': ConjureFieldDefinition('enumSeriesEqualityRangesNode', scout_compute_api_EnumSeriesEqualityRanges),
44757
+ 'events_search': ConjureFieldDefinition('eventsSearch', scout_compute_api_EventsSearchRanges),
44631
44758
  'function': ConjureFieldDefinition('function', scout_compute_api_RangesFunction),
44632
44759
  'intersect_range': ConjureFieldDefinition('intersectRange', scout_compute_api_IntersectRanges),
44633
44760
  'literal_ranges': ConjureFieldDefinition('literalRanges', scout_compute_api_LiteralRanges),
@@ -44651,6 +44778,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44651
44778
  duration_filter: Optional["scout_compute_api_DurationFilterRanges"] = None,
44652
44779
  enum_filter: Optional["scout_compute_api_EnumFilterRanges"] = None,
44653
44780
  enum_series_equality_ranges_node: Optional["scout_compute_api_EnumSeriesEqualityRanges"] = None,
44781
+ events_search: Optional["scout_compute_api_EventsSearchRanges"] = None,
44654
44782
  function: Optional["scout_compute_api_RangesFunction"] = None,
44655
44783
  intersect_range: Optional["scout_compute_api_IntersectRanges"] = None,
44656
44784
  literal_ranges: Optional["scout_compute_api_LiteralRanges"] = None,
@@ -44669,7 +44797,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44669
44797
  type_of_union: Optional[str] = None
44670
44798
  ) -> None:
44671
44799
  if type_of_union is None:
44672
- if (approximate_threshold is not None) + (duration_filter is not None) + (enum_filter is not None) + (enum_series_equality_ranges_node is not None) + (function is not None) + (intersect_range is not None) + (literal_ranges is not None) + (min_max_threshold is not None) + (not_ is not None) + (on_change is not None) + (peak is not None) + (range_numeric_aggregation is not None) + (raw is not None) + (series_crossover_ranges_node is not None) + (series_equality_ranges_node is not None) + (stability_detection is not None) + (stale_range is not None) + (threshold is not None) + (union_range is not None) != 1:
44800
+ if (approximate_threshold is not None) + (duration_filter is not None) + (enum_filter is not None) + (enum_series_equality_ranges_node is not None) + (events_search is not None) + (function is not None) + (intersect_range is not None) + (literal_ranges is not None) + (min_max_threshold is not None) + (not_ is not None) + (on_change is not None) + (peak is not None) + (range_numeric_aggregation is not None) + (raw is not None) + (series_crossover_ranges_node is not None) + (series_equality_ranges_node is not None) + (stability_detection is not None) + (stale_range is not None) + (threshold is not None) + (union_range is not None) != 1:
44673
44801
  raise ValueError('a union must contain a single member')
44674
44802
 
44675
44803
  if approximate_threshold is not None:
@@ -44684,6 +44812,9 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44684
44812
  if enum_series_equality_ranges_node is not None:
44685
44813
  self._enum_series_equality_ranges_node = enum_series_equality_ranges_node
44686
44814
  self._type = 'enumSeriesEqualityRangesNode'
44815
+ if events_search is not None:
44816
+ self._events_search = events_search
44817
+ self._type = 'eventsSearch'
44687
44818
  if function is not None:
44688
44819
  self._function = function
44689
44820
  self._type = 'function'
@@ -44750,6 +44881,11 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44750
44881
  raise ValueError('a union value must not be None')
44751
44882
  self._enum_series_equality_ranges_node = enum_series_equality_ranges_node
44752
44883
  self._type = 'enumSeriesEqualityRangesNode'
44884
+ elif type_of_union == 'eventsSearch':
44885
+ if events_search is None:
44886
+ raise ValueError('a union value must not be None')
44887
+ self._events_search = events_search
44888
+ self._type = 'eventsSearch'
44753
44889
  elif type_of_union == 'function':
44754
44890
  if function is None:
44755
44891
  raise ValueError('a union value must not be None')
@@ -44842,6 +44978,10 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44842
44978
  def enum_series_equality_ranges_node(self) -> Optional["scout_compute_api_EnumSeriesEqualityRanges"]:
44843
44979
  return self._enum_series_equality_ranges_node
44844
44980
 
44981
+ @builtins.property
44982
+ def events_search(self) -> Optional["scout_compute_api_EventsSearchRanges"]:
44983
+ return self._events_search
44984
+
44845
44985
  @builtins.property
44846
44986
  def function(self) -> Optional["scout_compute_api_RangesFunction"]:
44847
44987
  return self._function
@@ -44917,6 +45057,8 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
44917
45057
  return visitor._enum_filter(self.enum_filter)
44918
45058
  if self._type == 'enumSeriesEqualityRangesNode' and self.enum_series_equality_ranges_node is not None:
44919
45059
  return visitor._enum_series_equality_ranges_node(self.enum_series_equality_ranges_node)
45060
+ if self._type == 'eventsSearch' and self.events_search is not None:
45061
+ return visitor._events_search(self.events_search)
44920
45062
  if self._type == 'function' and self.function is not None:
44921
45063
  return visitor._function(self.function)
44922
45064
  if self._type == 'intersectRange' and self.intersect_range is not None:
@@ -44972,6 +45114,10 @@ class scout_compute_api_RangeSeriesVisitor:
44972
45114
  def _enum_series_equality_ranges_node(self, enum_series_equality_ranges_node: "scout_compute_api_EnumSeriesEqualityRanges") -> Any:
44973
45115
  pass
44974
45116
 
45117
+ @abstractmethod
45118
+ def _events_search(self, events_search: "scout_compute_api_EventsSearchRanges") -> Any:
45119
+ pass
45120
+
44975
45121
  @abstractmethod
44976
45122
  def _function(self, function: "scout_compute_api_RangesFunction") -> Any:
44977
45123
  pass
@@ -11,7 +11,9 @@ from .._impl import (
11
11
  persistent_compute_api_HealthMessage as HealthMessage,
12
12
  persistent_compute_api_HealthMessageVisitor as HealthMessageVisitor,
13
13
  persistent_compute_api_InvalidComputationType as InvalidComputationType,
14
+ persistent_compute_api_IsEnabledResponse as IsEnabledResponse,
14
15
  persistent_compute_api_Milliseconds as Milliseconds,
16
+ persistent_compute_api_PersistentComputeService as PersistentComputeService,
15
17
  persistent_compute_api_Ping as Ping,
16
18
  persistent_compute_api_Pong as Pong,
17
19
  persistent_compute_api_ServerMessage as ServerMessage,
@@ -44,6 +46,7 @@ __all__ = [
44
46
  'HealthMessage',
45
47
  'HealthMessageVisitor',
46
48
  'InvalidComputationType',
49
+ 'IsEnabledResponse',
47
50
  'Milliseconds',
48
51
  'Ping',
49
52
  'Pong',
@@ -63,5 +66,6 @@ __all__ = [
63
66
  'SubscriptionUpdateVisitor',
64
67
  'SubscriptionUpdateError',
65
68
  'SubscriptionUpdateMessage',
69
+ 'PersistentComputeService',
66
70
  ]
67
71
 
@@ -72,6 +72,7 @@ from .._impl import (
72
72
  scout_chartdefinition_api_LogPanelDefinitionV1 as LogPanelDefinitionV1,
73
73
  scout_chartdefinition_api_LogPanelDefinitionVisitor as LogPanelDefinitionVisitor,
74
74
  scout_chartdefinition_api_LogTagFilter as LogTagFilter,
75
+ scout_chartdefinition_api_NeverConnectDisconnectedValues as NeverConnectDisconnectedValues,
75
76
  scout_chartdefinition_api_NumberFormat as NumberFormat,
76
77
  scout_chartdefinition_api_NumberFormatDisplayOption as NumberFormatDisplayOption,
77
78
  scout_chartdefinition_api_NumericBarGaugeVisualisation as NumericBarGaugeVisualisation,
@@ -219,6 +220,7 @@ __all__ = [
219
220
  'LogPanelDefinitionVisitor',
220
221
  'LogPanelDefinitionV1',
221
222
  'LogTagFilter',
223
+ 'NeverConnectDisconnectedValues',
222
224
  'NumberFormat',
223
225
  'NumberFormatDisplayOption',
224
226
  'NumericBarGaugeVisualisation',
@@ -113,6 +113,7 @@ from .._impl import (
113
113
  scout_compute_api_ErrorCode as ErrorCode,
114
114
  scout_compute_api_ErrorResult as ErrorResult,
115
115
  scout_compute_api_ErrorType as ErrorType,
116
+ scout_compute_api_EventsSearchRanges as EventsSearchRanges,
116
117
  scout_compute_api_ExcludeNegativeValues as ExcludeNegativeValues,
117
118
  scout_compute_api_ExponentialCurve as ExponentialCurve,
118
119
  scout_compute_api_ExponentialResultDetails as ExponentialResultDetails,
@@ -432,6 +433,7 @@ __all__ = [
432
433
  'ErrorCode',
433
434
  'ErrorResult',
434
435
  'ErrorType',
436
+ 'EventsSearchRanges',
435
437
  'ExcludeNegativeValues',
436
438
  'ExponentialCurve',
437
439
  'ExponentialResultDetails',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.730.0
3
+ Version: 0.731.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<4,>=2.8.0
@@ -1,5 +1,5 @@
1
- nominal_api/__init__.py,sha256=7YnLSIHoPRP2SUEKwtpKPG0BzxeYBnj_uCGlZj-0fPs,1956
2
- nominal_api/_impl.py,sha256=3jydt-Qo5a2BAnwYRWtZpTX2HDNfRbh0uoYlr5WBNf0,3293297
1
+ nominal_api/__init__.py,sha256=ZpKn7F5eopj6TiB8Wg6o6D6nMrtoDGJOflbguAq5prU,1956
2
+ nominal_api/_impl.py,sha256=Y61nRIzSsN7-1UlHIFmQadTXj_3GOM4og8pBpR6tmd8,3298911
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=PMREKP7UhxJ1_gHkrlJET46qlDHksKMm6-woR1p6WnU,1970
5
5
  nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
@@ -17,7 +17,7 @@ nominal_api/datasource_pagination_api/__init__.py,sha256=WeENj6yqi2XfInU8YgjFwqw
17
17
  nominal_api/event/__init__.py,sha256=t5q8N5ozj3tHwRVhwtL6kwu-1-FMIoTGJT1RX75pwZM,2830
18
18
  nominal_api/ingest_api/__init__.py,sha256=qEn3BJXMbdRSVFG55Dpp4RnOOSPwUMJ9iRscz9wyyCk,11159
19
19
  nominal_api/ingest_workflow_api/__init__.py,sha256=lTCb7s4VCrpur0TDpTy_EDvUdHJ4UKqcTv8MYiEeeko,2954
20
- nominal_api/persistent_compute_api/__init__.py,sha256=g_sUmgWIHWs7O9LOppSfO7p7BxhJjJ74BFBTum2vPHg,3109
20
+ nominal_api/persistent_compute_api/__init__.py,sha256=bOWBiRLJbl3winMP9EowCUpPpRIUYyejua3059wJWQk,3314
21
21
  nominal_api/scout/__init__.py,sha256=dZzrrqBeio2l0txhlNoHSfv6QsA9a3EVDp0_XpubUGk,481
22
22
  nominal_api/scout_api/__init__.py,sha256=MBFasDkc62-_Zqi-p6baBbtfvvhq_1bs0f5RuC5LdPM,865
23
23
  nominal_api/scout_asset_api/__init__.py,sha256=MsYetuKhCzWW4ccPCthOXbfN6AjwTKyGCN0C9XlwPIU,3361
@@ -25,12 +25,12 @@ nominal_api/scout_assets/__init__.py,sha256=1ZyiolDjhxnrhyeUxW_KyeQ_q-6stlqd1I2d
25
25
  nominal_api/scout_catalog/__init__.py,sha256=HQ20iWT-Cw2_ch5OqcUl7OwdeB3uHP5o0xivTpOfvFI,4519
26
26
  nominal_api/scout_channelvariables_api/__init__.py,sha256=Wahkyy-m3gEcaRFYU5ZV3beW-W4OeYnOs9Y4eirQO38,1033
27
27
  nominal_api/scout_chart_api/__init__.py,sha256=hkNhoFOmPYnLFeINiQXqya78wbAsx65DoKU0TpUwhQo,261
28
- nominal_api/scout_chartdefinition_api/__init__.py,sha256=ZtdYKz9tDKZMaiTfHVkrz2VPcusKi5gH7mgry5NzaF0,15109
28
+ nominal_api/scout_chartdefinition_api/__init__.py,sha256=TYUknA2CkKRkHqolHKSoBR14XEQHEij_xc7zgLaafB4,15243
29
29
  nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHrNDiFdqaWaQeGb6TQxuox-1c,4892
30
30
  nominal_api/scout_checks_api/__init__.py,sha256=sxTv9ZL2rnXCaR7wVRNafqIPIzBbIPDGiJdYAr-VSV0,7317
31
31
  nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=RpTvc8WqNxOuDSXWs-xV3MSSFIoIy8Fj3eaIDCVygvU,6215
32
32
  nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
33
- nominal_api/scout_compute_api/__init__.py,sha256=D4nmK7psjwKnsNrOJ5UnTD3yrUVS6_ZppGht77LT-zI,28714
33
+ nominal_api/scout_compute_api/__init__.py,sha256=s2b6HSWdVdkHrYzcAIq48oJz5pJI-6XlWAE2l5YrdX0,28804
34
34
  nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
35
35
  nominal_api/scout_compute_resolved_api/__init__.py,sha256=lmFIeizsp3CjOdAUlmo1P_7m3UJhVxU7K_T0m8gT03I,15625
36
36
  nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
@@ -72,7 +72,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
72
72
  nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
73
73
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
74
74
  nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
75
- nominal_api-0.730.0.dist-info/METADATA,sha256=HZLGxt-3YL1EgipSgnhHnJQC46T-nfJ6ikIRT5DxgTw,199
76
- nominal_api-0.730.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
77
- nominal_api-0.730.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
78
- nominal_api-0.730.0.dist-info/RECORD,,
75
+ nominal_api-0.731.0.dist-info/METADATA,sha256=iPSQapCzRftiIeDx46R0MHC8DGmxmk0msG8GNTJnJDU,199
76
+ nominal_api-0.731.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
77
+ nominal_api-0.731.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
78
+ nominal_api-0.731.0.dist-info/RECORD,,