nominal-api 0.569.1__py3-none-any.whl → 0.570.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 +708 -5
- nominal_api/scout_compute_api/__init__.py +12 -0
- nominal_api/scout_compute_resolved_api/__init__.py +5 -0
- {nominal_api-0.569.1.dist-info → nominal_api-0.570.0.dist-info}/METADATA +1 -1
- {nominal_api-0.569.1.dist-info → nominal_api-0.570.0.dist-info}/RECORD +8 -8
- {nominal_api-0.569.1.dist-info → nominal_api-0.570.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.569.1.dist-info → nominal_api-0.570.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -28503,6 +28503,29 @@ scout_compute_api_BitXorFunction.__qualname__ = "BitXorFunction"
|
|
|
28503
28503
|
scout_compute_api_BitXorFunction.__module__ = "nominal_api.scout_compute_api"
|
|
28504
28504
|
|
|
28505
28505
|
|
|
28506
|
+
class scout_compute_api_BucketedCartesian3dPlot(ConjureBeanType):
|
|
28507
|
+
|
|
28508
|
+
@builtins.classmethod
|
|
28509
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
28510
|
+
return {
|
|
28511
|
+
'buckets': ConjureFieldDefinition('buckets', List[scout_compute_api_Cartesian3dBucket])
|
|
28512
|
+
}
|
|
28513
|
+
|
|
28514
|
+
__slots__: List[str] = ['_buckets']
|
|
28515
|
+
|
|
28516
|
+
def __init__(self, buckets: List["scout_compute_api_Cartesian3dBucket"]) -> None:
|
|
28517
|
+
self._buckets = buckets
|
|
28518
|
+
|
|
28519
|
+
@builtins.property
|
|
28520
|
+
def buckets(self) -> List["scout_compute_api_Cartesian3dBucket"]:
|
|
28521
|
+
return self._buckets
|
|
28522
|
+
|
|
28523
|
+
|
|
28524
|
+
scout_compute_api_BucketedCartesian3dPlot.__name__ = "BucketedCartesian3dPlot"
|
|
28525
|
+
scout_compute_api_BucketedCartesian3dPlot.__qualname__ = "BucketedCartesian3dPlot"
|
|
28526
|
+
scout_compute_api_BucketedCartesian3dPlot.__module__ = "nominal_api.scout_compute_api"
|
|
28527
|
+
|
|
28528
|
+
|
|
28506
28529
|
class scout_compute_api_BucketedCartesianPlot(ConjureBeanType):
|
|
28507
28530
|
|
|
28508
28531
|
@builtins.classmethod
|
|
@@ -28708,6 +28731,224 @@ scout_compute_api_CartesianVisitor.__qualname__ = "CartesianVisitor"
|
|
|
28708
28731
|
scout_compute_api_CartesianVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
28709
28732
|
|
|
28710
28733
|
|
|
28734
|
+
class scout_compute_api_Cartesian3d(ConjureUnionType):
|
|
28735
|
+
_scatter3d: Optional["scout_compute_api_Scatter3d"] = None
|
|
28736
|
+
|
|
28737
|
+
@builtins.classmethod
|
|
28738
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
28739
|
+
return {
|
|
28740
|
+
'scatter3d': ConjureFieldDefinition('scatter3d', scout_compute_api_Scatter3d)
|
|
28741
|
+
}
|
|
28742
|
+
|
|
28743
|
+
def __init__(
|
|
28744
|
+
self,
|
|
28745
|
+
scatter3d: Optional["scout_compute_api_Scatter3d"] = None,
|
|
28746
|
+
type_of_union: Optional[str] = None
|
|
28747
|
+
) -> None:
|
|
28748
|
+
if type_of_union is None:
|
|
28749
|
+
if (scatter3d is not None) != 1:
|
|
28750
|
+
raise ValueError('a union must contain a single member')
|
|
28751
|
+
|
|
28752
|
+
if scatter3d is not None:
|
|
28753
|
+
self._scatter3d = scatter3d
|
|
28754
|
+
self._type = 'scatter3d'
|
|
28755
|
+
|
|
28756
|
+
elif type_of_union == 'scatter3d':
|
|
28757
|
+
if scatter3d is None:
|
|
28758
|
+
raise ValueError('a union value must not be None')
|
|
28759
|
+
self._scatter3d = scatter3d
|
|
28760
|
+
self._type = 'scatter3d'
|
|
28761
|
+
|
|
28762
|
+
@builtins.property
|
|
28763
|
+
def scatter3d(self) -> Optional["scout_compute_api_Scatter3d"]:
|
|
28764
|
+
return self._scatter3d
|
|
28765
|
+
|
|
28766
|
+
def accept(self, visitor) -> Any:
|
|
28767
|
+
if not isinstance(visitor, scout_compute_api_Cartesian3dVisitor):
|
|
28768
|
+
raise ValueError('{} is not an instance of scout_compute_api_Cartesian3dVisitor'.format(visitor.__class__.__name__))
|
|
28769
|
+
if self._type == 'scatter3d' and self.scatter3d is not None:
|
|
28770
|
+
return visitor._scatter3d(self.scatter3d)
|
|
28771
|
+
|
|
28772
|
+
|
|
28773
|
+
scout_compute_api_Cartesian3d.__name__ = "Cartesian3d"
|
|
28774
|
+
scout_compute_api_Cartesian3d.__qualname__ = "Cartesian3d"
|
|
28775
|
+
scout_compute_api_Cartesian3d.__module__ = "nominal_api.scout_compute_api"
|
|
28776
|
+
|
|
28777
|
+
|
|
28778
|
+
class scout_compute_api_Cartesian3dVisitor:
|
|
28779
|
+
|
|
28780
|
+
@abstractmethod
|
|
28781
|
+
def _scatter3d(self, scatter3d: "scout_compute_api_Scatter3d") -> Any:
|
|
28782
|
+
pass
|
|
28783
|
+
|
|
28784
|
+
|
|
28785
|
+
scout_compute_api_Cartesian3dVisitor.__name__ = "Cartesian3dVisitor"
|
|
28786
|
+
scout_compute_api_Cartesian3dVisitor.__qualname__ = "Cartesian3dVisitor"
|
|
28787
|
+
scout_compute_api_Cartesian3dVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
28788
|
+
|
|
28789
|
+
|
|
28790
|
+
class scout_compute_api_Cartesian3dBounds(ConjureBeanType):
|
|
28791
|
+
"""
|
|
28792
|
+
Min/max bounds of an XYZ Cartesian plot, inclusive.
|
|
28793
|
+
"""
|
|
28794
|
+
|
|
28795
|
+
@builtins.classmethod
|
|
28796
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
28797
|
+
return {
|
|
28798
|
+
'min_x': ConjureFieldDefinition('minX', scout_compute_api_DoubleConstant),
|
|
28799
|
+
'max_x': ConjureFieldDefinition('maxX', scout_compute_api_DoubleConstant),
|
|
28800
|
+
'min_y': ConjureFieldDefinition('minY', scout_compute_api_DoubleConstant),
|
|
28801
|
+
'max_y': ConjureFieldDefinition('maxY', scout_compute_api_DoubleConstant),
|
|
28802
|
+
'min_z': ConjureFieldDefinition('minZ', scout_compute_api_DoubleConstant),
|
|
28803
|
+
'max_z': ConjureFieldDefinition('maxZ', scout_compute_api_DoubleConstant)
|
|
28804
|
+
}
|
|
28805
|
+
|
|
28806
|
+
__slots__: List[str] = ['_min_x', '_max_x', '_min_y', '_max_y', '_min_z', '_max_z']
|
|
28807
|
+
|
|
28808
|
+
def __init__(self, max_x: "scout_compute_api_DoubleConstant", max_y: "scout_compute_api_DoubleConstant", max_z: "scout_compute_api_DoubleConstant", min_x: "scout_compute_api_DoubleConstant", min_y: "scout_compute_api_DoubleConstant", min_z: "scout_compute_api_DoubleConstant") -> None:
|
|
28809
|
+
self._min_x = min_x
|
|
28810
|
+
self._max_x = max_x
|
|
28811
|
+
self._min_y = min_y
|
|
28812
|
+
self._max_y = max_y
|
|
28813
|
+
self._min_z = min_z
|
|
28814
|
+
self._max_z = max_z
|
|
28815
|
+
|
|
28816
|
+
@builtins.property
|
|
28817
|
+
def min_x(self) -> "scout_compute_api_DoubleConstant":
|
|
28818
|
+
return self._min_x
|
|
28819
|
+
|
|
28820
|
+
@builtins.property
|
|
28821
|
+
def max_x(self) -> "scout_compute_api_DoubleConstant":
|
|
28822
|
+
return self._max_x
|
|
28823
|
+
|
|
28824
|
+
@builtins.property
|
|
28825
|
+
def min_y(self) -> "scout_compute_api_DoubleConstant":
|
|
28826
|
+
return self._min_y
|
|
28827
|
+
|
|
28828
|
+
@builtins.property
|
|
28829
|
+
def max_y(self) -> "scout_compute_api_DoubleConstant":
|
|
28830
|
+
return self._max_y
|
|
28831
|
+
|
|
28832
|
+
@builtins.property
|
|
28833
|
+
def min_z(self) -> "scout_compute_api_DoubleConstant":
|
|
28834
|
+
return self._min_z
|
|
28835
|
+
|
|
28836
|
+
@builtins.property
|
|
28837
|
+
def max_z(self) -> "scout_compute_api_DoubleConstant":
|
|
28838
|
+
return self._max_z
|
|
28839
|
+
|
|
28840
|
+
|
|
28841
|
+
scout_compute_api_Cartesian3dBounds.__name__ = "Cartesian3dBounds"
|
|
28842
|
+
scout_compute_api_Cartesian3dBounds.__qualname__ = "Cartesian3dBounds"
|
|
28843
|
+
scout_compute_api_Cartesian3dBounds.__module__ = "nominal_api.scout_compute_api"
|
|
28844
|
+
|
|
28845
|
+
|
|
28846
|
+
class scout_compute_api_Cartesian3dBucket(ConjureBeanType):
|
|
28847
|
+
|
|
28848
|
+
@builtins.classmethod
|
|
28849
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
28850
|
+
return {
|
|
28851
|
+
'min_x': ConjureFieldDefinition('minX', float),
|
|
28852
|
+
'max_x': ConjureFieldDefinition('maxX', float),
|
|
28853
|
+
'min_y': ConjureFieldDefinition('minY', float),
|
|
28854
|
+
'max_y': ConjureFieldDefinition('maxY', float),
|
|
28855
|
+
'min_z': ConjureFieldDefinition('minZ', float),
|
|
28856
|
+
'max_z': ConjureFieldDefinition('maxZ', float),
|
|
28857
|
+
'min_timestamp': ConjureFieldDefinition('minTimestamp', api_Timestamp),
|
|
28858
|
+
'max_timestamp': ConjureFieldDefinition('maxTimestamp', api_Timestamp),
|
|
28859
|
+
'count': ConjureFieldDefinition('count', int)
|
|
28860
|
+
}
|
|
28861
|
+
|
|
28862
|
+
__slots__: List[str] = ['_min_x', '_max_x', '_min_y', '_max_y', '_min_z', '_max_z', '_min_timestamp', '_max_timestamp', '_count']
|
|
28863
|
+
|
|
28864
|
+
def __init__(self, count: int, max_timestamp: "api_Timestamp", max_x: float, max_y: float, max_z: float, min_timestamp: "api_Timestamp", min_x: float, min_y: float, min_z: float) -> None:
|
|
28865
|
+
self._min_x = min_x
|
|
28866
|
+
self._max_x = max_x
|
|
28867
|
+
self._min_y = min_y
|
|
28868
|
+
self._max_y = max_y
|
|
28869
|
+
self._min_z = min_z
|
|
28870
|
+
self._max_z = max_z
|
|
28871
|
+
self._min_timestamp = min_timestamp
|
|
28872
|
+
self._max_timestamp = max_timestamp
|
|
28873
|
+
self._count = count
|
|
28874
|
+
|
|
28875
|
+
@builtins.property
|
|
28876
|
+
def min_x(self) -> float:
|
|
28877
|
+
return self._min_x
|
|
28878
|
+
|
|
28879
|
+
@builtins.property
|
|
28880
|
+
def max_x(self) -> float:
|
|
28881
|
+
return self._max_x
|
|
28882
|
+
|
|
28883
|
+
@builtins.property
|
|
28884
|
+
def min_y(self) -> float:
|
|
28885
|
+
return self._min_y
|
|
28886
|
+
|
|
28887
|
+
@builtins.property
|
|
28888
|
+
def max_y(self) -> float:
|
|
28889
|
+
return self._max_y
|
|
28890
|
+
|
|
28891
|
+
@builtins.property
|
|
28892
|
+
def min_z(self) -> float:
|
|
28893
|
+
return self._min_z
|
|
28894
|
+
|
|
28895
|
+
@builtins.property
|
|
28896
|
+
def max_z(self) -> float:
|
|
28897
|
+
return self._max_z
|
|
28898
|
+
|
|
28899
|
+
@builtins.property
|
|
28900
|
+
def min_timestamp(self) -> "api_Timestamp":
|
|
28901
|
+
return self._min_timestamp
|
|
28902
|
+
|
|
28903
|
+
@builtins.property
|
|
28904
|
+
def max_timestamp(self) -> "api_Timestamp":
|
|
28905
|
+
return self._max_timestamp
|
|
28906
|
+
|
|
28907
|
+
@builtins.property
|
|
28908
|
+
def count(self) -> int:
|
|
28909
|
+
return self._count
|
|
28910
|
+
|
|
28911
|
+
|
|
28912
|
+
scout_compute_api_Cartesian3dBucket.__name__ = "Cartesian3dBucket"
|
|
28913
|
+
scout_compute_api_Cartesian3dBucket.__qualname__ = "Cartesian3dBucket"
|
|
28914
|
+
scout_compute_api_Cartesian3dBucket.__module__ = "nominal_api.scout_compute_api"
|
|
28915
|
+
|
|
28916
|
+
|
|
28917
|
+
class scout_compute_api_Cartesian3dUnitResult(ConjureBeanType):
|
|
28918
|
+
|
|
28919
|
+
@builtins.classmethod
|
|
28920
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
28921
|
+
return {
|
|
28922
|
+
'x': ConjureFieldDefinition('x', scout_compute_api_UnitResult),
|
|
28923
|
+
'y': ConjureFieldDefinition('y', scout_compute_api_UnitResult),
|
|
28924
|
+
'z': ConjureFieldDefinition('z', scout_compute_api_UnitResult)
|
|
28925
|
+
}
|
|
28926
|
+
|
|
28927
|
+
__slots__: List[str] = ['_x', '_y', '_z']
|
|
28928
|
+
|
|
28929
|
+
def __init__(self, x: "scout_compute_api_UnitResult", y: "scout_compute_api_UnitResult", z: "scout_compute_api_UnitResult") -> None:
|
|
28930
|
+
self._x = x
|
|
28931
|
+
self._y = y
|
|
28932
|
+
self._z = z
|
|
28933
|
+
|
|
28934
|
+
@builtins.property
|
|
28935
|
+
def x(self) -> "scout_compute_api_UnitResult":
|
|
28936
|
+
return self._x
|
|
28937
|
+
|
|
28938
|
+
@builtins.property
|
|
28939
|
+
def y(self) -> "scout_compute_api_UnitResult":
|
|
28940
|
+
return self._y
|
|
28941
|
+
|
|
28942
|
+
@builtins.property
|
|
28943
|
+
def z(self) -> "scout_compute_api_UnitResult":
|
|
28944
|
+
return self._z
|
|
28945
|
+
|
|
28946
|
+
|
|
28947
|
+
scout_compute_api_Cartesian3dUnitResult.__name__ = "Cartesian3dUnitResult"
|
|
28948
|
+
scout_compute_api_Cartesian3dUnitResult.__qualname__ = "Cartesian3dUnitResult"
|
|
28949
|
+
scout_compute_api_Cartesian3dUnitResult.__module__ = "nominal_api.scout_compute_api"
|
|
28950
|
+
|
|
28951
|
+
|
|
28711
28952
|
class scout_compute_api_CartesianBounds(ConjureBeanType):
|
|
28712
28953
|
"""
|
|
28713
28954
|
Min/max bounds of an XY Cartesian plot, inclusive.
|
|
@@ -29007,6 +29248,7 @@ class scout_compute_api_ComputableNode(ConjureUnionType):
|
|
|
29007
29248
|
_series: Optional["scout_compute_api_SummarizeSeries"] = None
|
|
29008
29249
|
_value: Optional["scout_compute_api_SelectValue"] = None
|
|
29009
29250
|
_cartesian: Optional["scout_compute_api_SummarizeCartesian"] = None
|
|
29251
|
+
_cartesian3d: Optional["scout_compute_api_SummarizeCartesian3d"] = None
|
|
29010
29252
|
_frequency: Optional["scout_compute_api_FrequencyDomain"] = None
|
|
29011
29253
|
_histogram: Optional["scout_compute_api_Histogram"] = None
|
|
29012
29254
|
_geo: Optional["scout_compute_api_SummarizeGeo"] = None
|
|
@@ -29018,6 +29260,7 @@ class scout_compute_api_ComputableNode(ConjureUnionType):
|
|
|
29018
29260
|
'series': ConjureFieldDefinition('series', scout_compute_api_SummarizeSeries),
|
|
29019
29261
|
'value': ConjureFieldDefinition('value', scout_compute_api_SelectValue),
|
|
29020
29262
|
'cartesian': ConjureFieldDefinition('cartesian', scout_compute_api_SummarizeCartesian),
|
|
29263
|
+
'cartesian3d': ConjureFieldDefinition('cartesian3d', scout_compute_api_SummarizeCartesian3d),
|
|
29021
29264
|
'frequency': ConjureFieldDefinition('frequency', scout_compute_api_FrequencyDomain),
|
|
29022
29265
|
'histogram': ConjureFieldDefinition('histogram', scout_compute_api_Histogram),
|
|
29023
29266
|
'geo': ConjureFieldDefinition('geo', scout_compute_api_SummarizeGeo)
|
|
@@ -29029,13 +29272,14 @@ class scout_compute_api_ComputableNode(ConjureUnionType):
|
|
|
29029
29272
|
series: Optional["scout_compute_api_SummarizeSeries"] = None,
|
|
29030
29273
|
value: Optional["scout_compute_api_SelectValue"] = None,
|
|
29031
29274
|
cartesian: Optional["scout_compute_api_SummarizeCartesian"] = None,
|
|
29275
|
+
cartesian3d: Optional["scout_compute_api_SummarizeCartesian3d"] = None,
|
|
29032
29276
|
frequency: Optional["scout_compute_api_FrequencyDomain"] = None,
|
|
29033
29277
|
histogram: Optional["scout_compute_api_Histogram"] = None,
|
|
29034
29278
|
geo: Optional["scout_compute_api_SummarizeGeo"] = None,
|
|
29035
29279
|
type_of_union: Optional[str] = None
|
|
29036
29280
|
) -> None:
|
|
29037
29281
|
if type_of_union is None:
|
|
29038
|
-
if (ranges is not None) + (series is not None) + (value is not None) + (cartesian is not None) + (frequency is not None) + (histogram is not None) + (geo is not None) != 1:
|
|
29282
|
+
if (ranges is not None) + (series is not None) + (value is not None) + (cartesian is not None) + (cartesian3d is not None) + (frequency is not None) + (histogram is not None) + (geo is not None) != 1:
|
|
29039
29283
|
raise ValueError('a union must contain a single member')
|
|
29040
29284
|
|
|
29041
29285
|
if ranges is not None:
|
|
@@ -29050,6 +29294,9 @@ class scout_compute_api_ComputableNode(ConjureUnionType):
|
|
|
29050
29294
|
if cartesian is not None:
|
|
29051
29295
|
self._cartesian = cartesian
|
|
29052
29296
|
self._type = 'cartesian'
|
|
29297
|
+
if cartesian3d is not None:
|
|
29298
|
+
self._cartesian3d = cartesian3d
|
|
29299
|
+
self._type = 'cartesian3d'
|
|
29053
29300
|
if frequency is not None:
|
|
29054
29301
|
self._frequency = frequency
|
|
29055
29302
|
self._type = 'frequency'
|
|
@@ -29080,6 +29327,11 @@ class scout_compute_api_ComputableNode(ConjureUnionType):
|
|
|
29080
29327
|
raise ValueError('a union value must not be None')
|
|
29081
29328
|
self._cartesian = cartesian
|
|
29082
29329
|
self._type = 'cartesian'
|
|
29330
|
+
elif type_of_union == 'cartesian3d':
|
|
29331
|
+
if cartesian3d is None:
|
|
29332
|
+
raise ValueError('a union value must not be None')
|
|
29333
|
+
self._cartesian3d = cartesian3d
|
|
29334
|
+
self._type = 'cartesian3d'
|
|
29083
29335
|
elif type_of_union == 'frequency':
|
|
29084
29336
|
if frequency is None:
|
|
29085
29337
|
raise ValueError('a union value must not be None')
|
|
@@ -29112,6 +29364,10 @@ class scout_compute_api_ComputableNode(ConjureUnionType):
|
|
|
29112
29364
|
def cartesian(self) -> Optional["scout_compute_api_SummarizeCartesian"]:
|
|
29113
29365
|
return self._cartesian
|
|
29114
29366
|
|
|
29367
|
+
@builtins.property
|
|
29368
|
+
def cartesian3d(self) -> Optional["scout_compute_api_SummarizeCartesian3d"]:
|
|
29369
|
+
return self._cartesian3d
|
|
29370
|
+
|
|
29115
29371
|
@builtins.property
|
|
29116
29372
|
def frequency(self) -> Optional["scout_compute_api_FrequencyDomain"]:
|
|
29117
29373
|
return self._frequency
|
|
@@ -29135,6 +29391,8 @@ class scout_compute_api_ComputableNode(ConjureUnionType):
|
|
|
29135
29391
|
return visitor._value(self.value)
|
|
29136
29392
|
if self._type == 'cartesian' and self.cartesian is not None:
|
|
29137
29393
|
return visitor._cartesian(self.cartesian)
|
|
29394
|
+
if self._type == 'cartesian3d' and self.cartesian3d is not None:
|
|
29395
|
+
return visitor._cartesian3d(self.cartesian3d)
|
|
29138
29396
|
if self._type == 'frequency' and self.frequency is not None:
|
|
29139
29397
|
return visitor._frequency(self.frequency)
|
|
29140
29398
|
if self._type == 'histogram' and self.histogram is not None:
|
|
@@ -29166,6 +29424,10 @@ class scout_compute_api_ComputableNodeVisitor:
|
|
|
29166
29424
|
def _cartesian(self, cartesian: "scout_compute_api_SummarizeCartesian") -> Any:
|
|
29167
29425
|
pass
|
|
29168
29426
|
|
|
29427
|
+
@abstractmethod
|
|
29428
|
+
def _cartesian3d(self, cartesian3d: "scout_compute_api_SummarizeCartesian3d") -> Any:
|
|
29429
|
+
pass
|
|
29430
|
+
|
|
29169
29431
|
@abstractmethod
|
|
29170
29432
|
def _frequency(self, frequency: "scout_compute_api_FrequencyDomain") -> Any:
|
|
29171
29433
|
pass
|
|
@@ -29416,6 +29678,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29416
29678
|
_bucketed_enum: Optional["scout_compute_api_BucketedEnumPlot"] = None
|
|
29417
29679
|
_cartesian: Optional["scout_compute_api_CartesianPlot"] = None
|
|
29418
29680
|
_bucketed_cartesian: Optional["scout_compute_api_BucketedCartesianPlot"] = None
|
|
29681
|
+
_bucketed_cartesian3d: Optional["scout_compute_api_BucketedCartesian3dPlot"] = None
|
|
29419
29682
|
_bucketed_geo: Optional["scout_compute_api_BucketedGeoPlot"] = None
|
|
29420
29683
|
_enum_point: Optional[Optional["scout_compute_api_EnumPoint"]] = None
|
|
29421
29684
|
_numeric_point: Optional[Optional["scout_compute_api_NumericPoint"]] = None
|
|
@@ -29437,6 +29700,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29437
29700
|
'bucketed_enum': ConjureFieldDefinition('bucketedEnum', scout_compute_api_BucketedEnumPlot),
|
|
29438
29701
|
'cartesian': ConjureFieldDefinition('cartesian', scout_compute_api_CartesianPlot),
|
|
29439
29702
|
'bucketed_cartesian': ConjureFieldDefinition('bucketedCartesian', scout_compute_api_BucketedCartesianPlot),
|
|
29703
|
+
'bucketed_cartesian3d': ConjureFieldDefinition('bucketedCartesian3d', scout_compute_api_BucketedCartesian3dPlot),
|
|
29440
29704
|
'bucketed_geo': ConjureFieldDefinition('bucketedGeo', scout_compute_api_BucketedGeoPlot),
|
|
29441
29705
|
'enum_point': ConjureFieldDefinition('enumPoint', OptionalTypeWrapper[scout_compute_api_EnumPoint]),
|
|
29442
29706
|
'numeric_point': ConjureFieldDefinition('numericPoint', OptionalTypeWrapper[scout_compute_api_NumericPoint]),
|
|
@@ -29458,6 +29722,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29458
29722
|
bucketed_enum: Optional["scout_compute_api_BucketedEnumPlot"] = None,
|
|
29459
29723
|
cartesian: Optional["scout_compute_api_CartesianPlot"] = None,
|
|
29460
29724
|
bucketed_cartesian: Optional["scout_compute_api_BucketedCartesianPlot"] = None,
|
|
29725
|
+
bucketed_cartesian3d: Optional["scout_compute_api_BucketedCartesian3dPlot"] = None,
|
|
29461
29726
|
bucketed_geo: Optional["scout_compute_api_BucketedGeoPlot"] = None,
|
|
29462
29727
|
enum_point: Optional[Optional["scout_compute_api_EnumPoint"]] = None,
|
|
29463
29728
|
numeric_point: Optional[Optional["scout_compute_api_NumericPoint"]] = None,
|
|
@@ -29469,7 +29734,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29469
29734
|
type_of_union: Optional[str] = None
|
|
29470
29735
|
) -> None:
|
|
29471
29736
|
if type_of_union is None:
|
|
29472
|
-
if (numeric is not None) + (bucketed_numeric is not None) + (range is not None) + (ranges_summary is not None) + (enum is not None) + (paged_log is not None) + (bucketed_enum is not None) + (cartesian is not None) + (bucketed_cartesian is not None) + (bucketed_geo is not None) + (enum_point is not None) + (numeric_point is not None) + (log_point is not None) + (range_value is not None) + (frequency_domain is not None) + (numeric_histogram is not None) + (enum_histogram is not None) != 1:
|
|
29737
|
+
if (numeric is not None) + (bucketed_numeric is not None) + (range is not None) + (ranges_summary is not None) + (enum is not None) + (paged_log is not None) + (bucketed_enum is not None) + (cartesian is not None) + (bucketed_cartesian is not None) + (bucketed_cartesian3d is not None) + (bucketed_geo is not None) + (enum_point is not None) + (numeric_point is not None) + (log_point is not None) + (range_value is not None) + (frequency_domain is not None) + (numeric_histogram is not None) + (enum_histogram is not None) != 1:
|
|
29473
29738
|
raise ValueError('a union must contain a single member')
|
|
29474
29739
|
|
|
29475
29740
|
if numeric is not None:
|
|
@@ -29499,6 +29764,9 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29499
29764
|
if bucketed_cartesian is not None:
|
|
29500
29765
|
self._bucketed_cartesian = bucketed_cartesian
|
|
29501
29766
|
self._type = 'bucketedCartesian'
|
|
29767
|
+
if bucketed_cartesian3d is not None:
|
|
29768
|
+
self._bucketed_cartesian3d = bucketed_cartesian3d
|
|
29769
|
+
self._type = 'bucketedCartesian3d'
|
|
29502
29770
|
if bucketed_geo is not None:
|
|
29503
29771
|
self._bucketed_geo = bucketed_geo
|
|
29504
29772
|
self._type = 'bucketedGeo'
|
|
@@ -29569,6 +29837,11 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29569
29837
|
raise ValueError('a union value must not be None')
|
|
29570
29838
|
self._bucketed_cartesian = bucketed_cartesian
|
|
29571
29839
|
self._type = 'bucketedCartesian'
|
|
29840
|
+
elif type_of_union == 'bucketedCartesian3d':
|
|
29841
|
+
if bucketed_cartesian3d is None:
|
|
29842
|
+
raise ValueError('a union value must not be None')
|
|
29843
|
+
self._bucketed_cartesian3d = bucketed_cartesian3d
|
|
29844
|
+
self._type = 'bucketedCartesian3d'
|
|
29572
29845
|
elif type_of_union == 'bucketedGeo':
|
|
29573
29846
|
if bucketed_geo is None:
|
|
29574
29847
|
raise ValueError('a union value must not be None')
|
|
@@ -29646,6 +29919,10 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29646
29919
|
def bucketed_cartesian(self) -> Optional["scout_compute_api_BucketedCartesianPlot"]:
|
|
29647
29920
|
return self._bucketed_cartesian
|
|
29648
29921
|
|
|
29922
|
+
@builtins.property
|
|
29923
|
+
def bucketed_cartesian3d(self) -> Optional["scout_compute_api_BucketedCartesian3dPlot"]:
|
|
29924
|
+
return self._bucketed_cartesian3d
|
|
29925
|
+
|
|
29649
29926
|
@builtins.property
|
|
29650
29927
|
def bucketed_geo(self) -> Optional["scout_compute_api_BucketedGeoPlot"]:
|
|
29651
29928
|
return self._bucketed_geo
|
|
@@ -29699,6 +29976,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
29699
29976
|
return visitor._cartesian(self.cartesian)
|
|
29700
29977
|
if self._type == 'bucketedCartesian' and self.bucketed_cartesian is not None:
|
|
29701
29978
|
return visitor._bucketed_cartesian(self.bucketed_cartesian)
|
|
29979
|
+
if self._type == 'bucketedCartesian3d' and self.bucketed_cartesian3d is not None:
|
|
29980
|
+
return visitor._bucketed_cartesian3d(self.bucketed_cartesian3d)
|
|
29702
29981
|
if self._type == 'bucketedGeo' and self.bucketed_geo is not None:
|
|
29703
29982
|
return visitor._bucketed_geo(self.bucketed_geo)
|
|
29704
29983
|
if self._type == 'enumPoint' and self.enum_point is not None:
|
|
@@ -29760,6 +30039,10 @@ class scout_compute_api_ComputeNodeResponseVisitor:
|
|
|
29760
30039
|
def _bucketed_cartesian(self, bucketed_cartesian: "scout_compute_api_BucketedCartesianPlot") -> Any:
|
|
29761
30040
|
pass
|
|
29762
30041
|
|
|
30042
|
+
@abstractmethod
|
|
30043
|
+
def _bucketed_cartesian3d(self, bucketed_cartesian3d: "scout_compute_api_BucketedCartesian3dPlot") -> Any:
|
|
30044
|
+
pass
|
|
30045
|
+
|
|
29763
30046
|
@abstractmethod
|
|
29764
30047
|
def _bucketed_geo(self, bucketed_geo: "scout_compute_api_BucketedGeoPlot") -> Any:
|
|
29765
30048
|
pass
|
|
@@ -30123,22 +30406,25 @@ scout_compute_api_ComputeService.__module__ = "nominal_api.scout_compute_api"
|
|
|
30123
30406
|
class scout_compute_api_ComputeUnitResult(ConjureUnionType):
|
|
30124
30407
|
_single: Optional["scout_compute_api_UnitResult"] = None
|
|
30125
30408
|
_cartesian: Optional["scout_compute_api_CartesianUnitResult"] = None
|
|
30409
|
+
_cartesian3d: Optional["scout_compute_api_Cartesian3dUnitResult"] = None
|
|
30126
30410
|
|
|
30127
30411
|
@builtins.classmethod
|
|
30128
30412
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
30129
30413
|
return {
|
|
30130
30414
|
'single': ConjureFieldDefinition('single', scout_compute_api_UnitResult),
|
|
30131
|
-
'cartesian': ConjureFieldDefinition('cartesian', scout_compute_api_CartesianUnitResult)
|
|
30415
|
+
'cartesian': ConjureFieldDefinition('cartesian', scout_compute_api_CartesianUnitResult),
|
|
30416
|
+
'cartesian3d': ConjureFieldDefinition('cartesian3d', scout_compute_api_Cartesian3dUnitResult)
|
|
30132
30417
|
}
|
|
30133
30418
|
|
|
30134
30419
|
def __init__(
|
|
30135
30420
|
self,
|
|
30136
30421
|
single: Optional["scout_compute_api_UnitResult"] = None,
|
|
30137
30422
|
cartesian: Optional["scout_compute_api_CartesianUnitResult"] = None,
|
|
30423
|
+
cartesian3d: Optional["scout_compute_api_Cartesian3dUnitResult"] = None,
|
|
30138
30424
|
type_of_union: Optional[str] = None
|
|
30139
30425
|
) -> None:
|
|
30140
30426
|
if type_of_union is None:
|
|
30141
|
-
if (single is not None) + (cartesian is not None) != 1:
|
|
30427
|
+
if (single is not None) + (cartesian is not None) + (cartesian3d is not None) != 1:
|
|
30142
30428
|
raise ValueError('a union must contain a single member')
|
|
30143
30429
|
|
|
30144
30430
|
if single is not None:
|
|
@@ -30147,6 +30433,9 @@ class scout_compute_api_ComputeUnitResult(ConjureUnionType):
|
|
|
30147
30433
|
if cartesian is not None:
|
|
30148
30434
|
self._cartesian = cartesian
|
|
30149
30435
|
self._type = 'cartesian'
|
|
30436
|
+
if cartesian3d is not None:
|
|
30437
|
+
self._cartesian3d = cartesian3d
|
|
30438
|
+
self._type = 'cartesian3d'
|
|
30150
30439
|
|
|
30151
30440
|
elif type_of_union == 'single':
|
|
30152
30441
|
if single is None:
|
|
@@ -30158,6 +30447,11 @@ class scout_compute_api_ComputeUnitResult(ConjureUnionType):
|
|
|
30158
30447
|
raise ValueError('a union value must not be None')
|
|
30159
30448
|
self._cartesian = cartesian
|
|
30160
30449
|
self._type = 'cartesian'
|
|
30450
|
+
elif type_of_union == 'cartesian3d':
|
|
30451
|
+
if cartesian3d is None:
|
|
30452
|
+
raise ValueError('a union value must not be None')
|
|
30453
|
+
self._cartesian3d = cartesian3d
|
|
30454
|
+
self._type = 'cartesian3d'
|
|
30161
30455
|
|
|
30162
30456
|
@builtins.property
|
|
30163
30457
|
def single(self) -> Optional["scout_compute_api_UnitResult"]:
|
|
@@ -30167,6 +30461,10 @@ class scout_compute_api_ComputeUnitResult(ConjureUnionType):
|
|
|
30167
30461
|
def cartesian(self) -> Optional["scout_compute_api_CartesianUnitResult"]:
|
|
30168
30462
|
return self._cartesian
|
|
30169
30463
|
|
|
30464
|
+
@builtins.property
|
|
30465
|
+
def cartesian3d(self) -> Optional["scout_compute_api_Cartesian3dUnitResult"]:
|
|
30466
|
+
return self._cartesian3d
|
|
30467
|
+
|
|
30170
30468
|
def accept(self, visitor) -> Any:
|
|
30171
30469
|
if not isinstance(visitor, scout_compute_api_ComputeUnitResultVisitor):
|
|
30172
30470
|
raise ValueError('{} is not an instance of scout_compute_api_ComputeUnitResultVisitor'.format(visitor.__class__.__name__))
|
|
@@ -30174,6 +30472,8 @@ class scout_compute_api_ComputeUnitResult(ConjureUnionType):
|
|
|
30174
30472
|
return visitor._single(self.single)
|
|
30175
30473
|
if self._type == 'cartesian' and self.cartesian is not None:
|
|
30176
30474
|
return visitor._cartesian(self.cartesian)
|
|
30475
|
+
if self._type == 'cartesian3d' and self.cartesian3d is not None:
|
|
30476
|
+
return visitor._cartesian3d(self.cartesian3d)
|
|
30177
30477
|
|
|
30178
30478
|
|
|
30179
30479
|
scout_compute_api_ComputeUnitResult.__name__ = "ComputeUnitResult"
|
|
@@ -30191,6 +30491,10 @@ class scout_compute_api_ComputeUnitResultVisitor:
|
|
|
30191
30491
|
def _cartesian(self, cartesian: "scout_compute_api_CartesianUnitResult") -> Any:
|
|
30192
30492
|
pass
|
|
30193
30493
|
|
|
30494
|
+
@abstractmethod
|
|
30495
|
+
def _cartesian3d(self, cartesian3d: "scout_compute_api_Cartesian3dUnitResult") -> Any:
|
|
30496
|
+
pass
|
|
30497
|
+
|
|
30194
30498
|
|
|
30195
30499
|
scout_compute_api_ComputeUnitResultVisitor.__name__ = "ComputeUnitResultVisitor"
|
|
30196
30500
|
scout_compute_api_ComputeUnitResultVisitor.__qualname__ = "ComputeUnitResultVisitor"
|
|
@@ -30659,6 +30963,26 @@ scout_compute_api_DoubleConstantVisitor.__qualname__ = "DoubleConstantVisitor"
|
|
|
30659
30963
|
scout_compute_api_DoubleConstantVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
30660
30964
|
|
|
30661
30965
|
|
|
30966
|
+
class scout_compute_api_DriverSeries3d(ConjureEnumType):
|
|
30967
|
+
|
|
30968
|
+
X = 'X'
|
|
30969
|
+
'''X'''
|
|
30970
|
+
Y = 'Y'
|
|
30971
|
+
'''Y'''
|
|
30972
|
+
Z = 'Z'
|
|
30973
|
+
'''Z'''
|
|
30974
|
+
UNKNOWN = 'UNKNOWN'
|
|
30975
|
+
'''UNKNOWN'''
|
|
30976
|
+
|
|
30977
|
+
def __reduce_ex__(self, proto):
|
|
30978
|
+
return self.__class__, (self.name,)
|
|
30979
|
+
|
|
30980
|
+
|
|
30981
|
+
scout_compute_api_DriverSeries3d.__name__ = "DriverSeries3d"
|
|
30982
|
+
scout_compute_api_DriverSeries3d.__qualname__ = "DriverSeries3d"
|
|
30983
|
+
scout_compute_api_DriverSeries3d.__module__ = "nominal_api.scout_compute_api"
|
|
30984
|
+
|
|
30985
|
+
|
|
30662
30986
|
class scout_compute_api_DurationConstant(ConjureUnionType):
|
|
30663
30987
|
_literal: Optional["scout_run_api_Duration"] = None
|
|
30664
30988
|
_variable: Optional[str] = None
|
|
@@ -36758,6 +37082,103 @@ scout_compute_api_Scatter.__qualname__ = "Scatter"
|
|
|
36758
37082
|
scout_compute_api_Scatter.__module__ = "nominal_api.scout_compute_api"
|
|
36759
37083
|
|
|
36760
37084
|
|
|
37085
|
+
class scout_compute_api_Scatter3d(ConjureBeanType):
|
|
37086
|
+
|
|
37087
|
+
@builtins.classmethod
|
|
37088
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37089
|
+
return {
|
|
37090
|
+
'x': ConjureFieldDefinition('x', scout_compute_api_NumericSeries),
|
|
37091
|
+
'y': ConjureFieldDefinition('y', scout_compute_api_NumericSeries),
|
|
37092
|
+
'z': ConjureFieldDefinition('z', scout_compute_api_NumericSeries),
|
|
37093
|
+
'driver_series': ConjureFieldDefinition('driverSeries', OptionalTypeWrapper[scout_compute_api_DriverSeries3d])
|
|
37094
|
+
}
|
|
37095
|
+
|
|
37096
|
+
__slots__: List[str] = ['_x', '_y', '_z', '_driver_series']
|
|
37097
|
+
|
|
37098
|
+
def __init__(self, x: "scout_compute_api_NumericSeries", y: "scout_compute_api_NumericSeries", z: "scout_compute_api_NumericSeries", driver_series: Optional["scout_compute_api_DriverSeries3d"] = None) -> None:
|
|
37099
|
+
self._x = x
|
|
37100
|
+
self._y = y
|
|
37101
|
+
self._z = z
|
|
37102
|
+
self._driver_series = driver_series
|
|
37103
|
+
|
|
37104
|
+
@builtins.property
|
|
37105
|
+
def x(self) -> "scout_compute_api_NumericSeries":
|
|
37106
|
+
return self._x
|
|
37107
|
+
|
|
37108
|
+
@builtins.property
|
|
37109
|
+
def y(self) -> "scout_compute_api_NumericSeries":
|
|
37110
|
+
return self._y
|
|
37111
|
+
|
|
37112
|
+
@builtins.property
|
|
37113
|
+
def z(self) -> "scout_compute_api_NumericSeries":
|
|
37114
|
+
return self._z
|
|
37115
|
+
|
|
37116
|
+
@builtins.property
|
|
37117
|
+
def driver_series(self) -> Optional["scout_compute_api_DriverSeries3d"]:
|
|
37118
|
+
return self._driver_series
|
|
37119
|
+
|
|
37120
|
+
|
|
37121
|
+
scout_compute_api_Scatter3d.__name__ = "Scatter3d"
|
|
37122
|
+
scout_compute_api_Scatter3d.__qualname__ = "Scatter3d"
|
|
37123
|
+
scout_compute_api_Scatter3d.__module__ = "nominal_api.scout_compute_api"
|
|
37124
|
+
|
|
37125
|
+
|
|
37126
|
+
class scout_compute_api_ScatterSummarizationStrategy(ConjureUnionType):
|
|
37127
|
+
_spatial: Optional["scout_compute_api_SpatialDecimateStrategy"] = None
|
|
37128
|
+
|
|
37129
|
+
@builtins.classmethod
|
|
37130
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37131
|
+
return {
|
|
37132
|
+
'spatial': ConjureFieldDefinition('spatial', scout_compute_api_SpatialDecimateStrategy)
|
|
37133
|
+
}
|
|
37134
|
+
|
|
37135
|
+
def __init__(
|
|
37136
|
+
self,
|
|
37137
|
+
spatial: Optional["scout_compute_api_SpatialDecimateStrategy"] = None,
|
|
37138
|
+
type_of_union: Optional[str] = None
|
|
37139
|
+
) -> None:
|
|
37140
|
+
if type_of_union is None:
|
|
37141
|
+
if (spatial is not None) != 1:
|
|
37142
|
+
raise ValueError('a union must contain a single member')
|
|
37143
|
+
|
|
37144
|
+
if spatial is not None:
|
|
37145
|
+
self._spatial = spatial
|
|
37146
|
+
self._type = 'spatial'
|
|
37147
|
+
|
|
37148
|
+
elif type_of_union == 'spatial':
|
|
37149
|
+
if spatial is None:
|
|
37150
|
+
raise ValueError('a union value must not be None')
|
|
37151
|
+
self._spatial = spatial
|
|
37152
|
+
self._type = 'spatial'
|
|
37153
|
+
|
|
37154
|
+
@builtins.property
|
|
37155
|
+
def spatial(self) -> Optional["scout_compute_api_SpatialDecimateStrategy"]:
|
|
37156
|
+
return self._spatial
|
|
37157
|
+
|
|
37158
|
+
def accept(self, visitor) -> Any:
|
|
37159
|
+
if not isinstance(visitor, scout_compute_api_ScatterSummarizationStrategyVisitor):
|
|
37160
|
+
raise ValueError('{} is not an instance of scout_compute_api_ScatterSummarizationStrategyVisitor'.format(visitor.__class__.__name__))
|
|
37161
|
+
if self._type == 'spatial' and self.spatial is not None:
|
|
37162
|
+
return visitor._spatial(self.spatial)
|
|
37163
|
+
|
|
37164
|
+
|
|
37165
|
+
scout_compute_api_ScatterSummarizationStrategy.__name__ = "ScatterSummarizationStrategy"
|
|
37166
|
+
scout_compute_api_ScatterSummarizationStrategy.__qualname__ = "ScatterSummarizationStrategy"
|
|
37167
|
+
scout_compute_api_ScatterSummarizationStrategy.__module__ = "nominal_api.scout_compute_api"
|
|
37168
|
+
|
|
37169
|
+
|
|
37170
|
+
class scout_compute_api_ScatterSummarizationStrategyVisitor:
|
|
37171
|
+
|
|
37172
|
+
@abstractmethod
|
|
37173
|
+
def _spatial(self, spatial: "scout_compute_api_SpatialDecimateStrategy") -> Any:
|
|
37174
|
+
pass
|
|
37175
|
+
|
|
37176
|
+
|
|
37177
|
+
scout_compute_api_ScatterSummarizationStrategyVisitor.__name__ = "ScatterSummarizationStrategyVisitor"
|
|
37178
|
+
scout_compute_api_ScatterSummarizationStrategyVisitor.__qualname__ = "ScatterSummarizationStrategyVisitor"
|
|
37179
|
+
scout_compute_api_ScatterSummarizationStrategyVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
37180
|
+
|
|
37181
|
+
|
|
36761
37182
|
class scout_compute_api_SelectValue(ConjureUnionType):
|
|
36762
37183
|
_first_point: Optional["scout_compute_api_Series"] = None
|
|
36763
37184
|
_first_range: Optional["scout_compute_api_RangeSeries"] = None
|
|
@@ -37282,6 +37703,27 @@ scout_compute_api_SignalFilterSeries.__qualname__ = "SignalFilterSeries"
|
|
|
37282
37703
|
scout_compute_api_SignalFilterSeries.__module__ = "nominal_api.scout_compute_api"
|
|
37283
37704
|
|
|
37284
37705
|
|
|
37706
|
+
class scout_compute_api_SpatialDecimateStrategy(ConjureBeanType):
|
|
37707
|
+
"""
|
|
37708
|
+
Decimate by spatial trees.
|
|
37709
|
+
Creates buckets by bisecting on each dimension, creating quadrants for 2d scatter and octants for 3d scatter.
|
|
37710
|
+
Continues subdividing by prioritizing larger undivided buckets until reaching the max amount of buckets.
|
|
37711
|
+
"""
|
|
37712
|
+
|
|
37713
|
+
@builtins.classmethod
|
|
37714
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37715
|
+
return {
|
|
37716
|
+
}
|
|
37717
|
+
|
|
37718
|
+
__slots__: List[str] = []
|
|
37719
|
+
|
|
37720
|
+
|
|
37721
|
+
|
|
37722
|
+
scout_compute_api_SpatialDecimateStrategy.__name__ = "SpatialDecimateStrategy"
|
|
37723
|
+
scout_compute_api_SpatialDecimateStrategy.__qualname__ = "SpatialDecimateStrategy"
|
|
37724
|
+
scout_compute_api_SpatialDecimateStrategy.__module__ = "nominal_api.scout_compute_api"
|
|
37725
|
+
|
|
37726
|
+
|
|
37285
37727
|
class scout_compute_api_StabilityDetectionRanges(ConjureBeanType):
|
|
37286
37728
|
"""
|
|
37287
37729
|
Outputs a set of ranges where the input series is stable. For each point, the min and max are calculated over
|
|
@@ -37749,6 +38191,55 @@ scout_compute_api_SummarizeCartesian.__qualname__ = "SummarizeCartesian"
|
|
|
37749
38191
|
scout_compute_api_SummarizeCartesian.__module__ = "nominal_api.scout_compute_api"
|
|
37750
38192
|
|
|
37751
38193
|
|
|
38194
|
+
class scout_compute_api_SummarizeCartesian3d(ConjureBeanType):
|
|
38195
|
+
|
|
38196
|
+
@builtins.classmethod
|
|
38197
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
38198
|
+
return {
|
|
38199
|
+
'input': ConjureFieldDefinition('input', scout_compute_api_Cartesian3d),
|
|
38200
|
+
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_compute_api_Cartesian3dBounds]),
|
|
38201
|
+
'max_points': ConjureFieldDefinition('maxPoints', OptionalTypeWrapper[int]),
|
|
38202
|
+
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', OptionalTypeWrapper[scout_compute_api_ScatterSummarizationStrategy])
|
|
38203
|
+
}
|
|
38204
|
+
|
|
38205
|
+
__slots__: List[str] = ['_input', '_bounds', '_max_points', '_summarization_strategy']
|
|
38206
|
+
|
|
38207
|
+
def __init__(self, input: "scout_compute_api_Cartesian3d", bounds: Optional["scout_compute_api_Cartesian3dBounds"] = None, max_points: Optional[int] = None, summarization_strategy: Optional["scout_compute_api_ScatterSummarizationStrategy"] = None) -> None:
|
|
38208
|
+
self._input = input
|
|
38209
|
+
self._bounds = bounds
|
|
38210
|
+
self._max_points = max_points
|
|
38211
|
+
self._summarization_strategy = summarization_strategy
|
|
38212
|
+
|
|
38213
|
+
@builtins.property
|
|
38214
|
+
def input(self) -> "scout_compute_api_Cartesian3d":
|
|
38215
|
+
return self._input
|
|
38216
|
+
|
|
38217
|
+
@builtins.property
|
|
38218
|
+
def bounds(self) -> Optional["scout_compute_api_Cartesian3dBounds"]:
|
|
38219
|
+
return self._bounds
|
|
38220
|
+
|
|
38221
|
+
@builtins.property
|
|
38222
|
+
def max_points(self) -> Optional[int]:
|
|
38223
|
+
"""
|
|
38224
|
+
The maximum number of points to return in the response.
|
|
38225
|
+
If more points are found, a BucketedCartesian3dPlot will be returned.
|
|
38226
|
+
Maximum is 10,000. Defaults to 2,000 if not specified.
|
|
38227
|
+
"""
|
|
38228
|
+
return self._max_points
|
|
38229
|
+
|
|
38230
|
+
@builtins.property
|
|
38231
|
+
def summarization_strategy(self) -> Optional["scout_compute_api_ScatterSummarizationStrategy"]:
|
|
38232
|
+
"""
|
|
38233
|
+
The strategy to use when summarizing the series. Only spatial decimation is supported.
|
|
38234
|
+
"""
|
|
38235
|
+
return self._summarization_strategy
|
|
38236
|
+
|
|
38237
|
+
|
|
38238
|
+
scout_compute_api_SummarizeCartesian3d.__name__ = "SummarizeCartesian3d"
|
|
38239
|
+
scout_compute_api_SummarizeCartesian3d.__qualname__ = "SummarizeCartesian3d"
|
|
38240
|
+
scout_compute_api_SummarizeCartesian3d.__module__ = "nominal_api.scout_compute_api"
|
|
38241
|
+
|
|
38242
|
+
|
|
37752
38243
|
class scout_compute_api_SummarizeGeo(ConjureBeanType):
|
|
37753
38244
|
|
|
37754
38245
|
@builtins.classmethod
|
|
@@ -41984,6 +42475,115 @@ scout_compute_resolved_api_BitOperationSeriesNode.__qualname__ = "BitOperationSe
|
|
|
41984
42475
|
scout_compute_resolved_api_BitOperationSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
41985
42476
|
|
|
41986
42477
|
|
|
42478
|
+
class scout_compute_resolved_api_Cartesian3dBounds(ConjureBeanType):
|
|
42479
|
+
|
|
42480
|
+
@builtins.classmethod
|
|
42481
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
42482
|
+
return {
|
|
42483
|
+
'min_x': ConjureFieldDefinition('minX', float),
|
|
42484
|
+
'max_x': ConjureFieldDefinition('maxX', float),
|
|
42485
|
+
'min_y': ConjureFieldDefinition('minY', float),
|
|
42486
|
+
'max_y': ConjureFieldDefinition('maxY', float),
|
|
42487
|
+
'min_z': ConjureFieldDefinition('minZ', float),
|
|
42488
|
+
'max_z': ConjureFieldDefinition('maxZ', float)
|
|
42489
|
+
}
|
|
42490
|
+
|
|
42491
|
+
__slots__: List[str] = ['_min_x', '_max_x', '_min_y', '_max_y', '_min_z', '_max_z']
|
|
42492
|
+
|
|
42493
|
+
def __init__(self, max_x: float, max_y: float, max_z: float, min_x: float, min_y: float, min_z: float) -> None:
|
|
42494
|
+
self._min_x = min_x
|
|
42495
|
+
self._max_x = max_x
|
|
42496
|
+
self._min_y = min_y
|
|
42497
|
+
self._max_y = max_y
|
|
42498
|
+
self._min_z = min_z
|
|
42499
|
+
self._max_z = max_z
|
|
42500
|
+
|
|
42501
|
+
@builtins.property
|
|
42502
|
+
def min_x(self) -> float:
|
|
42503
|
+
return self._min_x
|
|
42504
|
+
|
|
42505
|
+
@builtins.property
|
|
42506
|
+
def max_x(self) -> float:
|
|
42507
|
+
return self._max_x
|
|
42508
|
+
|
|
42509
|
+
@builtins.property
|
|
42510
|
+
def min_y(self) -> float:
|
|
42511
|
+
return self._min_y
|
|
42512
|
+
|
|
42513
|
+
@builtins.property
|
|
42514
|
+
def max_y(self) -> float:
|
|
42515
|
+
return self._max_y
|
|
42516
|
+
|
|
42517
|
+
@builtins.property
|
|
42518
|
+
def min_z(self) -> float:
|
|
42519
|
+
return self._min_z
|
|
42520
|
+
|
|
42521
|
+
@builtins.property
|
|
42522
|
+
def max_z(self) -> float:
|
|
42523
|
+
return self._max_z
|
|
42524
|
+
|
|
42525
|
+
|
|
42526
|
+
scout_compute_resolved_api_Cartesian3dBounds.__name__ = "Cartesian3dBounds"
|
|
42527
|
+
scout_compute_resolved_api_Cartesian3dBounds.__qualname__ = "Cartesian3dBounds"
|
|
42528
|
+
scout_compute_resolved_api_Cartesian3dBounds.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
42529
|
+
|
|
42530
|
+
|
|
42531
|
+
class scout_compute_resolved_api_Cartesian3dNode(ConjureUnionType):
|
|
42532
|
+
_scatter3d: Optional["scout_compute_resolved_api_Scatter3dNode"] = None
|
|
42533
|
+
|
|
42534
|
+
@builtins.classmethod
|
|
42535
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
42536
|
+
return {
|
|
42537
|
+
'scatter3d': ConjureFieldDefinition('scatter3d', scout_compute_resolved_api_Scatter3dNode)
|
|
42538
|
+
}
|
|
42539
|
+
|
|
42540
|
+
def __init__(
|
|
42541
|
+
self,
|
|
42542
|
+
scatter3d: Optional["scout_compute_resolved_api_Scatter3dNode"] = None,
|
|
42543
|
+
type_of_union: Optional[str] = None
|
|
42544
|
+
) -> None:
|
|
42545
|
+
if type_of_union is None:
|
|
42546
|
+
if (scatter3d is not None) != 1:
|
|
42547
|
+
raise ValueError('a union must contain a single member')
|
|
42548
|
+
|
|
42549
|
+
if scatter3d is not None:
|
|
42550
|
+
self._scatter3d = scatter3d
|
|
42551
|
+
self._type = 'scatter3d'
|
|
42552
|
+
|
|
42553
|
+
elif type_of_union == 'scatter3d':
|
|
42554
|
+
if scatter3d is None:
|
|
42555
|
+
raise ValueError('a union value must not be None')
|
|
42556
|
+
self._scatter3d = scatter3d
|
|
42557
|
+
self._type = 'scatter3d'
|
|
42558
|
+
|
|
42559
|
+
@builtins.property
|
|
42560
|
+
def scatter3d(self) -> Optional["scout_compute_resolved_api_Scatter3dNode"]:
|
|
42561
|
+
return self._scatter3d
|
|
42562
|
+
|
|
42563
|
+
def accept(self, visitor) -> Any:
|
|
42564
|
+
if not isinstance(visitor, scout_compute_resolved_api_Cartesian3dNodeVisitor):
|
|
42565
|
+
raise ValueError('{} is not an instance of scout_compute_resolved_api_Cartesian3dNodeVisitor'.format(visitor.__class__.__name__))
|
|
42566
|
+
if self._type == 'scatter3d' and self.scatter3d is not None:
|
|
42567
|
+
return visitor._scatter3d(self.scatter3d)
|
|
42568
|
+
|
|
42569
|
+
|
|
42570
|
+
scout_compute_resolved_api_Cartesian3dNode.__name__ = "Cartesian3dNode"
|
|
42571
|
+
scout_compute_resolved_api_Cartesian3dNode.__qualname__ = "Cartesian3dNode"
|
|
42572
|
+
scout_compute_resolved_api_Cartesian3dNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
42573
|
+
|
|
42574
|
+
|
|
42575
|
+
class scout_compute_resolved_api_Cartesian3dNodeVisitor:
|
|
42576
|
+
|
|
42577
|
+
@abstractmethod
|
|
42578
|
+
def _scatter3d(self, scatter3d: "scout_compute_resolved_api_Scatter3dNode") -> Any:
|
|
42579
|
+
pass
|
|
42580
|
+
|
|
42581
|
+
|
|
42582
|
+
scout_compute_resolved_api_Cartesian3dNodeVisitor.__name__ = "Cartesian3dNodeVisitor"
|
|
42583
|
+
scout_compute_resolved_api_Cartesian3dNodeVisitor.__qualname__ = "Cartesian3dNodeVisitor"
|
|
42584
|
+
scout_compute_resolved_api_Cartesian3dNodeVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
42585
|
+
|
|
42586
|
+
|
|
41987
42587
|
class scout_compute_resolved_api_CartesianBounds(ConjureBeanType):
|
|
41988
42588
|
"""
|
|
41989
42589
|
Min/max bounds of an XY Cartesian plot, inclusive.
|
|
@@ -45119,6 +45719,7 @@ class scout_compute_resolved_api_ResolvedNode(ConjureUnionType):
|
|
|
45119
45719
|
_series: Optional["scout_compute_resolved_api_SummarizeSeriesNode"] = None
|
|
45120
45720
|
_value: Optional["scout_compute_resolved_api_SelectValueNode"] = None
|
|
45121
45721
|
_cartesian: Optional["scout_compute_resolved_api_SummarizeCartesianNode"] = None
|
|
45722
|
+
_cartesian3d: Optional["scout_compute_resolved_api_SummarizeCartesian3dNode"] = None
|
|
45122
45723
|
_frequency: Optional["scout_compute_resolved_api_FrequencyDomainNode"] = None
|
|
45123
45724
|
_histogram: Optional["scout_compute_resolved_api_HistogramNode"] = None
|
|
45124
45725
|
_geo: Optional["scout_compute_resolved_api_SummarizeGeoNode"] = None
|
|
@@ -45130,6 +45731,7 @@ class scout_compute_resolved_api_ResolvedNode(ConjureUnionType):
|
|
|
45130
45731
|
'series': ConjureFieldDefinition('series', scout_compute_resolved_api_SummarizeSeriesNode),
|
|
45131
45732
|
'value': ConjureFieldDefinition('value', scout_compute_resolved_api_SelectValueNode),
|
|
45132
45733
|
'cartesian': ConjureFieldDefinition('cartesian', scout_compute_resolved_api_SummarizeCartesianNode),
|
|
45734
|
+
'cartesian3d': ConjureFieldDefinition('cartesian3d', scout_compute_resolved_api_SummarizeCartesian3dNode),
|
|
45133
45735
|
'frequency': ConjureFieldDefinition('frequency', scout_compute_resolved_api_FrequencyDomainNode),
|
|
45134
45736
|
'histogram': ConjureFieldDefinition('histogram', scout_compute_resolved_api_HistogramNode),
|
|
45135
45737
|
'geo': ConjureFieldDefinition('geo', scout_compute_resolved_api_SummarizeGeoNode)
|
|
@@ -45141,13 +45743,14 @@ class scout_compute_resolved_api_ResolvedNode(ConjureUnionType):
|
|
|
45141
45743
|
series: Optional["scout_compute_resolved_api_SummarizeSeriesNode"] = None,
|
|
45142
45744
|
value: Optional["scout_compute_resolved_api_SelectValueNode"] = None,
|
|
45143
45745
|
cartesian: Optional["scout_compute_resolved_api_SummarizeCartesianNode"] = None,
|
|
45746
|
+
cartesian3d: Optional["scout_compute_resolved_api_SummarizeCartesian3dNode"] = None,
|
|
45144
45747
|
frequency: Optional["scout_compute_resolved_api_FrequencyDomainNode"] = None,
|
|
45145
45748
|
histogram: Optional["scout_compute_resolved_api_HistogramNode"] = None,
|
|
45146
45749
|
geo: Optional["scout_compute_resolved_api_SummarizeGeoNode"] = None,
|
|
45147
45750
|
type_of_union: Optional[str] = None
|
|
45148
45751
|
) -> None:
|
|
45149
45752
|
if type_of_union is None:
|
|
45150
|
-
if (ranges is not None) + (series is not None) + (value is not None) + (cartesian is not None) + (frequency is not None) + (histogram is not None) + (geo is not None) != 1:
|
|
45753
|
+
if (ranges is not None) + (series is not None) + (value is not None) + (cartesian is not None) + (cartesian3d is not None) + (frequency is not None) + (histogram is not None) + (geo is not None) != 1:
|
|
45151
45754
|
raise ValueError('a union must contain a single member')
|
|
45152
45755
|
|
|
45153
45756
|
if ranges is not None:
|
|
@@ -45162,6 +45765,9 @@ class scout_compute_resolved_api_ResolvedNode(ConjureUnionType):
|
|
|
45162
45765
|
if cartesian is not None:
|
|
45163
45766
|
self._cartesian = cartesian
|
|
45164
45767
|
self._type = 'cartesian'
|
|
45768
|
+
if cartesian3d is not None:
|
|
45769
|
+
self._cartesian3d = cartesian3d
|
|
45770
|
+
self._type = 'cartesian3d'
|
|
45165
45771
|
if frequency is not None:
|
|
45166
45772
|
self._frequency = frequency
|
|
45167
45773
|
self._type = 'frequency'
|
|
@@ -45192,6 +45798,11 @@ class scout_compute_resolved_api_ResolvedNode(ConjureUnionType):
|
|
|
45192
45798
|
raise ValueError('a union value must not be None')
|
|
45193
45799
|
self._cartesian = cartesian
|
|
45194
45800
|
self._type = 'cartesian'
|
|
45801
|
+
elif type_of_union == 'cartesian3d':
|
|
45802
|
+
if cartesian3d is None:
|
|
45803
|
+
raise ValueError('a union value must not be None')
|
|
45804
|
+
self._cartesian3d = cartesian3d
|
|
45805
|
+
self._type = 'cartesian3d'
|
|
45195
45806
|
elif type_of_union == 'frequency':
|
|
45196
45807
|
if frequency is None:
|
|
45197
45808
|
raise ValueError('a union value must not be None')
|
|
@@ -45224,6 +45835,10 @@ class scout_compute_resolved_api_ResolvedNode(ConjureUnionType):
|
|
|
45224
45835
|
def cartesian(self) -> Optional["scout_compute_resolved_api_SummarizeCartesianNode"]:
|
|
45225
45836
|
return self._cartesian
|
|
45226
45837
|
|
|
45838
|
+
@builtins.property
|
|
45839
|
+
def cartesian3d(self) -> Optional["scout_compute_resolved_api_SummarizeCartesian3dNode"]:
|
|
45840
|
+
return self._cartesian3d
|
|
45841
|
+
|
|
45227
45842
|
@builtins.property
|
|
45228
45843
|
def frequency(self) -> Optional["scout_compute_resolved_api_FrequencyDomainNode"]:
|
|
45229
45844
|
return self._frequency
|
|
@@ -45247,6 +45862,8 @@ class scout_compute_resolved_api_ResolvedNode(ConjureUnionType):
|
|
|
45247
45862
|
return visitor._value(self.value)
|
|
45248
45863
|
if self._type == 'cartesian' and self.cartesian is not None:
|
|
45249
45864
|
return visitor._cartesian(self.cartesian)
|
|
45865
|
+
if self._type == 'cartesian3d' and self.cartesian3d is not None:
|
|
45866
|
+
return visitor._cartesian3d(self.cartesian3d)
|
|
45250
45867
|
if self._type == 'frequency' and self.frequency is not None:
|
|
45251
45868
|
return visitor._frequency(self.frequency)
|
|
45252
45869
|
if self._type == 'histogram' and self.histogram is not None:
|
|
@@ -45278,6 +45895,10 @@ class scout_compute_resolved_api_ResolvedNodeVisitor:
|
|
|
45278
45895
|
def _cartesian(self, cartesian: "scout_compute_resolved_api_SummarizeCartesianNode") -> Any:
|
|
45279
45896
|
pass
|
|
45280
45897
|
|
|
45898
|
+
@abstractmethod
|
|
45899
|
+
def _cartesian3d(self, cartesian3d: "scout_compute_resolved_api_SummarizeCartesian3dNode") -> Any:
|
|
45900
|
+
pass
|
|
45901
|
+
|
|
45281
45902
|
@abstractmethod
|
|
45282
45903
|
def _frequency(self, frequency: "scout_compute_resolved_api_FrequencyDomainNode") -> Any:
|
|
45283
45904
|
pass
|
|
@@ -45366,6 +45987,47 @@ scout_compute_resolved_api_ScaleSeriesNode.__qualname__ = "ScaleSeriesNode"
|
|
|
45366
45987
|
scout_compute_resolved_api_ScaleSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
45367
45988
|
|
|
45368
45989
|
|
|
45990
|
+
class scout_compute_resolved_api_Scatter3dNode(ConjureBeanType):
|
|
45991
|
+
|
|
45992
|
+
@builtins.classmethod
|
|
45993
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
45994
|
+
return {
|
|
45995
|
+
'x': ConjureFieldDefinition('x', scout_compute_resolved_api_NumericSeriesNode),
|
|
45996
|
+
'y': ConjureFieldDefinition('y', scout_compute_resolved_api_NumericSeriesNode),
|
|
45997
|
+
'z': ConjureFieldDefinition('z', scout_compute_resolved_api_NumericSeriesNode),
|
|
45998
|
+
'driver_series': ConjureFieldDefinition('driverSeries', scout_compute_api_DriverSeries3d)
|
|
45999
|
+
}
|
|
46000
|
+
|
|
46001
|
+
__slots__: List[str] = ['_x', '_y', '_z', '_driver_series']
|
|
46002
|
+
|
|
46003
|
+
def __init__(self, driver_series: "scout_compute_api_DriverSeries3d", x: "scout_compute_resolved_api_NumericSeriesNode", y: "scout_compute_resolved_api_NumericSeriesNode", z: "scout_compute_resolved_api_NumericSeriesNode") -> None:
|
|
46004
|
+
self._x = x
|
|
46005
|
+
self._y = y
|
|
46006
|
+
self._z = z
|
|
46007
|
+
self._driver_series = driver_series
|
|
46008
|
+
|
|
46009
|
+
@builtins.property
|
|
46010
|
+
def x(self) -> "scout_compute_resolved_api_NumericSeriesNode":
|
|
46011
|
+
return self._x
|
|
46012
|
+
|
|
46013
|
+
@builtins.property
|
|
46014
|
+
def y(self) -> "scout_compute_resolved_api_NumericSeriesNode":
|
|
46015
|
+
return self._y
|
|
46016
|
+
|
|
46017
|
+
@builtins.property
|
|
46018
|
+
def z(self) -> "scout_compute_resolved_api_NumericSeriesNode":
|
|
46019
|
+
return self._z
|
|
46020
|
+
|
|
46021
|
+
@builtins.property
|
|
46022
|
+
def driver_series(self) -> "scout_compute_api_DriverSeries3d":
|
|
46023
|
+
return self._driver_series
|
|
46024
|
+
|
|
46025
|
+
|
|
46026
|
+
scout_compute_resolved_api_Scatter3dNode.__name__ = "Scatter3dNode"
|
|
46027
|
+
scout_compute_resolved_api_Scatter3dNode.__qualname__ = "Scatter3dNode"
|
|
46028
|
+
scout_compute_resolved_api_Scatter3dNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
46029
|
+
|
|
46030
|
+
|
|
45369
46031
|
class scout_compute_resolved_api_ScatterNode(ConjureBeanType):
|
|
45370
46032
|
|
|
45371
46033
|
@builtins.classmethod
|
|
@@ -45915,6 +46577,47 @@ scout_compute_resolved_api_SumSeriesNode.__qualname__ = "SumSeriesNode"
|
|
|
45915
46577
|
scout_compute_resolved_api_SumSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
45916
46578
|
|
|
45917
46579
|
|
|
46580
|
+
class scout_compute_resolved_api_SummarizeCartesian3dNode(ConjureBeanType):
|
|
46581
|
+
|
|
46582
|
+
@builtins.classmethod
|
|
46583
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
46584
|
+
return {
|
|
46585
|
+
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_Cartesian3dNode),
|
|
46586
|
+
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_compute_resolved_api_Cartesian3dBounds]),
|
|
46587
|
+
'max_points': ConjureFieldDefinition('maxPoints', OptionalTypeWrapper[int]),
|
|
46588
|
+
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', scout_compute_api_ScatterSummarizationStrategy)
|
|
46589
|
+
}
|
|
46590
|
+
|
|
46591
|
+
__slots__: List[str] = ['_input', '_bounds', '_max_points', '_summarization_strategy']
|
|
46592
|
+
|
|
46593
|
+
def __init__(self, input: "scout_compute_resolved_api_Cartesian3dNode", summarization_strategy: "scout_compute_api_ScatterSummarizationStrategy", bounds: Optional["scout_compute_resolved_api_Cartesian3dBounds"] = None, max_points: Optional[int] = None) -> None:
|
|
46594
|
+
self._input = input
|
|
46595
|
+
self._bounds = bounds
|
|
46596
|
+
self._max_points = max_points
|
|
46597
|
+
self._summarization_strategy = summarization_strategy
|
|
46598
|
+
|
|
46599
|
+
@builtins.property
|
|
46600
|
+
def input(self) -> "scout_compute_resolved_api_Cartesian3dNode":
|
|
46601
|
+
return self._input
|
|
46602
|
+
|
|
46603
|
+
@builtins.property
|
|
46604
|
+
def bounds(self) -> Optional["scout_compute_resolved_api_Cartesian3dBounds"]:
|
|
46605
|
+
return self._bounds
|
|
46606
|
+
|
|
46607
|
+
@builtins.property
|
|
46608
|
+
def max_points(self) -> Optional[int]:
|
|
46609
|
+
return self._max_points
|
|
46610
|
+
|
|
46611
|
+
@builtins.property
|
|
46612
|
+
def summarization_strategy(self) -> "scout_compute_api_ScatterSummarizationStrategy":
|
|
46613
|
+
return self._summarization_strategy
|
|
46614
|
+
|
|
46615
|
+
|
|
46616
|
+
scout_compute_resolved_api_SummarizeCartesian3dNode.__name__ = "SummarizeCartesian3dNode"
|
|
46617
|
+
scout_compute_resolved_api_SummarizeCartesian3dNode.__qualname__ = "SummarizeCartesian3dNode"
|
|
46618
|
+
scout_compute_resolved_api_SummarizeCartesian3dNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
46619
|
+
|
|
46620
|
+
|
|
45918
46621
|
class scout_compute_resolved_api_SummarizeCartesianNode(ConjureBeanType):
|
|
45919
46622
|
|
|
45920
46623
|
@builtins.classmethod
|
|
@@ -25,12 +25,18 @@ from .._impl import (
|
|
|
25
25
|
scout_compute_api_BitOrFunction as BitOrFunction,
|
|
26
26
|
scout_compute_api_BitTestFunction as BitTestFunction,
|
|
27
27
|
scout_compute_api_BitXorFunction as BitXorFunction,
|
|
28
|
+
scout_compute_api_BucketedCartesian3dPlot as BucketedCartesian3dPlot,
|
|
28
29
|
scout_compute_api_BucketedCartesianPlot as BucketedCartesianPlot,
|
|
29
30
|
scout_compute_api_BucketedEnumPlot as BucketedEnumPlot,
|
|
30
31
|
scout_compute_api_BucketedGeoPlot as BucketedGeoPlot,
|
|
31
32
|
scout_compute_api_BucketedGeoPlotVisitor as BucketedGeoPlotVisitor,
|
|
32
33
|
scout_compute_api_BucketedNumericPlot as BucketedNumericPlot,
|
|
33
34
|
scout_compute_api_Cartesian as Cartesian,
|
|
35
|
+
scout_compute_api_Cartesian3d as Cartesian3d,
|
|
36
|
+
scout_compute_api_Cartesian3dBounds as Cartesian3dBounds,
|
|
37
|
+
scout_compute_api_Cartesian3dBucket as Cartesian3dBucket,
|
|
38
|
+
scout_compute_api_Cartesian3dUnitResult as Cartesian3dUnitResult,
|
|
39
|
+
scout_compute_api_Cartesian3dVisitor as Cartesian3dVisitor,
|
|
34
40
|
scout_compute_api_CartesianBounds as CartesianBounds,
|
|
35
41
|
scout_compute_api_CartesianBucket as CartesianBucket,
|
|
36
42
|
scout_compute_api_CartesianPlot as CartesianPlot,
|
|
@@ -68,6 +74,7 @@ from .._impl import (
|
|
|
68
74
|
scout_compute_api_DerivativeSeries as DerivativeSeries,
|
|
69
75
|
scout_compute_api_DoubleConstant as DoubleConstant,
|
|
70
76
|
scout_compute_api_DoubleConstantVisitor as DoubleConstantVisitor,
|
|
77
|
+
scout_compute_api_DriverSeries3d as DriverSeries3d,
|
|
71
78
|
scout_compute_api_DurationConstant as DurationConstant,
|
|
72
79
|
scout_compute_api_DurationConstantVisitor as DurationConstantVisitor,
|
|
73
80
|
scout_compute_api_EnumAggregationFunction as EnumAggregationFunction,
|
|
@@ -215,6 +222,9 @@ from .._impl import (
|
|
|
215
222
|
scout_compute_api_RunChannel as RunChannel,
|
|
216
223
|
scout_compute_api_ScaleSeries as ScaleSeries,
|
|
217
224
|
scout_compute_api_Scatter as Scatter,
|
|
225
|
+
scout_compute_api_Scatter3d as Scatter3d,
|
|
226
|
+
scout_compute_api_ScatterSummarizationStrategy as ScatterSummarizationStrategy,
|
|
227
|
+
scout_compute_api_ScatterSummarizationStrategyVisitor as ScatterSummarizationStrategyVisitor,
|
|
218
228
|
scout_compute_api_SelectValue as SelectValue,
|
|
219
229
|
scout_compute_api_SelectValueVisitor as SelectValueVisitor,
|
|
220
230
|
scout_compute_api_Series as Series,
|
|
@@ -227,6 +237,7 @@ from .._impl import (
|
|
|
227
237
|
scout_compute_api_SignalFilterConfiguration as SignalFilterConfiguration,
|
|
228
238
|
scout_compute_api_SignalFilterConfigurationVisitor as SignalFilterConfigurationVisitor,
|
|
229
239
|
scout_compute_api_SignalFilterSeries as SignalFilterSeries,
|
|
240
|
+
scout_compute_api_SpatialDecimateStrategy as SpatialDecimateStrategy,
|
|
230
241
|
scout_compute_api_StabilityDetectionRanges as StabilityDetectionRanges,
|
|
231
242
|
scout_compute_api_StabilityWindowConfiguration as StabilityWindowConfiguration,
|
|
232
243
|
scout_compute_api_StaleRanges as StaleRanges,
|
|
@@ -240,6 +251,7 @@ from .._impl import (
|
|
|
240
251
|
scout_compute_api_SummarizationStrategy as SummarizationStrategy,
|
|
241
252
|
scout_compute_api_SummarizationStrategyVisitor as SummarizationStrategyVisitor,
|
|
242
253
|
scout_compute_api_SummarizeCartesian as SummarizeCartesian,
|
|
254
|
+
scout_compute_api_SummarizeCartesian3d as SummarizeCartesian3d,
|
|
243
255
|
scout_compute_api_SummarizeGeo as SummarizeGeo,
|
|
244
256
|
scout_compute_api_SummarizeRanges as SummarizeRanges,
|
|
245
257
|
scout_compute_api_SummarizeSeries as SummarizeSeries,
|
|
@@ -8,6 +8,9 @@ from .._impl import (
|
|
|
8
8
|
scout_compute_resolved_api_BandStopConfiguration as BandStopConfiguration,
|
|
9
9
|
scout_compute_resolved_api_BinaryArithmeticSeriesNode as BinaryArithmeticSeriesNode,
|
|
10
10
|
scout_compute_resolved_api_BitOperationSeriesNode as BitOperationSeriesNode,
|
|
11
|
+
scout_compute_resolved_api_Cartesian3dBounds as Cartesian3dBounds,
|
|
12
|
+
scout_compute_resolved_api_Cartesian3dNode as Cartesian3dNode,
|
|
13
|
+
scout_compute_resolved_api_Cartesian3dNodeVisitor as Cartesian3dNodeVisitor,
|
|
11
14
|
scout_compute_resolved_api_CartesianBounds as CartesianBounds,
|
|
12
15
|
scout_compute_resolved_api_CartesianNode as CartesianNode,
|
|
13
16
|
scout_compute_resolved_api_CartesianNodeVisitor as CartesianNodeVisitor,
|
|
@@ -85,6 +88,7 @@ from .._impl import (
|
|
|
85
88
|
scout_compute_resolved_api_ResolvedNodeVisitor as ResolvedNodeVisitor,
|
|
86
89
|
scout_compute_resolved_api_RollingOperationSeriesNode as RollingOperationSeriesNode,
|
|
87
90
|
scout_compute_resolved_api_ScaleSeriesNode as ScaleSeriesNode,
|
|
91
|
+
scout_compute_resolved_api_Scatter3dNode as Scatter3dNode,
|
|
88
92
|
scout_compute_resolved_api_ScatterNode as ScatterNode,
|
|
89
93
|
scout_compute_resolved_api_SelectValueNode as SelectValueNode,
|
|
90
94
|
scout_compute_resolved_api_SelectValueNodeVisitor as SelectValueNodeVisitor,
|
|
@@ -97,6 +101,7 @@ from .._impl import (
|
|
|
97
101
|
scout_compute_resolved_api_StabilityDetectionRangesNode as StabilityDetectionRangesNode,
|
|
98
102
|
scout_compute_resolved_api_StaleRangesNode as StaleRangesNode,
|
|
99
103
|
scout_compute_resolved_api_SumSeriesNode as SumSeriesNode,
|
|
104
|
+
scout_compute_resolved_api_SummarizeCartesian3dNode as SummarizeCartesian3dNode,
|
|
100
105
|
scout_compute_resolved_api_SummarizeCartesianNode as SummarizeCartesianNode,
|
|
101
106
|
scout_compute_resolved_api_SummarizeGeoNode as SummarizeGeoNode,
|
|
102
107
|
scout_compute_resolved_api_SummarizeRangesNode as SummarizeRangesNode,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=try0J1kSCRSDuYmdY1Gp0cJ9ae40SR1-ct5ktDNhqOs,1823
|
|
2
|
+
nominal_api/_impl.py,sha256=T2aMV_ZvPAVewNOeikOpbo8tmFytoSSrKMuR540IT1I,2796554
|
|
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=Bu-pKUh3aS9_f5m-DZf6W_BUlVo9qYE7EDvaT-rvWQ0,423
|
|
@@ -27,10 +27,10 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=FPiuWjrlG5wLVbd7KE7M
|
|
|
27
27
|
nominal_api/scout_checks_api/__init__.py,sha256=RJH7HsXjUhItC11V9C-hfv6lkIfiSXyxnB8slUpaT2g,5203
|
|
28
28
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=8BL5jE9NDxqCj9DyvZWSPhq6zw2J7xp6aLsl3x9rpyw,4530
|
|
29
29
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=1LCXQe64tDqqeMQixW8PI-R_edSz7F5X0x2_ufEuC8M,480
|
|
30
|
-
nominal_api/scout_compute_api/__init__.py,sha256=
|
|
30
|
+
nominal_api/scout_compute_api/__init__.py,sha256=B2yz-tKnA6_EclHLOHBAax2mccXfueBYtGVmASrBfCI,18024
|
|
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=ptE3Q2eYAr9h0m6Gq3X7uGNQmur8K2ELIvvnU8FXZw0,9065
|
|
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
|
|
@@ -67,7 +67,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=7NlQhIzOKOcjwMNUI89f
|
|
|
67
67
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
68
68
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
69
69
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
70
|
-
nominal_api-0.
|
|
71
|
-
nominal_api-0.
|
|
72
|
-
nominal_api-0.
|
|
73
|
-
nominal_api-0.
|
|
70
|
+
nominal_api-0.570.0.dist-info/METADATA,sha256=wcAYn87BCNVuncxyP1UQ0OxVYdgMLobcy237GXo73k4,199
|
|
71
|
+
nominal_api-0.570.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
72
|
+
nominal_api-0.570.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
73
|
+
nominal_api-0.570.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|