nominal-api 0.765.0__py3-none-any.whl → 0.767.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 +614 -8
- nominal_api/scout_compute_api/__init__.py +22 -0
- nominal_api/scout_compute_resolved_api/__init__.py +4 -0
- {nominal_api-0.765.0.dist-info → nominal_api-0.767.0.dist-info}/METADATA +1 -1
- {nominal_api-0.765.0.dist-info → nominal_api-0.767.0.dist-info}/RECORD +8 -8
- {nominal_api-0.765.0.dist-info → nominal_api-0.767.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.765.0.dist-info → nominal_api-0.767.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -37875,6 +37875,202 @@ scout_compute_api_ArithmeticSeries.__qualname__ = "ArithmeticSeries"
|
|
|
37875
37875
|
scout_compute_api_ArithmeticSeries.__module__ = "nominal_api.scout_compute_api"
|
|
37876
37876
|
|
|
37877
37877
|
|
|
37878
|
+
class scout_compute_api_ArraySeries(ConjureUnionType):
|
|
37879
|
+
_numeric1d: Optional["scout_compute_api_Numeric1dArraySeries"] = None
|
|
37880
|
+
_enum1d: Optional["scout_compute_api_Enum1dArraySeries"] = None
|
|
37881
|
+
|
|
37882
|
+
@builtins.classmethod
|
|
37883
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37884
|
+
return {
|
|
37885
|
+
'numeric1d': ConjureFieldDefinition('numeric1d', scout_compute_api_Numeric1dArraySeries),
|
|
37886
|
+
'enum1d': ConjureFieldDefinition('enum1d', scout_compute_api_Enum1dArraySeries)
|
|
37887
|
+
}
|
|
37888
|
+
|
|
37889
|
+
def __init__(
|
|
37890
|
+
self,
|
|
37891
|
+
numeric1d: Optional["scout_compute_api_Numeric1dArraySeries"] = None,
|
|
37892
|
+
enum1d: Optional["scout_compute_api_Enum1dArraySeries"] = None,
|
|
37893
|
+
type_of_union: Optional[str] = None
|
|
37894
|
+
) -> None:
|
|
37895
|
+
if type_of_union is None:
|
|
37896
|
+
if (numeric1d is not None) + (enum1d is not None) != 1:
|
|
37897
|
+
raise ValueError('a union must contain a single member')
|
|
37898
|
+
|
|
37899
|
+
if numeric1d is not None:
|
|
37900
|
+
self._numeric1d = numeric1d
|
|
37901
|
+
self._type = 'numeric1d'
|
|
37902
|
+
if enum1d is not None:
|
|
37903
|
+
self._enum1d = enum1d
|
|
37904
|
+
self._type = 'enum1d'
|
|
37905
|
+
|
|
37906
|
+
elif type_of_union == 'numeric1d':
|
|
37907
|
+
if numeric1d is None:
|
|
37908
|
+
raise ValueError('a union value must not be None')
|
|
37909
|
+
self._numeric1d = numeric1d
|
|
37910
|
+
self._type = 'numeric1d'
|
|
37911
|
+
elif type_of_union == 'enum1d':
|
|
37912
|
+
if enum1d is None:
|
|
37913
|
+
raise ValueError('a union value must not be None')
|
|
37914
|
+
self._enum1d = enum1d
|
|
37915
|
+
self._type = 'enum1d'
|
|
37916
|
+
|
|
37917
|
+
@builtins.property
|
|
37918
|
+
def numeric1d(self) -> Optional["scout_compute_api_Numeric1dArraySeries"]:
|
|
37919
|
+
return self._numeric1d
|
|
37920
|
+
|
|
37921
|
+
@builtins.property
|
|
37922
|
+
def enum1d(self) -> Optional["scout_compute_api_Enum1dArraySeries"]:
|
|
37923
|
+
return self._enum1d
|
|
37924
|
+
|
|
37925
|
+
def accept(self, visitor) -> Any:
|
|
37926
|
+
if not isinstance(visitor, scout_compute_api_ArraySeriesVisitor):
|
|
37927
|
+
raise ValueError('{} is not an instance of scout_compute_api_ArraySeriesVisitor'.format(visitor.__class__.__name__))
|
|
37928
|
+
if self._type == 'numeric1d' and self.numeric1d is not None:
|
|
37929
|
+
return visitor._numeric1d(self.numeric1d)
|
|
37930
|
+
if self._type == 'enum1d' and self.enum1d is not None:
|
|
37931
|
+
return visitor._enum1d(self.enum1d)
|
|
37932
|
+
|
|
37933
|
+
|
|
37934
|
+
scout_compute_api_ArraySeries.__name__ = "ArraySeries"
|
|
37935
|
+
scout_compute_api_ArraySeries.__qualname__ = "ArraySeries"
|
|
37936
|
+
scout_compute_api_ArraySeries.__module__ = "nominal_api.scout_compute_api"
|
|
37937
|
+
|
|
37938
|
+
|
|
37939
|
+
class scout_compute_api_ArraySeriesVisitor:
|
|
37940
|
+
|
|
37941
|
+
@abstractmethod
|
|
37942
|
+
def _numeric1d(self, numeric1d: "scout_compute_api_Numeric1dArraySeries") -> Any:
|
|
37943
|
+
pass
|
|
37944
|
+
|
|
37945
|
+
@abstractmethod
|
|
37946
|
+
def _enum1d(self, enum1d: "scout_compute_api_Enum1dArraySeries") -> Any:
|
|
37947
|
+
pass
|
|
37948
|
+
|
|
37949
|
+
|
|
37950
|
+
scout_compute_api_ArraySeriesVisitor.__name__ = "ArraySeriesVisitor"
|
|
37951
|
+
scout_compute_api_ArraySeriesVisitor.__qualname__ = "ArraySeriesVisitor"
|
|
37952
|
+
scout_compute_api_ArraySeriesVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
37953
|
+
|
|
37954
|
+
|
|
37955
|
+
class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
|
37956
|
+
_paged_numeric: Optional["scout_compute_api_PagedNumericArrayPlot"] = None
|
|
37957
|
+
_paged_enum: Optional["scout_compute_api_PagedEnumArrayPlot"] = None
|
|
37958
|
+
_bucketed_numeric: Optional["scout_compute_api_BucketedNumericArrayPlot"] = None
|
|
37959
|
+
_bucketed_enum: Optional["scout_compute_api_BucketedEnumArrayPlot"] = None
|
|
37960
|
+
|
|
37961
|
+
@builtins.classmethod
|
|
37962
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37963
|
+
return {
|
|
37964
|
+
'paged_numeric': ConjureFieldDefinition('pagedNumeric', scout_compute_api_PagedNumericArrayPlot),
|
|
37965
|
+
'paged_enum': ConjureFieldDefinition('pagedEnum', scout_compute_api_PagedEnumArrayPlot),
|
|
37966
|
+
'bucketed_numeric': ConjureFieldDefinition('bucketedNumeric', scout_compute_api_BucketedNumericArrayPlot),
|
|
37967
|
+
'bucketed_enum': ConjureFieldDefinition('bucketedEnum', scout_compute_api_BucketedEnumArrayPlot)
|
|
37968
|
+
}
|
|
37969
|
+
|
|
37970
|
+
def __init__(
|
|
37971
|
+
self,
|
|
37972
|
+
paged_numeric: Optional["scout_compute_api_PagedNumericArrayPlot"] = None,
|
|
37973
|
+
paged_enum: Optional["scout_compute_api_PagedEnumArrayPlot"] = None,
|
|
37974
|
+
bucketed_numeric: Optional["scout_compute_api_BucketedNumericArrayPlot"] = None,
|
|
37975
|
+
bucketed_enum: Optional["scout_compute_api_BucketedEnumArrayPlot"] = None,
|
|
37976
|
+
type_of_union: Optional[str] = None
|
|
37977
|
+
) -> None:
|
|
37978
|
+
if type_of_union is None:
|
|
37979
|
+
if (paged_numeric is not None) + (paged_enum is not None) + (bucketed_numeric is not None) + (bucketed_enum is not None) != 1:
|
|
37980
|
+
raise ValueError('a union must contain a single member')
|
|
37981
|
+
|
|
37982
|
+
if paged_numeric is not None:
|
|
37983
|
+
self._paged_numeric = paged_numeric
|
|
37984
|
+
self._type = 'pagedNumeric'
|
|
37985
|
+
if paged_enum is not None:
|
|
37986
|
+
self._paged_enum = paged_enum
|
|
37987
|
+
self._type = 'pagedEnum'
|
|
37988
|
+
if bucketed_numeric is not None:
|
|
37989
|
+
self._bucketed_numeric = bucketed_numeric
|
|
37990
|
+
self._type = 'bucketedNumeric'
|
|
37991
|
+
if bucketed_enum is not None:
|
|
37992
|
+
self._bucketed_enum = bucketed_enum
|
|
37993
|
+
self._type = 'bucketedEnum'
|
|
37994
|
+
|
|
37995
|
+
elif type_of_union == 'pagedNumeric':
|
|
37996
|
+
if paged_numeric is None:
|
|
37997
|
+
raise ValueError('a union value must not be None')
|
|
37998
|
+
self._paged_numeric = paged_numeric
|
|
37999
|
+
self._type = 'pagedNumeric'
|
|
38000
|
+
elif type_of_union == 'pagedEnum':
|
|
38001
|
+
if paged_enum is None:
|
|
38002
|
+
raise ValueError('a union value must not be None')
|
|
38003
|
+
self._paged_enum = paged_enum
|
|
38004
|
+
self._type = 'pagedEnum'
|
|
38005
|
+
elif type_of_union == 'bucketedNumeric':
|
|
38006
|
+
if bucketed_numeric is None:
|
|
38007
|
+
raise ValueError('a union value must not be None')
|
|
38008
|
+
self._bucketed_numeric = bucketed_numeric
|
|
38009
|
+
self._type = 'bucketedNumeric'
|
|
38010
|
+
elif type_of_union == 'bucketedEnum':
|
|
38011
|
+
if bucketed_enum is None:
|
|
38012
|
+
raise ValueError('a union value must not be None')
|
|
38013
|
+
self._bucketed_enum = bucketed_enum
|
|
38014
|
+
self._type = 'bucketedEnum'
|
|
38015
|
+
|
|
38016
|
+
@builtins.property
|
|
38017
|
+
def paged_numeric(self) -> Optional["scout_compute_api_PagedNumericArrayPlot"]:
|
|
38018
|
+
return self._paged_numeric
|
|
38019
|
+
|
|
38020
|
+
@builtins.property
|
|
38021
|
+
def paged_enum(self) -> Optional["scout_compute_api_PagedEnumArrayPlot"]:
|
|
38022
|
+
return self._paged_enum
|
|
38023
|
+
|
|
38024
|
+
@builtins.property
|
|
38025
|
+
def bucketed_numeric(self) -> Optional["scout_compute_api_BucketedNumericArrayPlot"]:
|
|
38026
|
+
return self._bucketed_numeric
|
|
38027
|
+
|
|
38028
|
+
@builtins.property
|
|
38029
|
+
def bucketed_enum(self) -> Optional["scout_compute_api_BucketedEnumArrayPlot"]:
|
|
38030
|
+
return self._bucketed_enum
|
|
38031
|
+
|
|
38032
|
+
def accept(self, visitor) -> Any:
|
|
38033
|
+
if not isinstance(visitor, scout_compute_api_ArrowArrayPlotVisitor):
|
|
38034
|
+
raise ValueError('{} is not an instance of scout_compute_api_ArrowArrayPlotVisitor'.format(visitor.__class__.__name__))
|
|
38035
|
+
if self._type == 'pagedNumeric' and self.paged_numeric is not None:
|
|
38036
|
+
return visitor._paged_numeric(self.paged_numeric)
|
|
38037
|
+
if self._type == 'pagedEnum' and self.paged_enum is not None:
|
|
38038
|
+
return visitor._paged_enum(self.paged_enum)
|
|
38039
|
+
if self._type == 'bucketedNumeric' and self.bucketed_numeric is not None:
|
|
38040
|
+
return visitor._bucketed_numeric(self.bucketed_numeric)
|
|
38041
|
+
if self._type == 'bucketedEnum' and self.bucketed_enum is not None:
|
|
38042
|
+
return visitor._bucketed_enum(self.bucketed_enum)
|
|
38043
|
+
|
|
38044
|
+
|
|
38045
|
+
scout_compute_api_ArrowArrayPlot.__name__ = "ArrowArrayPlot"
|
|
38046
|
+
scout_compute_api_ArrowArrayPlot.__qualname__ = "ArrowArrayPlot"
|
|
38047
|
+
scout_compute_api_ArrowArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
|
38048
|
+
|
|
38049
|
+
|
|
38050
|
+
class scout_compute_api_ArrowArrayPlotVisitor:
|
|
38051
|
+
|
|
38052
|
+
@abstractmethod
|
|
38053
|
+
def _paged_numeric(self, paged_numeric: "scout_compute_api_PagedNumericArrayPlot") -> Any:
|
|
38054
|
+
pass
|
|
38055
|
+
|
|
38056
|
+
@abstractmethod
|
|
38057
|
+
def _paged_enum(self, paged_enum: "scout_compute_api_PagedEnumArrayPlot") -> Any:
|
|
38058
|
+
pass
|
|
38059
|
+
|
|
38060
|
+
@abstractmethod
|
|
38061
|
+
def _bucketed_numeric(self, bucketed_numeric: "scout_compute_api_BucketedNumericArrayPlot") -> Any:
|
|
38062
|
+
pass
|
|
38063
|
+
|
|
38064
|
+
@abstractmethod
|
|
38065
|
+
def _bucketed_enum(self, bucketed_enum: "scout_compute_api_BucketedEnumArrayPlot") -> Any:
|
|
38066
|
+
pass
|
|
38067
|
+
|
|
38068
|
+
|
|
38069
|
+
scout_compute_api_ArrowArrayPlotVisitor.__name__ = "ArrowArrayPlotVisitor"
|
|
38070
|
+
scout_compute_api_ArrowArrayPlotVisitor.__qualname__ = "ArrowArrayPlotVisitor"
|
|
38071
|
+
scout_compute_api_ArrowArrayPlotVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
38072
|
+
|
|
38073
|
+
|
|
37878
38074
|
class scout_compute_api_ArrowBucketedEnumPlot(ConjureBeanType):
|
|
37879
38075
|
|
|
37880
38076
|
@builtins.classmethod
|
|
@@ -38654,6 +38850,34 @@ scout_compute_api_BucketedCartesianPlot.__qualname__ = "BucketedCartesianPlot"
|
|
|
38654
38850
|
scout_compute_api_BucketedCartesianPlot.__module__ = "nominal_api.scout_compute_api"
|
|
38655
38851
|
|
|
38656
38852
|
|
|
38853
|
+
class scout_compute_api_BucketedEnumArrayPlot(ConjureBeanType):
|
|
38854
|
+
"""The array is flattened out into a an arrow stream of bucketed primitive results, with an extra column to
|
|
38855
|
+
indicate the index of the array that the bucket corresponds to.
|
|
38856
|
+
"""
|
|
38857
|
+
|
|
38858
|
+
@builtins.classmethod
|
|
38859
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
38860
|
+
return {
|
|
38861
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
38862
|
+
}
|
|
38863
|
+
|
|
38864
|
+
__slots__: List[str] = ['_arrow_binary']
|
|
38865
|
+
|
|
38866
|
+
def __init__(self, arrow_binary: Any) -> None:
|
|
38867
|
+
self._arrow_binary = arrow_binary
|
|
38868
|
+
|
|
38869
|
+
@builtins.property
|
|
38870
|
+
def arrow_binary(self) -> Any:
|
|
38871
|
+
"""The raw binary containing Arrow IPC stream for a bucketed N-dimensional enum array plot.
|
|
38872
|
+
"""
|
|
38873
|
+
return self._arrow_binary
|
|
38874
|
+
|
|
38875
|
+
|
|
38876
|
+
scout_compute_api_BucketedEnumArrayPlot.__name__ = "BucketedEnumArrayPlot"
|
|
38877
|
+
scout_compute_api_BucketedEnumArrayPlot.__qualname__ = "BucketedEnumArrayPlot"
|
|
38878
|
+
scout_compute_api_BucketedEnumArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
|
38879
|
+
|
|
38880
|
+
|
|
38657
38881
|
class scout_compute_api_BucketedEnumPlot(ConjureBeanType):
|
|
38658
38882
|
|
|
38659
38883
|
@builtins.classmethod
|
|
@@ -38747,6 +38971,34 @@ scout_compute_api_BucketedGeoPlotVisitor.__qualname__ = "BucketedGeoPlotVisitor"
|
|
|
38747
38971
|
scout_compute_api_BucketedGeoPlotVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
38748
38972
|
|
|
38749
38973
|
|
|
38974
|
+
class scout_compute_api_BucketedNumericArrayPlot(ConjureBeanType):
|
|
38975
|
+
"""The array is flattened out into a an arrow stream of bucketed primitive results, with an extra column to
|
|
38976
|
+
indicate the index of the array that the bucket corresponds to.
|
|
38977
|
+
"""
|
|
38978
|
+
|
|
38979
|
+
@builtins.classmethod
|
|
38980
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
38981
|
+
return {
|
|
38982
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
38983
|
+
}
|
|
38984
|
+
|
|
38985
|
+
__slots__: List[str] = ['_arrow_binary']
|
|
38986
|
+
|
|
38987
|
+
def __init__(self, arrow_binary: Any) -> None:
|
|
38988
|
+
self._arrow_binary = arrow_binary
|
|
38989
|
+
|
|
38990
|
+
@builtins.property
|
|
38991
|
+
def arrow_binary(self) -> Any:
|
|
38992
|
+
"""The raw binary containing Arrow IPC stream for a bucketed N-dimensional numeric array plot.
|
|
38993
|
+
"""
|
|
38994
|
+
return self._arrow_binary
|
|
38995
|
+
|
|
38996
|
+
|
|
38997
|
+
scout_compute_api_BucketedNumericArrayPlot.__name__ = "BucketedNumericArrayPlot"
|
|
38998
|
+
scout_compute_api_BucketedNumericArrayPlot.__qualname__ = "BucketedNumericArrayPlot"
|
|
38999
|
+
scout_compute_api_BucketedNumericArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
|
39000
|
+
|
|
39001
|
+
|
|
38750
39002
|
class scout_compute_api_BucketedNumericPlot(ConjureBeanType):
|
|
38751
39003
|
|
|
38752
39004
|
@builtins.classmethod
|
|
@@ -39627,6 +39879,7 @@ class scout_compute_api_ComputeNode(ConjureUnionType):
|
|
|
39627
39879
|
_numeric: Optional["scout_compute_api_NumericSeries"] = None
|
|
39628
39880
|
_log: Optional["scout_compute_api_LogSeries"] = None
|
|
39629
39881
|
_ranges: Optional["scout_compute_api_RangeSeries"] = None
|
|
39882
|
+
_array: Optional["scout_compute_api_ArraySeries"] = None
|
|
39630
39883
|
_curve_fit: Optional["scout_compute_api_CurveFit"] = None
|
|
39631
39884
|
_raw: Optional["scout_compute_api_Reference"] = None
|
|
39632
39885
|
|
|
@@ -39637,6 +39890,7 @@ class scout_compute_api_ComputeNode(ConjureUnionType):
|
|
|
39637
39890
|
'numeric': ConjureFieldDefinition('numeric', scout_compute_api_NumericSeries),
|
|
39638
39891
|
'log': ConjureFieldDefinition('log', scout_compute_api_LogSeries),
|
|
39639
39892
|
'ranges': ConjureFieldDefinition('ranges', scout_compute_api_RangeSeries),
|
|
39893
|
+
'array': ConjureFieldDefinition('array', scout_compute_api_ArraySeries),
|
|
39640
39894
|
'curve_fit': ConjureFieldDefinition('curveFit', scout_compute_api_CurveFit),
|
|
39641
39895
|
'raw': ConjureFieldDefinition('raw', scout_compute_api_Reference)
|
|
39642
39896
|
}
|
|
@@ -39647,12 +39901,13 @@ class scout_compute_api_ComputeNode(ConjureUnionType):
|
|
|
39647
39901
|
numeric: Optional["scout_compute_api_NumericSeries"] = None,
|
|
39648
39902
|
log: Optional["scout_compute_api_LogSeries"] = None,
|
|
39649
39903
|
ranges: Optional["scout_compute_api_RangeSeries"] = None,
|
|
39904
|
+
array: Optional["scout_compute_api_ArraySeries"] = None,
|
|
39650
39905
|
curve_fit: Optional["scout_compute_api_CurveFit"] = None,
|
|
39651
39906
|
raw: Optional["scout_compute_api_Reference"] = None,
|
|
39652
39907
|
type_of_union: Optional[str] = None
|
|
39653
39908
|
) -> None:
|
|
39654
39909
|
if type_of_union is None:
|
|
39655
|
-
if (enum is not None) + (numeric is not None) + (log is not None) + (ranges is not None) + (curve_fit is not None) + (raw is not None) != 1:
|
|
39910
|
+
if (enum is not None) + (numeric is not None) + (log is not None) + (ranges is not None) + (array is not None) + (curve_fit is not None) + (raw is not None) != 1:
|
|
39656
39911
|
raise ValueError('a union must contain a single member')
|
|
39657
39912
|
|
|
39658
39913
|
if enum is not None:
|
|
@@ -39667,6 +39922,9 @@ class scout_compute_api_ComputeNode(ConjureUnionType):
|
|
|
39667
39922
|
if ranges is not None:
|
|
39668
39923
|
self._ranges = ranges
|
|
39669
39924
|
self._type = 'ranges'
|
|
39925
|
+
if array is not None:
|
|
39926
|
+
self._array = array
|
|
39927
|
+
self._type = 'array'
|
|
39670
39928
|
if curve_fit is not None:
|
|
39671
39929
|
self._curve_fit = curve_fit
|
|
39672
39930
|
self._type = 'curveFit'
|
|
@@ -39694,6 +39952,11 @@ class scout_compute_api_ComputeNode(ConjureUnionType):
|
|
|
39694
39952
|
raise ValueError('a union value must not be None')
|
|
39695
39953
|
self._ranges = ranges
|
|
39696
39954
|
self._type = 'ranges'
|
|
39955
|
+
elif type_of_union == 'array':
|
|
39956
|
+
if array is None:
|
|
39957
|
+
raise ValueError('a union value must not be None')
|
|
39958
|
+
self._array = array
|
|
39959
|
+
self._type = 'array'
|
|
39697
39960
|
elif type_of_union == 'curveFit':
|
|
39698
39961
|
if curve_fit is None:
|
|
39699
39962
|
raise ValueError('a union value must not be None')
|
|
@@ -39721,6 +39984,10 @@ class scout_compute_api_ComputeNode(ConjureUnionType):
|
|
|
39721
39984
|
def ranges(self) -> Optional["scout_compute_api_RangeSeries"]:
|
|
39722
39985
|
return self._ranges
|
|
39723
39986
|
|
|
39987
|
+
@builtins.property
|
|
39988
|
+
def array(self) -> Optional["scout_compute_api_ArraySeries"]:
|
|
39989
|
+
return self._array
|
|
39990
|
+
|
|
39724
39991
|
@builtins.property
|
|
39725
39992
|
def curve_fit(self) -> Optional["scout_compute_api_CurveFit"]:
|
|
39726
39993
|
return self._curve_fit
|
|
@@ -39740,6 +40007,8 @@ class scout_compute_api_ComputeNode(ConjureUnionType):
|
|
|
39740
40007
|
return visitor._log(self.log)
|
|
39741
40008
|
if self._type == 'ranges' and self.ranges is not None:
|
|
39742
40009
|
return visitor._ranges(self.ranges)
|
|
40010
|
+
if self._type == 'array' and self.array is not None:
|
|
40011
|
+
return visitor._array(self.array)
|
|
39743
40012
|
if self._type == 'curveFit' and self.curve_fit is not None:
|
|
39744
40013
|
return visitor._curve_fit(self.curve_fit)
|
|
39745
40014
|
if self._type == 'raw' and self.raw is not None:
|
|
@@ -39769,6 +40038,10 @@ class scout_compute_api_ComputeNodeVisitor:
|
|
|
39769
40038
|
def _ranges(self, ranges: "scout_compute_api_RangeSeries") -> Any:
|
|
39770
40039
|
pass
|
|
39771
40040
|
|
|
40041
|
+
@abstractmethod
|
|
40042
|
+
def _array(self, array: "scout_compute_api_ArraySeries") -> Any:
|
|
40043
|
+
pass
|
|
40044
|
+
|
|
39772
40045
|
@abstractmethod
|
|
39773
40046
|
def _curve_fit(self, curve_fit: "scout_compute_api_CurveFit") -> Any:
|
|
39774
40047
|
pass
|
|
@@ -39890,6 +40163,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39890
40163
|
_enum_histogram: Optional["scout_compute_api_EnumHistogramPlot"] = None
|
|
39891
40164
|
_curve_fit: Optional["scout_compute_api_CurveFitResult"] = None
|
|
39892
40165
|
_grouped: Optional["scout_compute_api_GroupedComputeNodeResponses"] = None
|
|
40166
|
+
_array: Optional["scout_compute_api_ArrowArrayPlot"] = None
|
|
39893
40167
|
|
|
39894
40168
|
@builtins.classmethod
|
|
39895
40169
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -39917,7 +40191,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39917
40191
|
'numeric_histogram': ConjureFieldDefinition('numericHistogram', scout_compute_api_NumericHistogramPlot),
|
|
39918
40192
|
'enum_histogram': ConjureFieldDefinition('enumHistogram', scout_compute_api_EnumHistogramPlot),
|
|
39919
40193
|
'curve_fit': ConjureFieldDefinition('curveFit', scout_compute_api_CurveFitResult),
|
|
39920
|
-
'grouped': ConjureFieldDefinition('grouped', scout_compute_api_GroupedComputeNodeResponses)
|
|
40194
|
+
'grouped': ConjureFieldDefinition('grouped', scout_compute_api_GroupedComputeNodeResponses),
|
|
40195
|
+
'array': ConjureFieldDefinition('array', scout_compute_api_ArrowArrayPlot)
|
|
39921
40196
|
}
|
|
39922
40197
|
|
|
39923
40198
|
def __init__(
|
|
@@ -39946,10 +40221,11 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39946
40221
|
enum_histogram: Optional["scout_compute_api_EnumHistogramPlot"] = None,
|
|
39947
40222
|
curve_fit: Optional["scout_compute_api_CurveFitResult"] = None,
|
|
39948
40223
|
grouped: Optional["scout_compute_api_GroupedComputeNodeResponses"] = None,
|
|
40224
|
+
array: Optional["scout_compute_api_ArrowArrayPlot"] = None,
|
|
39949
40225
|
type_of_union: Optional[str] = None
|
|
39950
40226
|
) -> None:
|
|
39951
40227
|
if type_of_union is None:
|
|
39952
|
-
if (range is not None) + (ranges_summary is not None) + (range_value is not None) + (numeric is not None) + (bucketed_numeric is not None) + (numeric_point is not None) + (arrow_numeric is not None) + (arrow_bucketed_numeric is not None) + (enum is not None) + (enum_point is not None) + (bucketed_enum is not None) + (arrow_enum is not None) + (arrow_bucketed_enum is not None) + (paged_log is not None) + (log_point is not None) + (cartesian is not None) + (bucketed_cartesian is not None) + (bucketed_cartesian3d is not None) + (bucketed_geo is not None) + (frequency_domain is not None) + (numeric_histogram is not None) + (enum_histogram is not None) + (curve_fit is not None) + (grouped is not None) != 1:
|
|
40228
|
+
if (range is not None) + (ranges_summary is not None) + (range_value is not None) + (numeric is not None) + (bucketed_numeric is not None) + (numeric_point is not None) + (arrow_numeric is not None) + (arrow_bucketed_numeric is not None) + (enum is not None) + (enum_point is not None) + (bucketed_enum is not None) + (arrow_enum is not None) + (arrow_bucketed_enum is not None) + (paged_log is not None) + (log_point is not None) + (cartesian is not None) + (bucketed_cartesian is not None) + (bucketed_cartesian3d is not None) + (bucketed_geo is not None) + (frequency_domain is not None) + (numeric_histogram is not None) + (enum_histogram is not None) + (curve_fit is not None) + (grouped is not None) + (array is not None) != 1:
|
|
39953
40229
|
raise ValueError('a union must contain a single member')
|
|
39954
40230
|
|
|
39955
40231
|
if range is not None:
|
|
@@ -40024,6 +40300,9 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
40024
40300
|
if grouped is not None:
|
|
40025
40301
|
self._grouped = grouped
|
|
40026
40302
|
self._type = 'grouped'
|
|
40303
|
+
if array is not None:
|
|
40304
|
+
self._array = array
|
|
40305
|
+
self._type = 'array'
|
|
40027
40306
|
|
|
40028
40307
|
elif type_of_union == 'range':
|
|
40029
40308
|
if range is None:
|
|
@@ -40145,6 +40424,11 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
40145
40424
|
raise ValueError('a union value must not be None')
|
|
40146
40425
|
self._grouped = grouped
|
|
40147
40426
|
self._type = 'grouped'
|
|
40427
|
+
elif type_of_union == 'array':
|
|
40428
|
+
if array is None:
|
|
40429
|
+
raise ValueError('a union value must not be None')
|
|
40430
|
+
self._array = array
|
|
40431
|
+
self._type = 'array'
|
|
40148
40432
|
|
|
40149
40433
|
@builtins.property
|
|
40150
40434
|
def range(self) -> Optional[List["scout_compute_api_Range"]]:
|
|
@@ -40242,6 +40526,10 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
40242
40526
|
def grouped(self) -> Optional["scout_compute_api_GroupedComputeNodeResponses"]:
|
|
40243
40527
|
return self._grouped
|
|
40244
40528
|
|
|
40529
|
+
@builtins.property
|
|
40530
|
+
def array(self) -> Optional["scout_compute_api_ArrowArrayPlot"]:
|
|
40531
|
+
return self._array
|
|
40532
|
+
|
|
40245
40533
|
def accept(self, visitor) -> Any:
|
|
40246
40534
|
if not isinstance(visitor, scout_compute_api_ComputeNodeResponseVisitor):
|
|
40247
40535
|
raise ValueError('{} is not an instance of scout_compute_api_ComputeNodeResponseVisitor'.format(visitor.__class__.__name__))
|
|
@@ -40293,6 +40581,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
40293
40581
|
return visitor._curve_fit(self.curve_fit)
|
|
40294
40582
|
if self._type == 'grouped' and self.grouped is not None:
|
|
40295
40583
|
return visitor._grouped(self.grouped)
|
|
40584
|
+
if self._type == 'array' and self.array is not None:
|
|
40585
|
+
return visitor._array(self.array)
|
|
40296
40586
|
|
|
40297
40587
|
|
|
40298
40588
|
scout_compute_api_ComputeNodeResponse.__name__ = "ComputeNodeResponse"
|
|
@@ -40398,6 +40688,10 @@ class scout_compute_api_ComputeNodeResponseVisitor:
|
|
|
40398
40688
|
def _grouped(self, grouped: "scout_compute_api_GroupedComputeNodeResponses") -> Any:
|
|
40399
40689
|
pass
|
|
40400
40690
|
|
|
40691
|
+
@abstractmethod
|
|
40692
|
+
def _array(self, array: "scout_compute_api_ArrowArrayPlot") -> Any:
|
|
40693
|
+
pass
|
|
40694
|
+
|
|
40401
40695
|
|
|
40402
40696
|
scout_compute_api_ComputeNodeResponseVisitor.__name__ = "ComputeNodeResponseVisitor"
|
|
40403
40697
|
scout_compute_api_ComputeNodeResponseVisitor.__qualname__ = "ComputeNodeResponseVisitor"
|
|
@@ -41658,6 +41952,65 @@ scout_compute_api_DerivativeSeries.__qualname__ = "DerivativeSeries"
|
|
|
41658
41952
|
scout_compute_api_DerivativeSeries.__module__ = "nominal_api.scout_compute_api"
|
|
41659
41953
|
|
|
41660
41954
|
|
|
41955
|
+
class scout_compute_api_DerivedSeries(ConjureUnionType):
|
|
41956
|
+
"""Represents a derived series within a compute graph.
|
|
41957
|
+
This is a series that is derived from a function within a module.
|
|
41958
|
+
"""
|
|
41959
|
+
_module_application: Optional["scout_compute_api_ModuleApplicationDerivedSeries"] = None
|
|
41960
|
+
|
|
41961
|
+
@builtins.classmethod
|
|
41962
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
41963
|
+
return {
|
|
41964
|
+
'module_application': ConjureFieldDefinition('moduleApplication', scout_compute_api_ModuleApplicationDerivedSeries)
|
|
41965
|
+
}
|
|
41966
|
+
|
|
41967
|
+
def __init__(
|
|
41968
|
+
self,
|
|
41969
|
+
module_application: Optional["scout_compute_api_ModuleApplicationDerivedSeries"] = None,
|
|
41970
|
+
type_of_union: Optional[str] = None
|
|
41971
|
+
) -> None:
|
|
41972
|
+
if type_of_union is None:
|
|
41973
|
+
if (module_application is not None) != 1:
|
|
41974
|
+
raise ValueError('a union must contain a single member')
|
|
41975
|
+
|
|
41976
|
+
if module_application is not None:
|
|
41977
|
+
self._module_application = module_application
|
|
41978
|
+
self._type = 'moduleApplication'
|
|
41979
|
+
|
|
41980
|
+
elif type_of_union == 'moduleApplication':
|
|
41981
|
+
if module_application is None:
|
|
41982
|
+
raise ValueError('a union value must not be None')
|
|
41983
|
+
self._module_application = module_application
|
|
41984
|
+
self._type = 'moduleApplication'
|
|
41985
|
+
|
|
41986
|
+
@builtins.property
|
|
41987
|
+
def module_application(self) -> Optional["scout_compute_api_ModuleApplicationDerivedSeries"]:
|
|
41988
|
+
return self._module_application
|
|
41989
|
+
|
|
41990
|
+
def accept(self, visitor) -> Any:
|
|
41991
|
+
if not isinstance(visitor, scout_compute_api_DerivedSeriesVisitor):
|
|
41992
|
+
raise ValueError('{} is not an instance of scout_compute_api_DerivedSeriesVisitor'.format(visitor.__class__.__name__))
|
|
41993
|
+
if self._type == 'moduleApplication' and self.module_application is not None:
|
|
41994
|
+
return visitor._module_application(self.module_application)
|
|
41995
|
+
|
|
41996
|
+
|
|
41997
|
+
scout_compute_api_DerivedSeries.__name__ = "DerivedSeries"
|
|
41998
|
+
scout_compute_api_DerivedSeries.__qualname__ = "DerivedSeries"
|
|
41999
|
+
scout_compute_api_DerivedSeries.__module__ = "nominal_api.scout_compute_api"
|
|
42000
|
+
|
|
42001
|
+
|
|
42002
|
+
class scout_compute_api_DerivedSeriesVisitor:
|
|
42003
|
+
|
|
42004
|
+
@abstractmethod
|
|
42005
|
+
def _module_application(self, module_application: "scout_compute_api_ModuleApplicationDerivedSeries") -> Any:
|
|
42006
|
+
pass
|
|
42007
|
+
|
|
42008
|
+
|
|
42009
|
+
scout_compute_api_DerivedSeriesVisitor.__name__ = "DerivedSeriesVisitor"
|
|
42010
|
+
scout_compute_api_DerivedSeriesVisitor.__qualname__ = "DerivedSeriesVisitor"
|
|
42011
|
+
scout_compute_api_DerivedSeriesVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
42012
|
+
|
|
42013
|
+
|
|
41661
42014
|
class scout_compute_api_DoubleConstant(ConjureUnionType):
|
|
41662
42015
|
_literal: Optional[float] = None
|
|
41663
42016
|
_variable: Optional[str] = None
|
|
@@ -44673,6 +45026,49 @@ scout_compute_api_Minimum.__qualname__ = "Minimum"
|
|
|
44673
45026
|
scout_compute_api_Minimum.__module__ = "nominal_api.scout_compute_api"
|
|
44674
45027
|
|
|
44675
45028
|
|
|
45029
|
+
class scout_compute_api_ModuleApplicationDerivedSeries(ConjureBeanType):
|
|
45030
|
+
"""A reference to a derived series resulting from applying a module to an asset.
|
|
45031
|
+
The referenced module must be applied to the referenced asset.
|
|
45032
|
+
"""
|
|
45033
|
+
|
|
45034
|
+
@builtins.classmethod
|
|
45035
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
45036
|
+
return {
|
|
45037
|
+
'module_application_rid': ConjureFieldDefinition('moduleApplicationRid', scout_compute_api_StringConstant),
|
|
45038
|
+
'function_name': ConjureFieldDefinition('functionName', scout_compute_api_StringConstant),
|
|
45039
|
+
'function_args': ConjureFieldDefinition('functionArgs', Dict[scout_compute_api_VariableName, scout_compute_api_VariableValue])
|
|
45040
|
+
}
|
|
45041
|
+
|
|
45042
|
+
__slots__: List[str] = ['_module_application_rid', '_function_name', '_function_args']
|
|
45043
|
+
|
|
45044
|
+
def __init__(self, function_args: Dict[str, "scout_compute_api_VariableValue"], function_name: "scout_compute_api_StringConstant", module_application_rid: "scout_compute_api_StringConstant") -> None:
|
|
45045
|
+
self._module_application_rid = module_application_rid
|
|
45046
|
+
self._function_name = function_name
|
|
45047
|
+
self._function_args = function_args
|
|
45048
|
+
|
|
45049
|
+
@builtins.property
|
|
45050
|
+
def module_application_rid(self) -> "scout_compute_api_StringConstant":
|
|
45051
|
+
"""A reference to the module application that produced this derived series.
|
|
45052
|
+
"""
|
|
45053
|
+
return self._module_application_rid
|
|
45054
|
+
|
|
45055
|
+
@builtins.property
|
|
45056
|
+
def function_name(self) -> "scout_compute_api_StringConstant":
|
|
45057
|
+
return self._function_name
|
|
45058
|
+
|
|
45059
|
+
@builtins.property
|
|
45060
|
+
def function_args(self) -> Dict[str, "scout_compute_api_VariableValue"]:
|
|
45061
|
+
"""Map of function input names to their values. The function inputs must match the function's parameter
|
|
45062
|
+
names and types. Because all function parameters have default values when the module is applied to the asset, this can be empty.
|
|
45063
|
+
"""
|
|
45064
|
+
return self._function_args
|
|
45065
|
+
|
|
45066
|
+
|
|
45067
|
+
scout_compute_api_ModuleApplicationDerivedSeries.__name__ = "ModuleApplicationDerivedSeries"
|
|
45068
|
+
scout_compute_api_ModuleApplicationDerivedSeries.__qualname__ = "ModuleApplicationDerivedSeries"
|
|
45069
|
+
scout_compute_api_ModuleApplicationDerivedSeries.__module__ = "nominal_api.scout_compute_api"
|
|
45070
|
+
|
|
45071
|
+
|
|
44676
45072
|
class scout_compute_api_NegativeValueConfiguration(ConjureUnionType):
|
|
44677
45073
|
_allow_negative_values: Optional["scout_compute_api_AllowNegativeValues"] = None
|
|
44678
45074
|
_set_negative_values_to_zero: Optional["scout_compute_api_SetNegativeValuesToZero"] = None
|
|
@@ -46529,6 +46925,41 @@ scout_compute_api_PageTokenVisitor.__qualname__ = "PageTokenVisitor"
|
|
|
46529
46925
|
scout_compute_api_PageTokenVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
46530
46926
|
|
|
46531
46927
|
|
|
46928
|
+
class scout_compute_api_PagedEnumArrayPlot(ConjureBeanType):
|
|
46929
|
+
|
|
46930
|
+
@builtins.classmethod
|
|
46931
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
46932
|
+
return {
|
|
46933
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
46934
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_compute_api_PageToken])
|
|
46935
|
+
}
|
|
46936
|
+
|
|
46937
|
+
__slots__: List[str] = ['_arrow_binary', '_next_page_token']
|
|
46938
|
+
|
|
46939
|
+
def __init__(self, arrow_binary: Any, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
|
46940
|
+
self._arrow_binary = arrow_binary
|
|
46941
|
+
self._next_page_token = next_page_token
|
|
46942
|
+
|
|
46943
|
+
@builtins.property
|
|
46944
|
+
def arrow_binary(self) -> Any:
|
|
46945
|
+
"""The raw binary containing Arrow IPC stream for a page of an N-dimensional enum array plot.
|
|
46946
|
+
"""
|
|
46947
|
+
return self._arrow_binary
|
|
46948
|
+
|
|
46949
|
+
@builtins.property
|
|
46950
|
+
def next_page_token(self) -> Optional["scout_compute_api_PageToken"]:
|
|
46951
|
+
"""The token to retrieve the next page of arrays in the direction originally requested (exclusive - not
|
|
46952
|
+
included in these results). May be empty if there are no further values in the requested time range in the
|
|
46953
|
+
direction originally requested.
|
|
46954
|
+
"""
|
|
46955
|
+
return self._next_page_token
|
|
46956
|
+
|
|
46957
|
+
|
|
46958
|
+
scout_compute_api_PagedEnumArrayPlot.__name__ = "PagedEnumArrayPlot"
|
|
46959
|
+
scout_compute_api_PagedEnumArrayPlot.__qualname__ = "PagedEnumArrayPlot"
|
|
46960
|
+
scout_compute_api_PagedEnumArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
|
46961
|
+
|
|
46962
|
+
|
|
46532
46963
|
class scout_compute_api_PagedLogPlot(ConjureBeanType):
|
|
46533
46964
|
|
|
46534
46965
|
@builtins.classmethod
|
|
@@ -46568,6 +46999,41 @@ scout_compute_api_PagedLogPlot.__qualname__ = "PagedLogPlot"
|
|
|
46568
46999
|
scout_compute_api_PagedLogPlot.__module__ = "nominal_api.scout_compute_api"
|
|
46569
47000
|
|
|
46570
47001
|
|
|
47002
|
+
class scout_compute_api_PagedNumericArrayPlot(ConjureBeanType):
|
|
47003
|
+
|
|
47004
|
+
@builtins.classmethod
|
|
47005
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
47006
|
+
return {
|
|
47007
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
47008
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_compute_api_PageToken])
|
|
47009
|
+
}
|
|
47010
|
+
|
|
47011
|
+
__slots__: List[str] = ['_arrow_binary', '_next_page_token']
|
|
47012
|
+
|
|
47013
|
+
def __init__(self, arrow_binary: Any, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
|
47014
|
+
self._arrow_binary = arrow_binary
|
|
47015
|
+
self._next_page_token = next_page_token
|
|
47016
|
+
|
|
47017
|
+
@builtins.property
|
|
47018
|
+
def arrow_binary(self) -> Any:
|
|
47019
|
+
"""The raw binary containing Arrow IPC stream for a page of an N-dimensional numeric array plot.
|
|
47020
|
+
"""
|
|
47021
|
+
return self._arrow_binary
|
|
47022
|
+
|
|
47023
|
+
@builtins.property
|
|
47024
|
+
def next_page_token(self) -> Optional["scout_compute_api_PageToken"]:
|
|
47025
|
+
"""The token to retrieve the next page of arrays in the direction originally requested (exclusive - not
|
|
47026
|
+
included in these results). May be empty if there are no further values in the requested time range in the
|
|
47027
|
+
direction originally requested.
|
|
47028
|
+
"""
|
|
47029
|
+
return self._next_page_token
|
|
47030
|
+
|
|
47031
|
+
|
|
47032
|
+
scout_compute_api_PagedNumericArrayPlot.__name__ = "PagedNumericArrayPlot"
|
|
47033
|
+
scout_compute_api_PagedNumericArrayPlot.__qualname__ = "PagedNumericArrayPlot"
|
|
47034
|
+
scout_compute_api_PagedNumericArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
|
47035
|
+
|
|
47036
|
+
|
|
46571
47037
|
class scout_compute_api_ParameterInput(ConjureBeanType):
|
|
46572
47038
|
|
|
46573
47039
|
@builtins.classmethod
|
|
@@ -48737,6 +49203,7 @@ class scout_compute_api_Series(ConjureUnionType):
|
|
|
48737
49203
|
_enum: Optional["scout_compute_api_EnumSeries"] = None
|
|
48738
49204
|
_numeric: Optional["scout_compute_api_NumericSeries"] = None
|
|
48739
49205
|
_log: Optional["scout_compute_api_LogSeries"] = None
|
|
49206
|
+
_array: Optional["scout_compute_api_ArraySeries"] = None
|
|
48740
49207
|
|
|
48741
49208
|
@builtins.classmethod
|
|
48742
49209
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -48744,7 +49211,8 @@ class scout_compute_api_Series(ConjureUnionType):
|
|
|
48744
49211
|
'raw': ConjureFieldDefinition('raw', scout_compute_api_Reference),
|
|
48745
49212
|
'enum': ConjureFieldDefinition('enum', scout_compute_api_EnumSeries),
|
|
48746
49213
|
'numeric': ConjureFieldDefinition('numeric', scout_compute_api_NumericSeries),
|
|
48747
|
-
'log': ConjureFieldDefinition('log', scout_compute_api_LogSeries)
|
|
49214
|
+
'log': ConjureFieldDefinition('log', scout_compute_api_LogSeries),
|
|
49215
|
+
'array': ConjureFieldDefinition('array', scout_compute_api_ArraySeries)
|
|
48748
49216
|
}
|
|
48749
49217
|
|
|
48750
49218
|
def __init__(
|
|
@@ -48753,10 +49221,11 @@ class scout_compute_api_Series(ConjureUnionType):
|
|
|
48753
49221
|
enum: Optional["scout_compute_api_EnumSeries"] = None,
|
|
48754
49222
|
numeric: Optional["scout_compute_api_NumericSeries"] = None,
|
|
48755
49223
|
log: Optional["scout_compute_api_LogSeries"] = None,
|
|
49224
|
+
array: Optional["scout_compute_api_ArraySeries"] = None,
|
|
48756
49225
|
type_of_union: Optional[str] = None
|
|
48757
49226
|
) -> None:
|
|
48758
49227
|
if type_of_union is None:
|
|
48759
|
-
if (raw is not None) + (enum is not None) + (numeric is not None) + (log is not None) != 1:
|
|
49228
|
+
if (raw is not None) + (enum is not None) + (numeric is not None) + (log is not None) + (array is not None) != 1:
|
|
48760
49229
|
raise ValueError('a union must contain a single member')
|
|
48761
49230
|
|
|
48762
49231
|
if raw is not None:
|
|
@@ -48771,6 +49240,9 @@ class scout_compute_api_Series(ConjureUnionType):
|
|
|
48771
49240
|
if log is not None:
|
|
48772
49241
|
self._log = log
|
|
48773
49242
|
self._type = 'log'
|
|
49243
|
+
if array is not None:
|
|
49244
|
+
self._array = array
|
|
49245
|
+
self._type = 'array'
|
|
48774
49246
|
|
|
48775
49247
|
elif type_of_union == 'raw':
|
|
48776
49248
|
if raw is None:
|
|
@@ -48792,6 +49264,11 @@ class scout_compute_api_Series(ConjureUnionType):
|
|
|
48792
49264
|
raise ValueError('a union value must not be None')
|
|
48793
49265
|
self._log = log
|
|
48794
49266
|
self._type = 'log'
|
|
49267
|
+
elif type_of_union == 'array':
|
|
49268
|
+
if array is None:
|
|
49269
|
+
raise ValueError('a union value must not be None')
|
|
49270
|
+
self._array = array
|
|
49271
|
+
self._type = 'array'
|
|
48795
49272
|
|
|
48796
49273
|
@builtins.property
|
|
48797
49274
|
def raw(self) -> Optional["scout_compute_api_Reference"]:
|
|
@@ -48809,6 +49286,10 @@ class scout_compute_api_Series(ConjureUnionType):
|
|
|
48809
49286
|
def log(self) -> Optional["scout_compute_api_LogSeries"]:
|
|
48810
49287
|
return self._log
|
|
48811
49288
|
|
|
49289
|
+
@builtins.property
|
|
49290
|
+
def array(self) -> Optional["scout_compute_api_ArraySeries"]:
|
|
49291
|
+
return self._array
|
|
49292
|
+
|
|
48812
49293
|
def accept(self, visitor) -> Any:
|
|
48813
49294
|
if not isinstance(visitor, scout_compute_api_SeriesVisitor):
|
|
48814
49295
|
raise ValueError('{} is not an instance of scout_compute_api_SeriesVisitor'.format(visitor.__class__.__name__))
|
|
@@ -48820,6 +49301,8 @@ class scout_compute_api_Series(ConjureUnionType):
|
|
|
48820
49301
|
return visitor._numeric(self.numeric)
|
|
48821
49302
|
if self._type == 'log' and self.log is not None:
|
|
48822
49303
|
return visitor._log(self.log)
|
|
49304
|
+
if self._type == 'array' and self.array is not None:
|
|
49305
|
+
return visitor._array(self.array)
|
|
48823
49306
|
|
|
48824
49307
|
|
|
48825
49308
|
scout_compute_api_Series.__name__ = "Series"
|
|
@@ -48845,6 +49328,10 @@ class scout_compute_api_SeriesVisitor:
|
|
|
48845
49328
|
def _log(self, log: "scout_compute_api_LogSeries") -> Any:
|
|
48846
49329
|
pass
|
|
48847
49330
|
|
|
49331
|
+
@abstractmethod
|
|
49332
|
+
def _array(self, array: "scout_compute_api_ArraySeries") -> Any:
|
|
49333
|
+
pass
|
|
49334
|
+
|
|
48848
49335
|
|
|
48849
49336
|
scout_compute_api_SeriesVisitor.__name__ = "SeriesVisitor"
|
|
48850
49337
|
scout_compute_api_SeriesVisitor.__qualname__ = "SeriesVisitor"
|
|
@@ -50787,6 +51274,7 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50787
51274
|
_duration: Optional["scout_run_api_Duration"] = None
|
|
50788
51275
|
_integer: Optional[int] = None
|
|
50789
51276
|
_channel: Optional["scout_compute_api_ChannelSeries"] = None
|
|
51277
|
+
_derived: Optional["scout_compute_api_DerivedSeries"] = None
|
|
50790
51278
|
_series: Optional["scout_compute_api_SeriesSpec"] = None
|
|
50791
51279
|
_string: Optional[str] = None
|
|
50792
51280
|
_string_set: Optional[List[str]] = None
|
|
@@ -50800,6 +51288,7 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50800
51288
|
'duration': ConjureFieldDefinition('duration', scout_run_api_Duration),
|
|
50801
51289
|
'integer': ConjureFieldDefinition('integer', int),
|
|
50802
51290
|
'channel': ConjureFieldDefinition('channel', scout_compute_api_ChannelSeries),
|
|
51291
|
+
'derived': ConjureFieldDefinition('derived', scout_compute_api_DerivedSeries),
|
|
50803
51292
|
'series': ConjureFieldDefinition('series', scout_compute_api_SeriesSpec),
|
|
50804
51293
|
'string': ConjureFieldDefinition('string', str),
|
|
50805
51294
|
'string_set': ConjureFieldDefinition('stringSet', List[str]),
|
|
@@ -50813,6 +51302,7 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50813
51302
|
duration: Optional["scout_run_api_Duration"] = None,
|
|
50814
51303
|
integer: Optional[int] = None,
|
|
50815
51304
|
channel: Optional["scout_compute_api_ChannelSeries"] = None,
|
|
51305
|
+
derived: Optional["scout_compute_api_DerivedSeries"] = None,
|
|
50816
51306
|
series: Optional["scout_compute_api_SeriesSpec"] = None,
|
|
50817
51307
|
string: Optional[str] = None,
|
|
50818
51308
|
string_set: Optional[List[str]] = None,
|
|
@@ -50820,7 +51310,7 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50820
51310
|
type_of_union: Optional[str] = None
|
|
50821
51311
|
) -> None:
|
|
50822
51312
|
if type_of_union is None:
|
|
50823
|
-
if (double is not None) + (compute_node is not None) + (duration is not None) + (integer is not None) + (channel is not None) + (series is not None) + (string is not None) + (string_set is not None) + (timestamp is not None) != 1:
|
|
51313
|
+
if (double is not None) + (compute_node is not None) + (duration is not None) + (integer is not None) + (channel is not None) + (derived is not None) + (series is not None) + (string is not None) + (string_set is not None) + (timestamp is not None) != 1:
|
|
50824
51314
|
raise ValueError('a union must contain a single member')
|
|
50825
51315
|
|
|
50826
51316
|
if double is not None:
|
|
@@ -50838,6 +51328,9 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50838
51328
|
if channel is not None:
|
|
50839
51329
|
self._channel = channel
|
|
50840
51330
|
self._type = 'channel'
|
|
51331
|
+
if derived is not None:
|
|
51332
|
+
self._derived = derived
|
|
51333
|
+
self._type = 'derived'
|
|
50841
51334
|
if series is not None:
|
|
50842
51335
|
self._series = series
|
|
50843
51336
|
self._type = 'series'
|
|
@@ -50876,6 +51369,11 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50876
51369
|
raise ValueError('a union value must not be None')
|
|
50877
51370
|
self._channel = channel
|
|
50878
51371
|
self._type = 'channel'
|
|
51372
|
+
elif type_of_union == 'derived':
|
|
51373
|
+
if derived is None:
|
|
51374
|
+
raise ValueError('a union value must not be None')
|
|
51375
|
+
self._derived = derived
|
|
51376
|
+
self._type = 'derived'
|
|
50879
51377
|
elif type_of_union == 'series':
|
|
50880
51378
|
if series is None:
|
|
50881
51379
|
raise ValueError('a union value must not be None')
|
|
@@ -50917,6 +51415,10 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50917
51415
|
def channel(self) -> Optional["scout_compute_api_ChannelSeries"]:
|
|
50918
51416
|
return self._channel
|
|
50919
51417
|
|
|
51418
|
+
@builtins.property
|
|
51419
|
+
def derived(self) -> Optional["scout_compute_api_DerivedSeries"]:
|
|
51420
|
+
return self._derived
|
|
51421
|
+
|
|
50920
51422
|
@builtins.property
|
|
50921
51423
|
def series(self) -> Optional["scout_compute_api_SeriesSpec"]:
|
|
50922
51424
|
return self._series
|
|
@@ -50946,6 +51448,8 @@ class scout_compute_api_VariableValue(ConjureUnionType):
|
|
|
50946
51448
|
return visitor._integer(self.integer)
|
|
50947
51449
|
if self._type == 'channel' and self.channel is not None:
|
|
50948
51450
|
return visitor._channel(self.channel)
|
|
51451
|
+
if self._type == 'derived' and self.derived is not None:
|
|
51452
|
+
return visitor._derived(self.derived)
|
|
50949
51453
|
if self._type == 'series' and self.series is not None:
|
|
50950
51454
|
return visitor._series(self.series)
|
|
50951
51455
|
if self._type == 'string' and self.string is not None:
|
|
@@ -50983,6 +51487,10 @@ class scout_compute_api_VariableValueVisitor:
|
|
|
50983
51487
|
def _channel(self, channel: "scout_compute_api_ChannelSeries") -> Any:
|
|
50984
51488
|
pass
|
|
50985
51489
|
|
|
51490
|
+
@abstractmethod
|
|
51491
|
+
def _derived(self, derived: "scout_compute_api_DerivedSeries") -> Any:
|
|
51492
|
+
pass
|
|
51493
|
+
|
|
50986
51494
|
@abstractmethod
|
|
50987
51495
|
def _series(self, series: "scout_compute_api_SeriesSpec") -> Any:
|
|
50988
51496
|
pass
|
|
@@ -53220,6 +53728,83 @@ scout_compute_resolved_api_ArithmeticSeriesNode.__qualname__ = "ArithmeticSeries
|
|
|
53220
53728
|
scout_compute_resolved_api_ArithmeticSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
53221
53729
|
|
|
53222
53730
|
|
|
53731
|
+
class scout_compute_resolved_api_ArraySeriesNode(ConjureUnionType):
|
|
53732
|
+
_numeric1d: Optional["scout_compute_resolved_api_NumericArraySeriesNode"] = None
|
|
53733
|
+
_enum1d: Optional["scout_compute_resolved_api_EnumArraySeriesNode"] = None
|
|
53734
|
+
|
|
53735
|
+
@builtins.classmethod
|
|
53736
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
53737
|
+
return {
|
|
53738
|
+
'numeric1d': ConjureFieldDefinition('numeric1d', scout_compute_resolved_api_NumericArraySeriesNode),
|
|
53739
|
+
'enum1d': ConjureFieldDefinition('enum1d', scout_compute_resolved_api_EnumArraySeriesNode)
|
|
53740
|
+
}
|
|
53741
|
+
|
|
53742
|
+
def __init__(
|
|
53743
|
+
self,
|
|
53744
|
+
numeric1d: Optional["scout_compute_resolved_api_NumericArraySeriesNode"] = None,
|
|
53745
|
+
enum1d: Optional["scout_compute_resolved_api_EnumArraySeriesNode"] = None,
|
|
53746
|
+
type_of_union: Optional[str] = None
|
|
53747
|
+
) -> None:
|
|
53748
|
+
if type_of_union is None:
|
|
53749
|
+
if (numeric1d is not None) + (enum1d is not None) != 1:
|
|
53750
|
+
raise ValueError('a union must contain a single member')
|
|
53751
|
+
|
|
53752
|
+
if numeric1d is not None:
|
|
53753
|
+
self._numeric1d = numeric1d
|
|
53754
|
+
self._type = 'numeric1d'
|
|
53755
|
+
if enum1d is not None:
|
|
53756
|
+
self._enum1d = enum1d
|
|
53757
|
+
self._type = 'enum1d'
|
|
53758
|
+
|
|
53759
|
+
elif type_of_union == 'numeric1d':
|
|
53760
|
+
if numeric1d is None:
|
|
53761
|
+
raise ValueError('a union value must not be None')
|
|
53762
|
+
self._numeric1d = numeric1d
|
|
53763
|
+
self._type = 'numeric1d'
|
|
53764
|
+
elif type_of_union == 'enum1d':
|
|
53765
|
+
if enum1d is None:
|
|
53766
|
+
raise ValueError('a union value must not be None')
|
|
53767
|
+
self._enum1d = enum1d
|
|
53768
|
+
self._type = 'enum1d'
|
|
53769
|
+
|
|
53770
|
+
@builtins.property
|
|
53771
|
+
def numeric1d(self) -> Optional["scout_compute_resolved_api_NumericArraySeriesNode"]:
|
|
53772
|
+
return self._numeric1d
|
|
53773
|
+
|
|
53774
|
+
@builtins.property
|
|
53775
|
+
def enum1d(self) -> Optional["scout_compute_resolved_api_EnumArraySeriesNode"]:
|
|
53776
|
+
return self._enum1d
|
|
53777
|
+
|
|
53778
|
+
def accept(self, visitor) -> Any:
|
|
53779
|
+
if not isinstance(visitor, scout_compute_resolved_api_ArraySeriesNodeVisitor):
|
|
53780
|
+
raise ValueError('{} is not an instance of scout_compute_resolved_api_ArraySeriesNodeVisitor'.format(visitor.__class__.__name__))
|
|
53781
|
+
if self._type == 'numeric1d' and self.numeric1d is not None:
|
|
53782
|
+
return visitor._numeric1d(self.numeric1d)
|
|
53783
|
+
if self._type == 'enum1d' and self.enum1d is not None:
|
|
53784
|
+
return visitor._enum1d(self.enum1d)
|
|
53785
|
+
|
|
53786
|
+
|
|
53787
|
+
scout_compute_resolved_api_ArraySeriesNode.__name__ = "ArraySeriesNode"
|
|
53788
|
+
scout_compute_resolved_api_ArraySeriesNode.__qualname__ = "ArraySeriesNode"
|
|
53789
|
+
scout_compute_resolved_api_ArraySeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
53790
|
+
|
|
53791
|
+
|
|
53792
|
+
class scout_compute_resolved_api_ArraySeriesNodeVisitor:
|
|
53793
|
+
|
|
53794
|
+
@abstractmethod
|
|
53795
|
+
def _numeric1d(self, numeric1d: "scout_compute_resolved_api_NumericArraySeriesNode") -> Any:
|
|
53796
|
+
pass
|
|
53797
|
+
|
|
53798
|
+
@abstractmethod
|
|
53799
|
+
def _enum1d(self, enum1d: "scout_compute_resolved_api_EnumArraySeriesNode") -> Any:
|
|
53800
|
+
pass
|
|
53801
|
+
|
|
53802
|
+
|
|
53803
|
+
scout_compute_resolved_api_ArraySeriesNodeVisitor.__name__ = "ArraySeriesNodeVisitor"
|
|
53804
|
+
scout_compute_resolved_api_ArraySeriesNodeVisitor.__qualname__ = "ArraySeriesNodeVisitor"
|
|
53805
|
+
scout_compute_resolved_api_ArraySeriesNodeVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
53806
|
+
|
|
53807
|
+
|
|
53223
53808
|
class scout_compute_resolved_api_BandPassConfiguration(ConjureBeanType):
|
|
53224
53809
|
|
|
53225
53810
|
@builtins.classmethod
|
|
@@ -58150,6 +58735,7 @@ class scout_compute_resolved_api_SeriesNode(ConjureUnionType):
|
|
|
58150
58735
|
_enum: Optional["scout_compute_resolved_api_EnumSeriesNode"] = None
|
|
58151
58736
|
_numeric: Optional["scout_compute_resolved_api_NumericSeriesNode"] = None
|
|
58152
58737
|
_log: Optional["scout_compute_resolved_api_LogSeriesNode"] = None
|
|
58738
|
+
_array: Optional["scout_compute_resolved_api_ArraySeriesNode"] = None
|
|
58153
58739
|
|
|
58154
58740
|
@builtins.classmethod
|
|
58155
58741
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -58157,7 +58743,8 @@ class scout_compute_resolved_api_SeriesNode(ConjureUnionType):
|
|
|
58157
58743
|
'raw': ConjureFieldDefinition('raw', scout_compute_resolved_api_RawUntypedSeriesNode),
|
|
58158
58744
|
'enum': ConjureFieldDefinition('enum', scout_compute_resolved_api_EnumSeriesNode),
|
|
58159
58745
|
'numeric': ConjureFieldDefinition('numeric', scout_compute_resolved_api_NumericSeriesNode),
|
|
58160
|
-
'log': ConjureFieldDefinition('log', scout_compute_resolved_api_LogSeriesNode)
|
|
58746
|
+
'log': ConjureFieldDefinition('log', scout_compute_resolved_api_LogSeriesNode),
|
|
58747
|
+
'array': ConjureFieldDefinition('array', scout_compute_resolved_api_ArraySeriesNode)
|
|
58161
58748
|
}
|
|
58162
58749
|
|
|
58163
58750
|
def __init__(
|
|
@@ -58166,10 +58753,11 @@ class scout_compute_resolved_api_SeriesNode(ConjureUnionType):
|
|
|
58166
58753
|
enum: Optional["scout_compute_resolved_api_EnumSeriesNode"] = None,
|
|
58167
58754
|
numeric: Optional["scout_compute_resolved_api_NumericSeriesNode"] = None,
|
|
58168
58755
|
log: Optional["scout_compute_resolved_api_LogSeriesNode"] = None,
|
|
58756
|
+
array: Optional["scout_compute_resolved_api_ArraySeriesNode"] = None,
|
|
58169
58757
|
type_of_union: Optional[str] = None
|
|
58170
58758
|
) -> None:
|
|
58171
58759
|
if type_of_union is None:
|
|
58172
|
-
if (raw is not None) + (enum is not None) + (numeric is not None) + (log is not None) != 1:
|
|
58760
|
+
if (raw is not None) + (enum is not None) + (numeric is not None) + (log is not None) + (array is not None) != 1:
|
|
58173
58761
|
raise ValueError('a union must contain a single member')
|
|
58174
58762
|
|
|
58175
58763
|
if raw is not None:
|
|
@@ -58184,6 +58772,9 @@ class scout_compute_resolved_api_SeriesNode(ConjureUnionType):
|
|
|
58184
58772
|
if log is not None:
|
|
58185
58773
|
self._log = log
|
|
58186
58774
|
self._type = 'log'
|
|
58775
|
+
if array is not None:
|
|
58776
|
+
self._array = array
|
|
58777
|
+
self._type = 'array'
|
|
58187
58778
|
|
|
58188
58779
|
elif type_of_union == 'raw':
|
|
58189
58780
|
if raw is None:
|
|
@@ -58205,6 +58796,11 @@ class scout_compute_resolved_api_SeriesNode(ConjureUnionType):
|
|
|
58205
58796
|
raise ValueError('a union value must not be None')
|
|
58206
58797
|
self._log = log
|
|
58207
58798
|
self._type = 'log'
|
|
58799
|
+
elif type_of_union == 'array':
|
|
58800
|
+
if array is None:
|
|
58801
|
+
raise ValueError('a union value must not be None')
|
|
58802
|
+
self._array = array
|
|
58803
|
+
self._type = 'array'
|
|
58208
58804
|
|
|
58209
58805
|
@builtins.property
|
|
58210
58806
|
def raw(self) -> Optional["scout_compute_resolved_api_RawUntypedSeriesNode"]:
|
|
@@ -58222,6 +58818,10 @@ class scout_compute_resolved_api_SeriesNode(ConjureUnionType):
|
|
|
58222
58818
|
def log(self) -> Optional["scout_compute_resolved_api_LogSeriesNode"]:
|
|
58223
58819
|
return self._log
|
|
58224
58820
|
|
|
58821
|
+
@builtins.property
|
|
58822
|
+
def array(self) -> Optional["scout_compute_resolved_api_ArraySeriesNode"]:
|
|
58823
|
+
return self._array
|
|
58824
|
+
|
|
58225
58825
|
def accept(self, visitor) -> Any:
|
|
58226
58826
|
if not isinstance(visitor, scout_compute_resolved_api_SeriesNodeVisitor):
|
|
58227
58827
|
raise ValueError('{} is not an instance of scout_compute_resolved_api_SeriesNodeVisitor'.format(visitor.__class__.__name__))
|
|
@@ -58233,6 +58833,8 @@ class scout_compute_resolved_api_SeriesNode(ConjureUnionType):
|
|
|
58233
58833
|
return visitor._numeric(self.numeric)
|
|
58234
58834
|
if self._type == 'log' and self.log is not None:
|
|
58235
58835
|
return visitor._log(self.log)
|
|
58836
|
+
if self._type == 'array' and self.array is not None:
|
|
58837
|
+
return visitor._array(self.array)
|
|
58236
58838
|
|
|
58237
58839
|
|
|
58238
58840
|
scout_compute_resolved_api_SeriesNode.__name__ = "SeriesNode"
|
|
@@ -58258,6 +58860,10 @@ class scout_compute_resolved_api_SeriesNodeVisitor:
|
|
|
58258
58860
|
def _log(self, log: "scout_compute_resolved_api_LogSeriesNode") -> Any:
|
|
58259
58861
|
pass
|
|
58260
58862
|
|
|
58863
|
+
@abstractmethod
|
|
58864
|
+
def _array(self, array: "scout_compute_resolved_api_ArraySeriesNode") -> Any:
|
|
58865
|
+
pass
|
|
58866
|
+
|
|
58261
58867
|
|
|
58262
58868
|
scout_compute_resolved_api_SeriesNodeVisitor.__name__ = "SeriesNodeVisitor"
|
|
58263
58869
|
scout_compute_resolved_api_SeriesNodeVisitor.__qualname__ = "SeriesNodeVisitor"
|
|
@@ -9,6 +9,10 @@ from .._impl import (
|
|
|
9
9
|
scout_compute_api_ApproximateThresholdOperator as ApproximateThresholdOperator,
|
|
10
10
|
scout_compute_api_ApproximateThresholdRanges as ApproximateThresholdRanges,
|
|
11
11
|
scout_compute_api_ArithmeticSeries as ArithmeticSeries,
|
|
12
|
+
scout_compute_api_ArraySeries as ArraySeries,
|
|
13
|
+
scout_compute_api_ArraySeriesVisitor as ArraySeriesVisitor,
|
|
14
|
+
scout_compute_api_ArrowArrayPlot as ArrowArrayPlot,
|
|
15
|
+
scout_compute_api_ArrowArrayPlotVisitor as ArrowArrayPlotVisitor,
|
|
12
16
|
scout_compute_api_ArrowBucketedEnumPlot as ArrowBucketedEnumPlot,
|
|
13
17
|
scout_compute_api_ArrowBucketedNumericPlot as ArrowBucketedNumericPlot,
|
|
14
18
|
scout_compute_api_ArrowEnumPlot as ArrowEnumPlot,
|
|
@@ -34,9 +38,11 @@ from .._impl import (
|
|
|
34
38
|
scout_compute_api_BitXorFunction as BitXorFunction,
|
|
35
39
|
scout_compute_api_BucketedCartesian3dPlot as BucketedCartesian3dPlot,
|
|
36
40
|
scout_compute_api_BucketedCartesianPlot as BucketedCartesianPlot,
|
|
41
|
+
scout_compute_api_BucketedEnumArrayPlot as BucketedEnumArrayPlot,
|
|
37
42
|
scout_compute_api_BucketedEnumPlot as BucketedEnumPlot,
|
|
38
43
|
scout_compute_api_BucketedGeoPlot as BucketedGeoPlot,
|
|
39
44
|
scout_compute_api_BucketedGeoPlotVisitor as BucketedGeoPlotVisitor,
|
|
45
|
+
scout_compute_api_BucketedNumericArrayPlot as BucketedNumericArrayPlot,
|
|
40
46
|
scout_compute_api_BucketedNumericPlot as BucketedNumericPlot,
|
|
41
47
|
scout_compute_api_Cartesian as Cartesian,
|
|
42
48
|
scout_compute_api_Cartesian3d as Cartesian3d,
|
|
@@ -89,6 +95,8 @@ from .._impl import (
|
|
|
89
95
|
scout_compute_api_DecimateWithBuckets as DecimateWithBuckets,
|
|
90
96
|
scout_compute_api_DecimateWithResolution as DecimateWithResolution,
|
|
91
97
|
scout_compute_api_DerivativeSeries as DerivativeSeries,
|
|
98
|
+
scout_compute_api_DerivedSeries as DerivedSeries,
|
|
99
|
+
scout_compute_api_DerivedSeriesVisitor as DerivedSeriesVisitor,
|
|
92
100
|
scout_compute_api_DoubleConstant as DoubleConstant,
|
|
93
101
|
scout_compute_api_DoubleConstantVisitor as DoubleConstantVisitor,
|
|
94
102
|
scout_compute_api_DriverSeries3d as DriverSeries3d,
|
|
@@ -185,6 +193,7 @@ from .._impl import (
|
|
|
185
193
|
scout_compute_api_MinMaxThresholdRanges as MinMaxThresholdRanges,
|
|
186
194
|
scout_compute_api_MinSeries as MinSeries,
|
|
187
195
|
scout_compute_api_Minimum as Minimum,
|
|
196
|
+
scout_compute_api_ModuleApplicationDerivedSeries as ModuleApplicationDerivedSeries,
|
|
188
197
|
scout_compute_api_NegativeValueConfiguration as NegativeValueConfiguration,
|
|
189
198
|
scout_compute_api_NegativeValueConfigurationVisitor as NegativeValueConfigurationVisitor,
|
|
190
199
|
scout_compute_api_NotRanges as NotRanges,
|
|
@@ -220,7 +229,9 @@ from .._impl import (
|
|
|
220
229
|
scout_compute_api_PageStrategyVisitor as PageStrategyVisitor,
|
|
221
230
|
scout_compute_api_PageToken as PageToken,
|
|
222
231
|
scout_compute_api_PageTokenVisitor as PageTokenVisitor,
|
|
232
|
+
scout_compute_api_PagedEnumArrayPlot as PagedEnumArrayPlot,
|
|
223
233
|
scout_compute_api_PagedLogPlot as PagedLogPlot,
|
|
234
|
+
scout_compute_api_PagedNumericArrayPlot as PagedNumericArrayPlot,
|
|
224
235
|
scout_compute_api_ParameterInput as ParameterInput,
|
|
225
236
|
scout_compute_api_ParameterizedComputeNodeRequest as ParameterizedComputeNodeRequest,
|
|
226
237
|
scout_compute_api_ParameterizedComputeNodeResponse as ParameterizedComputeNodeResponse,
|
|
@@ -339,6 +350,10 @@ __all__ = [
|
|
|
339
350
|
'ApproximateThresholdOperator',
|
|
340
351
|
'ApproximateThresholdRanges',
|
|
341
352
|
'ArithmeticSeries',
|
|
353
|
+
'ArraySeries',
|
|
354
|
+
'ArraySeriesVisitor',
|
|
355
|
+
'ArrowArrayPlot',
|
|
356
|
+
'ArrowArrayPlotVisitor',
|
|
342
357
|
'ArrowBucketedEnumPlot',
|
|
343
358
|
'ArrowBucketedNumericPlot',
|
|
344
359
|
'ArrowEnumPlot',
|
|
@@ -364,9 +379,11 @@ __all__ = [
|
|
|
364
379
|
'BitXorFunction',
|
|
365
380
|
'BucketedCartesian3dPlot',
|
|
366
381
|
'BucketedCartesianPlot',
|
|
382
|
+
'BucketedEnumArrayPlot',
|
|
367
383
|
'BucketedEnumPlot',
|
|
368
384
|
'BucketedGeoPlot',
|
|
369
385
|
'BucketedGeoPlotVisitor',
|
|
386
|
+
'BucketedNumericArrayPlot',
|
|
370
387
|
'BucketedNumericPlot',
|
|
371
388
|
'Cartesian',
|
|
372
389
|
'CartesianVisitor',
|
|
@@ -418,6 +435,8 @@ __all__ = [
|
|
|
418
435
|
'DecimateWithBuckets',
|
|
419
436
|
'DecimateWithResolution',
|
|
420
437
|
'DerivativeSeries',
|
|
438
|
+
'DerivedSeries',
|
|
439
|
+
'DerivedSeriesVisitor',
|
|
421
440
|
'DoubleConstant',
|
|
422
441
|
'DoubleConstantVisitor',
|
|
423
442
|
'DriverSeries3d',
|
|
@@ -514,6 +533,7 @@ __all__ = [
|
|
|
514
533
|
'MinMaxThresholdRanges',
|
|
515
534
|
'MinSeries',
|
|
516
535
|
'Minimum',
|
|
536
|
+
'ModuleApplicationDerivedSeries',
|
|
517
537
|
'NegativeValueConfiguration',
|
|
518
538
|
'NegativeValueConfigurationVisitor',
|
|
519
539
|
'NotRanges',
|
|
@@ -549,7 +569,9 @@ __all__ = [
|
|
|
549
569
|
'PageStrategyVisitor',
|
|
550
570
|
'PageToken',
|
|
551
571
|
'PageTokenVisitor',
|
|
572
|
+
'PagedEnumArrayPlot',
|
|
552
573
|
'PagedLogPlot',
|
|
574
|
+
'PagedNumericArrayPlot',
|
|
553
575
|
'ParameterInput',
|
|
554
576
|
'ParameterizedComputeNodeRequest',
|
|
555
577
|
'ParameterizedComputeNodeResponse',
|
|
@@ -5,6 +5,8 @@ from .._impl import (
|
|
|
5
5
|
scout_compute_resolved_api_AggregateEnumSeriesNode as AggregateEnumSeriesNode,
|
|
6
6
|
scout_compute_resolved_api_AggregateNumericSeriesNode as AggregateNumericSeriesNode,
|
|
7
7
|
scout_compute_resolved_api_ArithmeticSeriesNode as ArithmeticSeriesNode,
|
|
8
|
+
scout_compute_resolved_api_ArraySeriesNode as ArraySeriesNode,
|
|
9
|
+
scout_compute_resolved_api_ArraySeriesNodeVisitor as ArraySeriesNodeVisitor,
|
|
8
10
|
scout_compute_resolved_api_BandPassConfiguration as BandPassConfiguration,
|
|
9
11
|
scout_compute_resolved_api_BandStopConfiguration as BandStopConfiguration,
|
|
10
12
|
scout_compute_resolved_api_BinaryArithmeticSeriesNode as BinaryArithmeticSeriesNode,
|
|
@@ -160,6 +162,8 @@ __all__ = [
|
|
|
160
162
|
'AggregateEnumSeriesNode',
|
|
161
163
|
'AggregateNumericSeriesNode',
|
|
162
164
|
'ArithmeticSeriesNode',
|
|
165
|
+
'ArraySeriesNode',
|
|
166
|
+
'ArraySeriesNodeVisitor',
|
|
163
167
|
'BandPassConfiguration',
|
|
164
168
|
'BandStopConfiguration',
|
|
165
169
|
'BinaryArithmeticSeriesNode',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=C8TOUpzPxlnt-PZIg80zWTZbdwJcAGBlT664bcOlQmQ,2012
|
|
2
|
+
nominal_api/_impl.py,sha256=GJaQ4bSGFheLnUcULCHu4eU3YdMgXRpw2dujSVkH0lU,3438202
|
|
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
|
|
@@ -33,9 +33,9 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHr
|
|
|
33
33
|
nominal_api/scout_checks_api/__init__.py,sha256=uCmiNrVwLDlkg8YnpP-uZr9nFFFN52sM644Qo6YNy3k,6972
|
|
34
34
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=RpTvc8WqNxOuDSXWs-xV3MSSFIoIy8Fj3eaIDCVygvU,6215
|
|
35
35
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
|
36
|
-
nominal_api/scout_compute_api/__init__.py,sha256=
|
|
36
|
+
nominal_api/scout_compute_api/__init__.py,sha256=u3dRvCib5I0Eu8fwfoaNFHH9cAQpr9ulBDjHY7FyiXc,30634
|
|
37
37
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
|
38
|
-
nominal_api/scout_compute_resolved_api/__init__.py,sha256=
|
|
38
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=jzIpuPL2C39v88tKQHcv0MROTe6tMQGXLSMpT5VtIpQ,16432
|
|
39
39
|
nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
|
|
40
40
|
nominal_api/scout_datareview_api/__init__.py,sha256=kTDvcuav5bBm3IPhvmDrBTYyVD26iQVkyzdZnu75omE,11695
|
|
41
41
|
nominal_api/scout_datasource/__init__.py,sha256=Z1Msu1Daf8GlLuM3w5imyB-6DhTNZojxI6xpH1sSvhM,141
|
|
@@ -75,7 +75,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
|
75
75
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
76
76
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
|
77
77
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
78
|
-
nominal_api-0.
|
|
79
|
-
nominal_api-0.
|
|
80
|
-
nominal_api-0.
|
|
81
|
-
nominal_api-0.
|
|
78
|
+
nominal_api-0.767.0.dist-info/METADATA,sha256=wljXeOzBtCdGWM3PmulcTKQ6hHMisUgT5bb8YCvZuL4,199
|
|
79
|
+
nominal_api-0.767.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
80
|
+
nominal_api-0.767.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
81
|
+
nominal_api-0.767.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|