nominal-api 0.562.0__py3-none-any.whl → 0.563.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 +1 -1
- nominal_api/_impl.py +25 -105
- nominal_api/scout_compute_resolved_api/__init__.py +1 -2
- {nominal_api-0.562.0.dist-info → nominal_api-0.563.0.dist-info}/METADATA +1 -1
- {nominal_api-0.562.0.dist-info → nominal_api-0.563.0.dist-info}/RECORD +7 -7
- {nominal_api-0.562.0.dist-info → nominal_api-0.563.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.562.0.dist-info → nominal_api-0.563.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -42822,22 +42822,20 @@ scout_compute_resolved_api_LatLongGeoNode.__qualname__ = "LatLongGeoNode"
|
|
|
42822
42822
|
scout_compute_resolved_api_LatLongGeoNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
42823
42823
|
|
|
42824
42824
|
|
|
42825
|
-
class
|
|
42825
|
+
class scout_compute_resolved_api_LogFilterSeriesNode(ConjureBeanType):
|
|
42826
42826
|
|
|
42827
42827
|
@builtins.classmethod
|
|
42828
42828
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
42829
42829
|
return {
|
|
42830
42830
|
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_LogSeriesNode),
|
|
42831
|
-
'operator': ConjureFieldDefinition('operator', scout_compute_api_LogFilterOperator)
|
|
42832
|
-
'persistence_window_configuration': ConjureFieldDefinition('persistenceWindowConfiguration', OptionalTypeWrapper[scout_compute_resolved_api_PersistenceWindowConfiguration])
|
|
42831
|
+
'operator': ConjureFieldDefinition('operator', scout_compute_api_LogFilterOperator)
|
|
42833
42832
|
}
|
|
42834
42833
|
|
|
42835
|
-
__slots__: List[str] = ['_input', '_operator'
|
|
42834
|
+
__slots__: List[str] = ['_input', '_operator']
|
|
42836
42835
|
|
|
42837
|
-
def __init__(self, input: "scout_compute_resolved_api_LogSeriesNode", operator: "scout_compute_api_LogFilterOperator"
|
|
42836
|
+
def __init__(self, input: "scout_compute_resolved_api_LogSeriesNode", operator: "scout_compute_api_LogFilterOperator") -> None:
|
|
42838
42837
|
self._input = input
|
|
42839
42838
|
self._operator = operator
|
|
42840
|
-
self._persistence_window_configuration = persistence_window_configuration
|
|
42841
42839
|
|
|
42842
42840
|
@builtins.property
|
|
42843
42841
|
def input(self) -> "scout_compute_resolved_api_LogSeriesNode":
|
|
@@ -42847,52 +42845,16 @@ class scout_compute_resolved_api_LogFilterRangesNode(ConjureBeanType):
|
|
|
42847
42845
|
def operator(self) -> "scout_compute_api_LogFilterOperator":
|
|
42848
42846
|
return self._operator
|
|
42849
42847
|
|
|
42850
|
-
@builtins.property
|
|
42851
|
-
def persistence_window_configuration(self) -> Optional["scout_compute_resolved_api_PersistenceWindowConfiguration"]:
|
|
42852
|
-
return self._persistence_window_configuration
|
|
42853
|
-
|
|
42854
|
-
|
|
42855
|
-
scout_compute_resolved_api_LogFilterRangesNode.__name__ = "LogFilterRangesNode"
|
|
42856
|
-
scout_compute_resolved_api_LogFilterRangesNode.__qualname__ = "LogFilterRangesNode"
|
|
42857
|
-
scout_compute_resolved_api_LogFilterRangesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
42858
|
-
|
|
42859
|
-
|
|
42860
|
-
class scout_compute_resolved_api_LogFilterTransformationSeriesNode(ConjureBeanType):
|
|
42861
|
-
"""
|
|
42862
|
-
Outputs the values of the log plot value within the ranges specified by a ranges node
|
|
42863
|
-
"""
|
|
42864
|
-
|
|
42865
|
-
@builtins.classmethod
|
|
42866
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
42867
|
-
return {
|
|
42868
|
-
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_LogSeriesNode),
|
|
42869
|
-
'filter': ConjureFieldDefinition('filter', scout_compute_resolved_api_RangesNode)
|
|
42870
|
-
}
|
|
42871
|
-
|
|
42872
|
-
__slots__: List[str] = ['_input', '_filter']
|
|
42873
|
-
|
|
42874
|
-
def __init__(self, filter: "scout_compute_resolved_api_RangesNode", input: "scout_compute_resolved_api_LogSeriesNode") -> None:
|
|
42875
|
-
self._input = input
|
|
42876
|
-
self._filter = filter
|
|
42877
|
-
|
|
42878
|
-
@builtins.property
|
|
42879
|
-
def input(self) -> "scout_compute_resolved_api_LogSeriesNode":
|
|
42880
|
-
return self._input
|
|
42881
|
-
|
|
42882
|
-
@builtins.property
|
|
42883
|
-
def filter(self) -> "scout_compute_resolved_api_RangesNode":
|
|
42884
|
-
return self._filter
|
|
42885
|
-
|
|
42886
42848
|
|
|
42887
|
-
|
|
42888
|
-
|
|
42889
|
-
|
|
42849
|
+
scout_compute_resolved_api_LogFilterSeriesNode.__name__ = "LogFilterSeriesNode"
|
|
42850
|
+
scout_compute_resolved_api_LogFilterSeriesNode.__qualname__ = "LogFilterSeriesNode"
|
|
42851
|
+
scout_compute_resolved_api_LogFilterSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
42890
42852
|
|
|
42891
42853
|
|
|
42892
42854
|
class scout_compute_resolved_api_LogSeriesNode(ConjureUnionType):
|
|
42893
42855
|
_raw: Optional["scout_compute_resolved_api_RawLogSeriesNode"] = None
|
|
42894
42856
|
_union: Optional["scout_compute_resolved_api_LogUnionSeriesNode"] = None
|
|
42895
|
-
|
|
42857
|
+
_filter: Optional["scout_compute_resolved_api_LogFilterSeriesNode"] = None
|
|
42896
42858
|
_time_shift: Optional["scout_compute_resolved_api_LogTimeShiftSeriesNode"] = None
|
|
42897
42859
|
|
|
42898
42860
|
@builtins.classmethod
|
|
@@ -42900,7 +42862,7 @@ class scout_compute_resolved_api_LogSeriesNode(ConjureUnionType):
|
|
|
42900
42862
|
return {
|
|
42901
42863
|
'raw': ConjureFieldDefinition('raw', scout_compute_resolved_api_RawLogSeriesNode),
|
|
42902
42864
|
'union': ConjureFieldDefinition('union', scout_compute_resolved_api_LogUnionSeriesNode),
|
|
42903
|
-
'
|
|
42865
|
+
'filter': ConjureFieldDefinition('filter', scout_compute_resolved_api_LogFilterSeriesNode),
|
|
42904
42866
|
'time_shift': ConjureFieldDefinition('timeShift', scout_compute_resolved_api_LogTimeShiftSeriesNode)
|
|
42905
42867
|
}
|
|
42906
42868
|
|
|
@@ -42908,12 +42870,12 @@ class scout_compute_resolved_api_LogSeriesNode(ConjureUnionType):
|
|
|
42908
42870
|
self,
|
|
42909
42871
|
raw: Optional["scout_compute_resolved_api_RawLogSeriesNode"] = None,
|
|
42910
42872
|
union: Optional["scout_compute_resolved_api_LogUnionSeriesNode"] = None,
|
|
42911
|
-
|
|
42873
|
+
filter: Optional["scout_compute_resolved_api_LogFilterSeriesNode"] = None,
|
|
42912
42874
|
time_shift: Optional["scout_compute_resolved_api_LogTimeShiftSeriesNode"] = None,
|
|
42913
42875
|
type_of_union: Optional[str] = None
|
|
42914
42876
|
) -> None:
|
|
42915
42877
|
if type_of_union is None:
|
|
42916
|
-
if (raw is not None) + (union is not None) + (
|
|
42878
|
+
if (raw is not None) + (union is not None) + (filter is not None) + (time_shift is not None) != 1:
|
|
42917
42879
|
raise ValueError('a union must contain a single member')
|
|
42918
42880
|
|
|
42919
42881
|
if raw is not None:
|
|
@@ -42922,9 +42884,9 @@ class scout_compute_resolved_api_LogSeriesNode(ConjureUnionType):
|
|
|
42922
42884
|
if union is not None:
|
|
42923
42885
|
self._union = union
|
|
42924
42886
|
self._type = 'union'
|
|
42925
|
-
if
|
|
42926
|
-
self.
|
|
42927
|
-
self._type = '
|
|
42887
|
+
if filter is not None:
|
|
42888
|
+
self._filter = filter
|
|
42889
|
+
self._type = 'filter'
|
|
42928
42890
|
if time_shift is not None:
|
|
42929
42891
|
self._time_shift = time_shift
|
|
42930
42892
|
self._type = 'timeShift'
|
|
@@ -42939,11 +42901,11 @@ class scout_compute_resolved_api_LogSeriesNode(ConjureUnionType):
|
|
|
42939
42901
|
raise ValueError('a union value must not be None')
|
|
42940
42902
|
self._union = union
|
|
42941
42903
|
self._type = 'union'
|
|
42942
|
-
elif type_of_union == '
|
|
42943
|
-
if
|
|
42904
|
+
elif type_of_union == 'filter':
|
|
42905
|
+
if filter is None:
|
|
42944
42906
|
raise ValueError('a union value must not be None')
|
|
42945
|
-
self.
|
|
42946
|
-
self._type = '
|
|
42907
|
+
self._filter = filter
|
|
42908
|
+
self._type = 'filter'
|
|
42947
42909
|
elif type_of_union == 'timeShift':
|
|
42948
42910
|
if time_shift is None:
|
|
42949
42911
|
raise ValueError('a union value must not be None')
|
|
@@ -42959,8 +42921,8 @@ class scout_compute_resolved_api_LogSeriesNode(ConjureUnionType):
|
|
|
42959
42921
|
return self._union
|
|
42960
42922
|
|
|
42961
42923
|
@builtins.property
|
|
42962
|
-
def
|
|
42963
|
-
return self.
|
|
42924
|
+
def filter(self) -> Optional["scout_compute_resolved_api_LogFilterSeriesNode"]:
|
|
42925
|
+
return self._filter
|
|
42964
42926
|
|
|
42965
42927
|
@builtins.property
|
|
42966
42928
|
def time_shift(self) -> Optional["scout_compute_resolved_api_LogTimeShiftSeriesNode"]:
|
|
@@ -42973,8 +42935,8 @@ class scout_compute_resolved_api_LogSeriesNode(ConjureUnionType):
|
|
|
42973
42935
|
return visitor._raw(self.raw)
|
|
42974
42936
|
if self._type == 'union' and self.union is not None:
|
|
42975
42937
|
return visitor._union(self.union)
|
|
42976
|
-
if self._type == '
|
|
42977
|
-
return visitor.
|
|
42938
|
+
if self._type == 'filter' and self.filter is not None:
|
|
42939
|
+
return visitor._filter(self.filter)
|
|
42978
42940
|
if self._type == 'timeShift' and self.time_shift is not None:
|
|
42979
42941
|
return visitor._time_shift(self.time_shift)
|
|
42980
42942
|
|
|
@@ -42995,7 +42957,7 @@ class scout_compute_resolved_api_LogSeriesNodeVisitor:
|
|
|
42995
42957
|
pass
|
|
42996
42958
|
|
|
42997
42959
|
@abstractmethod
|
|
42998
|
-
def
|
|
42960
|
+
def _filter(self, filter: "scout_compute_resolved_api_LogFilterSeriesNode") -> Any:
|
|
42999
42961
|
pass
|
|
43000
42962
|
|
|
43001
42963
|
@abstractmethod
|
|
@@ -44281,7 +44243,6 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44281
44243
|
_enum_filter: Optional["scout_compute_resolved_api_EnumFilterRangesNode"] = None
|
|
44282
44244
|
_extrema: Optional["scout_compute_resolved_api_ExtremaRangesNode"] = None
|
|
44283
44245
|
_intersect_range: Optional["scout_compute_resolved_api_IntersectRangesNode"] = None
|
|
44284
|
-
_log_filter: Optional["scout_compute_resolved_api_LogFilterRangesNode"] = None
|
|
44285
44246
|
_min_max_threshold: Optional["scout_compute_resolved_api_MinMaxThresholdRangesNode"] = None
|
|
44286
44247
|
_not_: Optional["scout_compute_resolved_api_NotRangesNode"] = None
|
|
44287
44248
|
_on_change: Optional["scout_compute_resolved_api_OnChangeRangesNode"] = None
|
|
@@ -44299,7 +44260,6 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44299
44260
|
'enum_filter': ConjureFieldDefinition('enumFilter', scout_compute_resolved_api_EnumFilterRangesNode),
|
|
44300
44261
|
'extrema': ConjureFieldDefinition('extrema', scout_compute_resolved_api_ExtremaRangesNode),
|
|
44301
44262
|
'intersect_range': ConjureFieldDefinition('intersectRange', scout_compute_resolved_api_IntersectRangesNode),
|
|
44302
|
-
'log_filter': ConjureFieldDefinition('logFilter', scout_compute_resolved_api_LogFilterRangesNode),
|
|
44303
44263
|
'min_max_threshold': ConjureFieldDefinition('minMaxThreshold', scout_compute_resolved_api_MinMaxThresholdRangesNode),
|
|
44304
44264
|
'not_': ConjureFieldDefinition('not', scout_compute_resolved_api_NotRangesNode),
|
|
44305
44265
|
'on_change': ConjureFieldDefinition('onChange', scout_compute_resolved_api_OnChangeRangesNode),
|
|
@@ -44317,7 +44277,6 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44317
44277
|
enum_filter: Optional["scout_compute_resolved_api_EnumFilterRangesNode"] = None,
|
|
44318
44278
|
extrema: Optional["scout_compute_resolved_api_ExtremaRangesNode"] = None,
|
|
44319
44279
|
intersect_range: Optional["scout_compute_resolved_api_IntersectRangesNode"] = None,
|
|
44320
|
-
log_filter: Optional["scout_compute_resolved_api_LogFilterRangesNode"] = None,
|
|
44321
44280
|
min_max_threshold: Optional["scout_compute_resolved_api_MinMaxThresholdRangesNode"] = None,
|
|
44322
44281
|
not_: Optional["scout_compute_resolved_api_NotRangesNode"] = None,
|
|
44323
44282
|
on_change: Optional["scout_compute_resolved_api_OnChangeRangesNode"] = None,
|
|
@@ -44330,7 +44289,7 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44330
44289
|
type_of_union: Optional[str] = None
|
|
44331
44290
|
) -> None:
|
|
44332
44291
|
if type_of_union is None:
|
|
44333
|
-
if (enum_equality is not None) + (enum_filter is not None) + (extrema is not None) + (intersect_range is not None) + (
|
|
44292
|
+
if (enum_equality is not None) + (enum_filter is not None) + (extrema is not None) + (intersect_range is not None) + (min_max_threshold is not None) + (not_ is not None) + (on_change is not None) + (range_numeric_aggregation is not None) + (series_crossover_ranges_node is not None) + (stale_range is not None) + (stability_detection is not None) + (threshold is not None) + (union_range is not None) != 1:
|
|
44334
44293
|
raise ValueError('a union must contain a single member')
|
|
44335
44294
|
|
|
44336
44295
|
if enum_equality is not None:
|
|
@@ -44345,9 +44304,6 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44345
44304
|
if intersect_range is not None:
|
|
44346
44305
|
self._intersect_range = intersect_range
|
|
44347
44306
|
self._type = 'intersectRange'
|
|
44348
|
-
if log_filter is not None:
|
|
44349
|
-
self._log_filter = log_filter
|
|
44350
|
-
self._type = 'logFilter'
|
|
44351
44307
|
if min_max_threshold is not None:
|
|
44352
44308
|
self._min_max_threshold = min_max_threshold
|
|
44353
44309
|
self._type = 'minMaxThreshold'
|
|
@@ -44396,11 +44352,6 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44396
44352
|
raise ValueError('a union value must not be None')
|
|
44397
44353
|
self._intersect_range = intersect_range
|
|
44398
44354
|
self._type = 'intersectRange'
|
|
44399
|
-
elif type_of_union == 'logFilter':
|
|
44400
|
-
if log_filter is None:
|
|
44401
|
-
raise ValueError('a union value must not be None')
|
|
44402
|
-
self._log_filter = log_filter
|
|
44403
|
-
self._type = 'logFilter'
|
|
44404
44355
|
elif type_of_union == 'minMaxThreshold':
|
|
44405
44356
|
if min_max_threshold is None:
|
|
44406
44357
|
raise ValueError('a union value must not be None')
|
|
@@ -44463,10 +44414,6 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44463
44414
|
def intersect_range(self) -> Optional["scout_compute_resolved_api_IntersectRangesNode"]:
|
|
44464
44415
|
return self._intersect_range
|
|
44465
44416
|
|
|
44466
|
-
@builtins.property
|
|
44467
|
-
def log_filter(self) -> Optional["scout_compute_resolved_api_LogFilterRangesNode"]:
|
|
44468
|
-
return self._log_filter
|
|
44469
|
-
|
|
44470
44417
|
@builtins.property
|
|
44471
44418
|
def min_max_threshold(self) -> Optional["scout_compute_resolved_api_MinMaxThresholdRangesNode"]:
|
|
44472
44419
|
return self._min_max_threshold
|
|
@@ -44514,8 +44461,6 @@ class scout_compute_resolved_api_RangesNode(ConjureUnionType):
|
|
|
44514
44461
|
return visitor._extrema(self.extrema)
|
|
44515
44462
|
if self._type == 'intersectRange' and self.intersect_range is not None:
|
|
44516
44463
|
return visitor._intersect_range(self.intersect_range)
|
|
44517
|
-
if self._type == 'logFilter' and self.log_filter is not None:
|
|
44518
|
-
return visitor._log_filter(self.log_filter)
|
|
44519
44464
|
if self._type == 'minMaxThreshold' and self.min_max_threshold is not None:
|
|
44520
44465
|
return visitor._min_max_threshold(self.min_max_threshold)
|
|
44521
44466
|
if self._type == 'not' and self.not_ is not None:
|
|
@@ -44559,10 +44504,6 @@ class scout_compute_resolved_api_RangesNodeVisitor:
|
|
|
44559
44504
|
def _intersect_range(self, intersect_range: "scout_compute_resolved_api_IntersectRangesNode") -> Any:
|
|
44560
44505
|
pass
|
|
44561
44506
|
|
|
44562
|
-
@abstractmethod
|
|
44563
|
-
def _log_filter(self, log_filter: "scout_compute_resolved_api_LogFilterRangesNode") -> Any:
|
|
44564
|
-
pass
|
|
44565
|
-
|
|
44566
44507
|
@abstractmethod
|
|
44567
44508
|
def _min_max_threshold(self, min_max_threshold: "scout_compute_resolved_api_MinMaxThresholdRangesNode") -> Any:
|
|
44568
44509
|
pass
|
|
@@ -63428,48 +63369,33 @@ class scout_video_api_SegmentTimestamps(ConjureUnionType):
|
|
|
63428
63369
|
be frame-mapped. Without a frame-timestamp mapping manifest file, a list of absolute timestamps will be
|
|
63429
63370
|
automatically assigned to each segment based on media timestamps.. Otherwise, media timestamps will be
|
|
63430
63371
|
extracted and mapped to those in the provided manifest."""
|
|
63431
|
-
_timestamps: Optional[List["api_Timestamp"]] = None
|
|
63432
63372
|
_timestamp_mappings: Optional["scout_video_api_TimestampMappings"] = None
|
|
63433
63373
|
|
|
63434
63374
|
@builtins.classmethod
|
|
63435
63375
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
63436
63376
|
return {
|
|
63437
|
-
'timestamps': ConjureFieldDefinition('timestamps', List[api_Timestamp]),
|
|
63438
63377
|
'timestamp_mappings': ConjureFieldDefinition('timestampMappings', scout_video_api_TimestampMappings)
|
|
63439
63378
|
}
|
|
63440
63379
|
|
|
63441
63380
|
def __init__(
|
|
63442
63381
|
self,
|
|
63443
|
-
timestamps: Optional[List["api_Timestamp"]] = None,
|
|
63444
63382
|
timestamp_mappings: Optional["scout_video_api_TimestampMappings"] = None,
|
|
63445
63383
|
type_of_union: Optional[str] = None
|
|
63446
63384
|
) -> None:
|
|
63447
63385
|
if type_of_union is None:
|
|
63448
|
-
if (
|
|
63386
|
+
if (timestamp_mappings is not None) != 1:
|
|
63449
63387
|
raise ValueError('a union must contain a single member')
|
|
63450
63388
|
|
|
63451
|
-
if timestamps is not None:
|
|
63452
|
-
self._timestamps = timestamps
|
|
63453
|
-
self._type = 'timestamps'
|
|
63454
63389
|
if timestamp_mappings is not None:
|
|
63455
63390
|
self._timestamp_mappings = timestamp_mappings
|
|
63456
63391
|
self._type = 'timestampMappings'
|
|
63457
63392
|
|
|
63458
|
-
elif type_of_union == 'timestamps':
|
|
63459
|
-
if timestamps is None:
|
|
63460
|
-
raise ValueError('a union value must not be None')
|
|
63461
|
-
self._timestamps = timestamps
|
|
63462
|
-
self._type = 'timestamps'
|
|
63463
63393
|
elif type_of_union == 'timestampMappings':
|
|
63464
63394
|
if timestamp_mappings is None:
|
|
63465
63395
|
raise ValueError('a union value must not be None')
|
|
63466
63396
|
self._timestamp_mappings = timestamp_mappings
|
|
63467
63397
|
self._type = 'timestampMappings'
|
|
63468
63398
|
|
|
63469
|
-
@builtins.property
|
|
63470
|
-
def timestamps(self) -> Optional[List["api_Timestamp"]]:
|
|
63471
|
-
return self._timestamps
|
|
63472
|
-
|
|
63473
63399
|
@builtins.property
|
|
63474
63400
|
def timestamp_mappings(self) -> Optional["scout_video_api_TimestampMappings"]:
|
|
63475
63401
|
return self._timestamp_mappings
|
|
@@ -63477,8 +63403,6 @@ extracted and mapped to those in the provided manifest."""
|
|
|
63477
63403
|
def accept(self, visitor) -> Any:
|
|
63478
63404
|
if not isinstance(visitor, scout_video_api_SegmentTimestampsVisitor):
|
|
63479
63405
|
raise ValueError('{} is not an instance of scout_video_api_SegmentTimestampsVisitor'.format(visitor.__class__.__name__))
|
|
63480
|
-
if self._type == 'timestamps' and self.timestamps is not None:
|
|
63481
|
-
return visitor._timestamps(self.timestamps)
|
|
63482
63406
|
if self._type == 'timestampMappings' and self.timestamp_mappings is not None:
|
|
63483
63407
|
return visitor._timestamp_mappings(self.timestamp_mappings)
|
|
63484
63408
|
|
|
@@ -63490,10 +63414,6 @@ scout_video_api_SegmentTimestamps.__module__ = "nominal_api.scout_video_api"
|
|
|
63490
63414
|
|
|
63491
63415
|
class scout_video_api_SegmentTimestampsVisitor:
|
|
63492
63416
|
|
|
63493
|
-
@abstractmethod
|
|
63494
|
-
def _timestamps(self, timestamps: List["api_Timestamp"]) -> Any:
|
|
63495
|
-
pass
|
|
63496
|
-
|
|
63497
63417
|
@abstractmethod
|
|
63498
63418
|
def _timestamp_mappings(self, timestamp_mappings: "scout_video_api_TimestampMappings") -> Any:
|
|
63499
63419
|
pass
|
|
@@ -44,8 +44,7 @@ from .._impl import (
|
|
|
44
44
|
scout_compute_resolved_api_IntersectRangesNode as IntersectRangesNode,
|
|
45
45
|
scout_compute_resolved_api_LatLongBounds as LatLongBounds,
|
|
46
46
|
scout_compute_resolved_api_LatLongGeoNode as LatLongGeoNode,
|
|
47
|
-
|
|
48
|
-
scout_compute_resolved_api_LogFilterTransformationSeriesNode as LogFilterTransformationSeriesNode,
|
|
47
|
+
scout_compute_resolved_api_LogFilterSeriesNode as LogFilterSeriesNode,
|
|
49
48
|
scout_compute_resolved_api_LogSeriesNode as LogSeriesNode,
|
|
50
49
|
scout_compute_resolved_api_LogSeriesNodeVisitor as LogSeriesNodeVisitor,
|
|
51
50
|
scout_compute_resolved_api_LogTimeShiftSeriesNode as LogTimeShiftSeriesNode,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=M7b1Q3JDpVaIH1PrVLwb5Nfij4pjdjUVyQk6vRbk5oY,1791
|
|
2
|
+
nominal_api/_impl.py,sha256=wX4r8S-aD_NkPwKDXcnBjsr9H6BSkgdjldt5pJ-JRlc,2751758
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=kJBEE_HLVpKYdLH12KyO-cSAVzwxYpBwaaDutCtT-LM,1236
|
|
5
5
|
nominal_api/api_rids/__init__.py,sha256=MwCU7tf4EQBdNPY12rgPdr4y11iowEXxYqtNCvw7sdo,380
|
|
@@ -30,7 +30,7 @@ nominal_api/scout_comparisonrun_api/__init__.py,sha256=1LCXQe64tDqqeMQixW8PI-R_e
|
|
|
30
30
|
nominal_api/scout_compute_api/__init__.py,sha256=DGXb6TQbX4DklA6W6rTqPqkU2W5KdmsO1xZBD2MdFXA,17216
|
|
31
31
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=RggSfc6C1VR1-kNXPWybpfw3hZbkQ1gvxEisFZCHdnM,3732
|
|
32
32
|
nominal_api/scout_compute_representation_api/__init__.py,sha256=FezODo7sI8m6tDhPPK_gZX1qXImi4O3TUprDoNUuWpk,1672
|
|
33
|
-
nominal_api/scout_compute_resolved_api/__init__.py,sha256
|
|
33
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=-IZ6eqgHGJsK3Z2URCYUlUgoyghlSMT2Ml7xJjmJePs,8698
|
|
34
34
|
nominal_api/scout_dataexport_api/__init__.py,sha256=pWRQdQJOObD0jITRYLw3AxeDJSrJQqAdFZACxULqA4o,1487
|
|
35
35
|
nominal_api/scout_datareview_api/__init__.py,sha256=ETAl7VWaxOk8g9uwfsKo573-3qfDNbGQ1_QBQaDPRxk,8405
|
|
36
36
|
nominal_api/scout_datasource/__init__.py,sha256=1NWMrEx-JOEb4Pmd2oAqcpSmQB3g3lxgxFenWEtcF2M,101
|
|
@@ -66,7 +66,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=KuHLafDLeHzOTl0B6j7T
|
|
|
66
66
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
67
67
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
68
68
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
69
|
-
nominal_api-0.
|
|
70
|
-
nominal_api-0.
|
|
71
|
-
nominal_api-0.
|
|
72
|
-
nominal_api-0.
|
|
69
|
+
nominal_api-0.563.0.dist-info/METADATA,sha256=e9GqnDv4uZ3oyU-hRlHOjGK4swnFli4J0lwxUyarX_Q,199
|
|
70
|
+
nominal_api-0.563.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
71
|
+
nominal_api-0.563.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
72
|
+
nominal_api-0.563.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|