nominal-api 0.745.0__py3-none-any.whl → 0.747.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 +497 -42
- nominal_api/scout_chartdefinition_api/__init__.py +16 -0
- nominal_api/scout_compute_api/__init__.py +8 -0
- {nominal_api-0.745.0.dist-info → nominal_api-0.747.0.dist-info}/METADATA +1 -1
- {nominal_api-0.745.0.dist-info → nominal_api-0.747.0.dist-info}/RECORD +8 -8
- {nominal_api-0.745.0.dist-info → nominal_api-0.747.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.745.0.dist-info → nominal_api-0.747.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -25630,24 +25630,136 @@ class scout_chartdefinition_api_EnumCellConfig(ConjureBeanType):
|
|
|
25630
25630
|
@builtins.classmethod
|
|
25631
25631
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
25632
25632
|
return {
|
|
25633
|
-
'visualisation': ConjureFieldDefinition('visualisation', OptionalTypeWrapper[scout_chartdefinition_api_EnumValueVisualisation])
|
|
25633
|
+
'visualisation': ConjureFieldDefinition('visualisation', OptionalTypeWrapper[scout_chartdefinition_api_EnumValueVisualisation]),
|
|
25634
|
+
'group_by_sort': ConjureFieldDefinition('groupBySort', OptionalTypeWrapper[scout_chartdefinition_api_EnumGroupBySort])
|
|
25634
25635
|
}
|
|
25635
25636
|
|
|
25636
|
-
__slots__: List[str] = ['_visualisation']
|
|
25637
|
+
__slots__: List[str] = ['_visualisation', '_group_by_sort']
|
|
25637
25638
|
|
|
25638
|
-
def __init__(self, visualisation: Optional["scout_chartdefinition_api_EnumValueVisualisation"] = None) -> None:
|
|
25639
|
+
def __init__(self, group_by_sort: Optional["scout_chartdefinition_api_EnumGroupBySort"] = None, visualisation: Optional["scout_chartdefinition_api_EnumValueVisualisation"] = None) -> None:
|
|
25639
25640
|
self._visualisation = visualisation
|
|
25641
|
+
self._group_by_sort = group_by_sort
|
|
25640
25642
|
|
|
25641
25643
|
@builtins.property
|
|
25642
25644
|
def visualisation(self) -> Optional["scout_chartdefinition_api_EnumValueVisualisation"]:
|
|
25643
25645
|
return self._visualisation
|
|
25644
25646
|
|
|
25647
|
+
@builtins.property
|
|
25648
|
+
def group_by_sort(self) -> Optional["scout_chartdefinition_api_EnumGroupBySort"]:
|
|
25649
|
+
"""Sorting configuration for grouped data rendering in a cell.
|
|
25650
|
+
If undefined, will sort alphabetically by grouping.
|
|
25651
|
+
"""
|
|
25652
|
+
return self._group_by_sort
|
|
25653
|
+
|
|
25645
25654
|
|
|
25646
25655
|
scout_chartdefinition_api_EnumCellConfig.__name__ = "EnumCellConfig"
|
|
25647
25656
|
scout_chartdefinition_api_EnumCellConfig.__qualname__ = "EnumCellConfig"
|
|
25648
25657
|
scout_chartdefinition_api_EnumCellConfig.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
25649
25658
|
|
|
25650
25659
|
|
|
25660
|
+
class scout_chartdefinition_api_EnumGroupBySort(ConjureUnionType):
|
|
25661
|
+
_custom: Optional["scout_chartdefinition_api_EnumGroupBySortCustom"] = None
|
|
25662
|
+
_alphabetical: Optional["scout_chartdefinition_api_ValueSort"] = None
|
|
25663
|
+
|
|
25664
|
+
@builtins.classmethod
|
|
25665
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
25666
|
+
return {
|
|
25667
|
+
'custom': ConjureFieldDefinition('custom', scout_chartdefinition_api_EnumGroupBySortCustom),
|
|
25668
|
+
'alphabetical': ConjureFieldDefinition('alphabetical', scout_chartdefinition_api_ValueSort)
|
|
25669
|
+
}
|
|
25670
|
+
|
|
25671
|
+
def __init__(
|
|
25672
|
+
self,
|
|
25673
|
+
custom: Optional["scout_chartdefinition_api_EnumGroupBySortCustom"] = None,
|
|
25674
|
+
alphabetical: Optional["scout_chartdefinition_api_ValueSort"] = None,
|
|
25675
|
+
type_of_union: Optional[str] = None
|
|
25676
|
+
) -> None:
|
|
25677
|
+
if type_of_union is None:
|
|
25678
|
+
if (custom is not None) + (alphabetical is not None) != 1:
|
|
25679
|
+
raise ValueError('a union must contain a single member')
|
|
25680
|
+
|
|
25681
|
+
if custom is not None:
|
|
25682
|
+
self._custom = custom
|
|
25683
|
+
self._type = 'custom'
|
|
25684
|
+
if alphabetical is not None:
|
|
25685
|
+
self._alphabetical = alphabetical
|
|
25686
|
+
self._type = 'alphabetical'
|
|
25687
|
+
|
|
25688
|
+
elif type_of_union == 'custom':
|
|
25689
|
+
if custom is None:
|
|
25690
|
+
raise ValueError('a union value must not be None')
|
|
25691
|
+
self._custom = custom
|
|
25692
|
+
self._type = 'custom'
|
|
25693
|
+
elif type_of_union == 'alphabetical':
|
|
25694
|
+
if alphabetical is None:
|
|
25695
|
+
raise ValueError('a union value must not be None')
|
|
25696
|
+
self._alphabetical = alphabetical
|
|
25697
|
+
self._type = 'alphabetical'
|
|
25698
|
+
|
|
25699
|
+
@builtins.property
|
|
25700
|
+
def custom(self) -> Optional["scout_chartdefinition_api_EnumGroupBySortCustom"]:
|
|
25701
|
+
return self._custom
|
|
25702
|
+
|
|
25703
|
+
@builtins.property
|
|
25704
|
+
def alphabetical(self) -> Optional["scout_chartdefinition_api_ValueSort"]:
|
|
25705
|
+
return self._alphabetical
|
|
25706
|
+
|
|
25707
|
+
def accept(self, visitor) -> Any:
|
|
25708
|
+
if not isinstance(visitor, scout_chartdefinition_api_EnumGroupBySortVisitor):
|
|
25709
|
+
raise ValueError('{} is not an instance of scout_chartdefinition_api_EnumGroupBySortVisitor'.format(visitor.__class__.__name__))
|
|
25710
|
+
if self._type == 'custom' and self.custom is not None:
|
|
25711
|
+
return visitor._custom(self.custom)
|
|
25712
|
+
if self._type == 'alphabetical' and self.alphabetical is not None:
|
|
25713
|
+
return visitor._alphabetical(self.alphabetical)
|
|
25714
|
+
|
|
25715
|
+
|
|
25716
|
+
scout_chartdefinition_api_EnumGroupBySort.__name__ = "EnumGroupBySort"
|
|
25717
|
+
scout_chartdefinition_api_EnumGroupBySort.__qualname__ = "EnumGroupBySort"
|
|
25718
|
+
scout_chartdefinition_api_EnumGroupBySort.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
25719
|
+
|
|
25720
|
+
|
|
25721
|
+
class scout_chartdefinition_api_EnumGroupBySortVisitor:
|
|
25722
|
+
|
|
25723
|
+
@abstractmethod
|
|
25724
|
+
def _custom(self, custom: "scout_chartdefinition_api_EnumGroupBySortCustom") -> Any:
|
|
25725
|
+
pass
|
|
25726
|
+
|
|
25727
|
+
@abstractmethod
|
|
25728
|
+
def _alphabetical(self, alphabetical: "scout_chartdefinition_api_ValueSort") -> Any:
|
|
25729
|
+
pass
|
|
25730
|
+
|
|
25731
|
+
|
|
25732
|
+
scout_chartdefinition_api_EnumGroupBySortVisitor.__name__ = "EnumGroupBySortVisitor"
|
|
25733
|
+
scout_chartdefinition_api_EnumGroupBySortVisitor.__qualname__ = "EnumGroupBySortVisitor"
|
|
25734
|
+
scout_chartdefinition_api_EnumGroupBySortVisitor.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
25735
|
+
|
|
25736
|
+
|
|
25737
|
+
class scout_chartdefinition_api_EnumGroupBySortCustom(ConjureBeanType):
|
|
25738
|
+
|
|
25739
|
+
@builtins.classmethod
|
|
25740
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
25741
|
+
return {
|
|
25742
|
+
'order': ConjureFieldDefinition('order', List[str])
|
|
25743
|
+
}
|
|
25744
|
+
|
|
25745
|
+
__slots__: List[str] = ['_order']
|
|
25746
|
+
|
|
25747
|
+
def __init__(self, order: List[str]) -> None:
|
|
25748
|
+
self._order = order
|
|
25749
|
+
|
|
25750
|
+
@builtins.property
|
|
25751
|
+
def order(self) -> List[str]:
|
|
25752
|
+
"""Specify the values in the order they should appear.
|
|
25753
|
+
Unspecified values will be sorted to the bottom.
|
|
25754
|
+
"""
|
|
25755
|
+
return self._order
|
|
25756
|
+
|
|
25757
|
+
|
|
25758
|
+
scout_chartdefinition_api_EnumGroupBySortCustom.__name__ = "EnumGroupBySortCustom"
|
|
25759
|
+
scout_chartdefinition_api_EnumGroupBySortCustom.__qualname__ = "EnumGroupBySortCustom"
|
|
25760
|
+
scout_chartdefinition_api_EnumGroupBySortCustom.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
25761
|
+
|
|
25762
|
+
|
|
25651
25763
|
class scout_chartdefinition_api_EnumRawVisualisation(ConjureBeanType):
|
|
25652
25764
|
"""The settings for a raw enum visualisation.
|
|
25653
25765
|
"""
|
|
@@ -27108,14 +27220,16 @@ class scout_chartdefinition_api_NumericCellConfig(ConjureBeanType):
|
|
|
27108
27220
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
27109
27221
|
return {
|
|
27110
27222
|
'visualisation': ConjureFieldDefinition('visualisation', OptionalTypeWrapper[scout_chartdefinition_api_NumericValueVisualisationV2]),
|
|
27111
|
-
'number_format': ConjureFieldDefinition('numberFormat', OptionalTypeWrapper[scout_chartdefinition_api_NumberFormat])
|
|
27223
|
+
'number_format': ConjureFieldDefinition('numberFormat', OptionalTypeWrapper[scout_chartdefinition_api_NumberFormat]),
|
|
27224
|
+
'group_by_sort': ConjureFieldDefinition('groupBySort', OptionalTypeWrapper[scout_chartdefinition_api_NumericGroupBySort])
|
|
27112
27225
|
}
|
|
27113
27226
|
|
|
27114
|
-
__slots__: List[str] = ['_visualisation', '_number_format']
|
|
27227
|
+
__slots__: List[str] = ['_visualisation', '_number_format', '_group_by_sort']
|
|
27115
27228
|
|
|
27116
|
-
def __init__(self, number_format: Optional["scout_chartdefinition_api_NumberFormat"] = None, visualisation: Optional["scout_chartdefinition_api_NumericValueVisualisationV2"] = None) -> None:
|
|
27229
|
+
def __init__(self, group_by_sort: Optional["scout_chartdefinition_api_NumericGroupBySort"] = None, number_format: Optional["scout_chartdefinition_api_NumberFormat"] = None, visualisation: Optional["scout_chartdefinition_api_NumericValueVisualisationV2"] = None) -> None:
|
|
27117
27230
|
self._visualisation = visualisation
|
|
27118
27231
|
self._number_format = number_format
|
|
27232
|
+
self._group_by_sort = group_by_sort
|
|
27119
27233
|
|
|
27120
27234
|
@builtins.property
|
|
27121
27235
|
def visualisation(self) -> Optional["scout_chartdefinition_api_NumericValueVisualisationV2"]:
|
|
@@ -27125,12 +27239,75 @@ class scout_chartdefinition_api_NumericCellConfig(ConjureBeanType):
|
|
|
27125
27239
|
def number_format(self) -> Optional["scout_chartdefinition_api_NumberFormat"]:
|
|
27126
27240
|
return self._number_format
|
|
27127
27241
|
|
|
27242
|
+
@builtins.property
|
|
27243
|
+
def group_by_sort(self) -> Optional["scout_chartdefinition_api_NumericGroupBySort"]:
|
|
27244
|
+
"""Sorting configuration for grouped data rendering in a cell.
|
|
27245
|
+
If undefined, will sort alphabetically by grouping.
|
|
27246
|
+
"""
|
|
27247
|
+
return self._group_by_sort
|
|
27248
|
+
|
|
27128
27249
|
|
|
27129
27250
|
scout_chartdefinition_api_NumericCellConfig.__name__ = "NumericCellConfig"
|
|
27130
27251
|
scout_chartdefinition_api_NumericCellConfig.__qualname__ = "NumericCellConfig"
|
|
27131
27252
|
scout_chartdefinition_api_NumericCellConfig.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
27132
27253
|
|
|
27133
27254
|
|
|
27255
|
+
class scout_chartdefinition_api_NumericGroupBySort(ConjureUnionType):
|
|
27256
|
+
_value: Optional["scout_chartdefinition_api_ValueSort"] = None
|
|
27257
|
+
|
|
27258
|
+
@builtins.classmethod
|
|
27259
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
27260
|
+
return {
|
|
27261
|
+
'value': ConjureFieldDefinition('value', scout_chartdefinition_api_ValueSort)
|
|
27262
|
+
}
|
|
27263
|
+
|
|
27264
|
+
def __init__(
|
|
27265
|
+
self,
|
|
27266
|
+
value: Optional["scout_chartdefinition_api_ValueSort"] = None,
|
|
27267
|
+
type_of_union: Optional[str] = None
|
|
27268
|
+
) -> None:
|
|
27269
|
+
if type_of_union is None:
|
|
27270
|
+
if (value is not None) != 1:
|
|
27271
|
+
raise ValueError('a union must contain a single member')
|
|
27272
|
+
|
|
27273
|
+
if value is not None:
|
|
27274
|
+
self._value = value
|
|
27275
|
+
self._type = 'value'
|
|
27276
|
+
|
|
27277
|
+
elif type_of_union == 'value':
|
|
27278
|
+
if value is None:
|
|
27279
|
+
raise ValueError('a union value must not be None')
|
|
27280
|
+
self._value = value
|
|
27281
|
+
self._type = 'value'
|
|
27282
|
+
|
|
27283
|
+
@builtins.property
|
|
27284
|
+
def value(self) -> Optional["scout_chartdefinition_api_ValueSort"]:
|
|
27285
|
+
return self._value
|
|
27286
|
+
|
|
27287
|
+
def accept(self, visitor) -> Any:
|
|
27288
|
+
if not isinstance(visitor, scout_chartdefinition_api_NumericGroupBySortVisitor):
|
|
27289
|
+
raise ValueError('{} is not an instance of scout_chartdefinition_api_NumericGroupBySortVisitor'.format(visitor.__class__.__name__))
|
|
27290
|
+
if self._type == 'value' and self.value is not None:
|
|
27291
|
+
return visitor._value(self.value)
|
|
27292
|
+
|
|
27293
|
+
|
|
27294
|
+
scout_chartdefinition_api_NumericGroupBySort.__name__ = "NumericGroupBySort"
|
|
27295
|
+
scout_chartdefinition_api_NumericGroupBySort.__qualname__ = "NumericGroupBySort"
|
|
27296
|
+
scout_chartdefinition_api_NumericGroupBySort.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
27297
|
+
|
|
27298
|
+
|
|
27299
|
+
class scout_chartdefinition_api_NumericGroupBySortVisitor:
|
|
27300
|
+
|
|
27301
|
+
@abstractmethod
|
|
27302
|
+
def _value(self, value: "scout_chartdefinition_api_ValueSort") -> Any:
|
|
27303
|
+
pass
|
|
27304
|
+
|
|
27305
|
+
|
|
27306
|
+
scout_chartdefinition_api_NumericGroupBySortVisitor.__name__ = "NumericGroupBySortVisitor"
|
|
27307
|
+
scout_chartdefinition_api_NumericGroupBySortVisitor.__qualname__ = "NumericGroupBySortVisitor"
|
|
27308
|
+
scout_chartdefinition_api_NumericGroupBySortVisitor.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
27309
|
+
|
|
27310
|
+
|
|
27134
27311
|
class scout_chartdefinition_api_NumericRawVisualisation(ConjureBeanType):
|
|
27135
27312
|
|
|
27136
27313
|
@builtins.classmethod
|
|
@@ -27626,24 +27803,89 @@ class scout_chartdefinition_api_RangeCellConfig(ConjureBeanType):
|
|
|
27626
27803
|
@builtins.classmethod
|
|
27627
27804
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
27628
27805
|
return {
|
|
27629
|
-
'visualisation': ConjureFieldDefinition('visualisation', OptionalTypeWrapper[scout_chartdefinition_api_RangeValueVisualisation])
|
|
27806
|
+
'visualisation': ConjureFieldDefinition('visualisation', OptionalTypeWrapper[scout_chartdefinition_api_RangeValueVisualisation]),
|
|
27807
|
+
'group_by_sort': ConjureFieldDefinition('groupBySort', OptionalTypeWrapper[scout_chartdefinition_api_RangeGroupBySort])
|
|
27630
27808
|
}
|
|
27631
27809
|
|
|
27632
|
-
__slots__: List[str] = ['_visualisation']
|
|
27810
|
+
__slots__: List[str] = ['_visualisation', '_group_by_sort']
|
|
27633
27811
|
|
|
27634
|
-
def __init__(self, visualisation: Optional["scout_chartdefinition_api_RangeValueVisualisation"] = None) -> None:
|
|
27812
|
+
def __init__(self, group_by_sort: Optional["scout_chartdefinition_api_RangeGroupBySort"] = None, visualisation: Optional["scout_chartdefinition_api_RangeValueVisualisation"] = None) -> None:
|
|
27635
27813
|
self._visualisation = visualisation
|
|
27814
|
+
self._group_by_sort = group_by_sort
|
|
27636
27815
|
|
|
27637
27816
|
@builtins.property
|
|
27638
27817
|
def visualisation(self) -> Optional["scout_chartdefinition_api_RangeValueVisualisation"]:
|
|
27639
27818
|
return self._visualisation
|
|
27640
27819
|
|
|
27820
|
+
@builtins.property
|
|
27821
|
+
def group_by_sort(self) -> Optional["scout_chartdefinition_api_RangeGroupBySort"]:
|
|
27822
|
+
"""Sorting configuration for grouped data rendering in a cell.
|
|
27823
|
+
If undefined, will sort alphabetically by grouping.
|
|
27824
|
+
"""
|
|
27825
|
+
return self._group_by_sort
|
|
27826
|
+
|
|
27641
27827
|
|
|
27642
27828
|
scout_chartdefinition_api_RangeCellConfig.__name__ = "RangeCellConfig"
|
|
27643
27829
|
scout_chartdefinition_api_RangeCellConfig.__qualname__ = "RangeCellConfig"
|
|
27644
27830
|
scout_chartdefinition_api_RangeCellConfig.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
27645
27831
|
|
|
27646
27832
|
|
|
27833
|
+
class scout_chartdefinition_api_RangeGroupBySort(ConjureUnionType):
|
|
27834
|
+
_value: Optional["scout_chartdefinition_api_ValueSort"] = None
|
|
27835
|
+
|
|
27836
|
+
@builtins.classmethod
|
|
27837
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
27838
|
+
return {
|
|
27839
|
+
'value': ConjureFieldDefinition('value', scout_chartdefinition_api_ValueSort)
|
|
27840
|
+
}
|
|
27841
|
+
|
|
27842
|
+
def __init__(
|
|
27843
|
+
self,
|
|
27844
|
+
value: Optional["scout_chartdefinition_api_ValueSort"] = None,
|
|
27845
|
+
type_of_union: Optional[str] = None
|
|
27846
|
+
) -> None:
|
|
27847
|
+
if type_of_union is None:
|
|
27848
|
+
if (value is not None) != 1:
|
|
27849
|
+
raise ValueError('a union must contain a single member')
|
|
27850
|
+
|
|
27851
|
+
if value is not None:
|
|
27852
|
+
self._value = value
|
|
27853
|
+
self._type = 'value'
|
|
27854
|
+
|
|
27855
|
+
elif type_of_union == 'value':
|
|
27856
|
+
if value is None:
|
|
27857
|
+
raise ValueError('a union value must not be None')
|
|
27858
|
+
self._value = value
|
|
27859
|
+
self._type = 'value'
|
|
27860
|
+
|
|
27861
|
+
@builtins.property
|
|
27862
|
+
def value(self) -> Optional["scout_chartdefinition_api_ValueSort"]:
|
|
27863
|
+
return self._value
|
|
27864
|
+
|
|
27865
|
+
def accept(self, visitor) -> Any:
|
|
27866
|
+
if not isinstance(visitor, scout_chartdefinition_api_RangeGroupBySortVisitor):
|
|
27867
|
+
raise ValueError('{} is not an instance of scout_chartdefinition_api_RangeGroupBySortVisitor'.format(visitor.__class__.__name__))
|
|
27868
|
+
if self._type == 'value' and self.value is not None:
|
|
27869
|
+
return visitor._value(self.value)
|
|
27870
|
+
|
|
27871
|
+
|
|
27872
|
+
scout_chartdefinition_api_RangeGroupBySort.__name__ = "RangeGroupBySort"
|
|
27873
|
+
scout_chartdefinition_api_RangeGroupBySort.__qualname__ = "RangeGroupBySort"
|
|
27874
|
+
scout_chartdefinition_api_RangeGroupBySort.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
27875
|
+
|
|
27876
|
+
|
|
27877
|
+
class scout_chartdefinition_api_RangeGroupBySortVisitor:
|
|
27878
|
+
|
|
27879
|
+
@abstractmethod
|
|
27880
|
+
def _value(self, value: "scout_chartdefinition_api_ValueSort") -> Any:
|
|
27881
|
+
pass
|
|
27882
|
+
|
|
27883
|
+
|
|
27884
|
+
scout_chartdefinition_api_RangeGroupBySortVisitor.__name__ = "RangeGroupBySortVisitor"
|
|
27885
|
+
scout_chartdefinition_api_RangeGroupBySortVisitor.__qualname__ = "RangeGroupBySortVisitor"
|
|
27886
|
+
scout_chartdefinition_api_RangeGroupBySortVisitor.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
27887
|
+
|
|
27888
|
+
|
|
27647
27889
|
class scout_chartdefinition_api_RangeRawVisualisation(ConjureBeanType):
|
|
27648
27890
|
"""The settings for a raw range visualisation.
|
|
27649
27891
|
"""
|
|
@@ -28611,6 +28853,32 @@ scout_chartdefinition_api_ValueAxis.__qualname__ = "ValueAxis"
|
|
|
28611
28853
|
scout_chartdefinition_api_ValueAxis.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
28612
28854
|
|
|
28613
28855
|
|
|
28856
|
+
class scout_chartdefinition_api_ValueSort(ConjureBeanType):
|
|
28857
|
+
|
|
28858
|
+
@builtins.classmethod
|
|
28859
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
28860
|
+
return {
|
|
28861
|
+
'is_descending': ConjureFieldDefinition('isDescending', bool)
|
|
28862
|
+
}
|
|
28863
|
+
|
|
28864
|
+
__slots__: List[str] = ['_is_descending']
|
|
28865
|
+
|
|
28866
|
+
def __init__(self, is_descending: bool) -> None:
|
|
28867
|
+
self._is_descending = is_descending
|
|
28868
|
+
|
|
28869
|
+
@builtins.property
|
|
28870
|
+
def is_descending(self) -> bool:
|
|
28871
|
+
"""If true, numerics sort high to low, enums sort alphabetically descending, and ranges sort inRange groupings first.
|
|
28872
|
+
If false, the opposite is true for each.
|
|
28873
|
+
"""
|
|
28874
|
+
return self._is_descending
|
|
28875
|
+
|
|
28876
|
+
|
|
28877
|
+
scout_chartdefinition_api_ValueSort.__name__ = "ValueSort"
|
|
28878
|
+
scout_chartdefinition_api_ValueSort.__qualname__ = "ValueSort"
|
|
28879
|
+
scout_chartdefinition_api_ValueSort.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
28880
|
+
|
|
28881
|
+
|
|
28614
28882
|
class scout_chartdefinition_api_ValueTableCell(ConjureBeanType):
|
|
28615
28883
|
|
|
28616
28884
|
@builtins.classmethod
|
|
@@ -37202,6 +37470,56 @@ scout_compute_api_ArithmeticSeries.__qualname__ = "ArithmeticSeries"
|
|
|
37202
37470
|
scout_compute_api_ArithmeticSeries.__module__ = "nominal_api.scout_compute_api"
|
|
37203
37471
|
|
|
37204
37472
|
|
|
37473
|
+
class scout_compute_api_ArrowBucketedNumericPlot(ConjureBeanType):
|
|
37474
|
+
|
|
37475
|
+
@builtins.classmethod
|
|
37476
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37477
|
+
return {
|
|
37478
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
37479
|
+
}
|
|
37480
|
+
|
|
37481
|
+
__slots__: List[str] = ['_arrow_binary']
|
|
37482
|
+
|
|
37483
|
+
def __init__(self, arrow_binary: Any) -> None:
|
|
37484
|
+
self._arrow_binary = arrow_binary
|
|
37485
|
+
|
|
37486
|
+
@builtins.property
|
|
37487
|
+
def arrow_binary(self) -> Any:
|
|
37488
|
+
"""The raw binary containing Arrow IPC stream for BucketedNumericPlot
|
|
37489
|
+
"""
|
|
37490
|
+
return self._arrow_binary
|
|
37491
|
+
|
|
37492
|
+
|
|
37493
|
+
scout_compute_api_ArrowBucketedNumericPlot.__name__ = "ArrowBucketedNumericPlot"
|
|
37494
|
+
scout_compute_api_ArrowBucketedNumericPlot.__qualname__ = "ArrowBucketedNumericPlot"
|
|
37495
|
+
scout_compute_api_ArrowBucketedNumericPlot.__module__ = "nominal_api.scout_compute_api"
|
|
37496
|
+
|
|
37497
|
+
|
|
37498
|
+
class scout_compute_api_ArrowNumericPlot(ConjureBeanType):
|
|
37499
|
+
|
|
37500
|
+
@builtins.classmethod
|
|
37501
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37502
|
+
return {
|
|
37503
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
37504
|
+
}
|
|
37505
|
+
|
|
37506
|
+
__slots__: List[str] = ['_arrow_binary']
|
|
37507
|
+
|
|
37508
|
+
def __init__(self, arrow_binary: Any) -> None:
|
|
37509
|
+
self._arrow_binary = arrow_binary
|
|
37510
|
+
|
|
37511
|
+
@builtins.property
|
|
37512
|
+
def arrow_binary(self) -> Any:
|
|
37513
|
+
"""The raw binary containing Arrow IPC stream for NumericPlot
|
|
37514
|
+
"""
|
|
37515
|
+
return self._arrow_binary
|
|
37516
|
+
|
|
37517
|
+
|
|
37518
|
+
scout_compute_api_ArrowNumericPlot.__name__ = "ArrowNumericPlot"
|
|
37519
|
+
scout_compute_api_ArrowNumericPlot.__qualname__ = "ArrowNumericPlot"
|
|
37520
|
+
scout_compute_api_ArrowNumericPlot.__module__ = "nominal_api.scout_compute_api"
|
|
37521
|
+
|
|
37522
|
+
|
|
37205
37523
|
class scout_compute_api_AssetChannel(ConjureBeanType):
|
|
37206
37524
|
|
|
37207
37525
|
@builtins.classmethod
|
|
@@ -39093,6 +39411,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39093
39411
|
_numeric: Optional["scout_compute_api_NumericPlot"] = None
|
|
39094
39412
|
_bucketed_numeric: Optional["scout_compute_api_BucketedNumericPlot"] = None
|
|
39095
39413
|
_numeric_point: Optional[Optional["scout_compute_api_NumericPoint"]] = None
|
|
39414
|
+
_arrow_numeric: Optional["scout_compute_api_ArrowNumericPlot"] = None
|
|
39415
|
+
_arrow_bucketed_numeric: Optional["scout_compute_api_ArrowBucketedNumericPlot"] = None
|
|
39096
39416
|
_enum: Optional["scout_compute_api_EnumPlot"] = None
|
|
39097
39417
|
_enum_point: Optional[Optional["scout_compute_api_EnumPoint"]] = None
|
|
39098
39418
|
_bucketed_enum: Optional["scout_compute_api_BucketedEnumPlot"] = None
|
|
@@ -39117,6 +39437,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39117
39437
|
'numeric': ConjureFieldDefinition('numeric', scout_compute_api_NumericPlot),
|
|
39118
39438
|
'bucketed_numeric': ConjureFieldDefinition('bucketedNumeric', scout_compute_api_BucketedNumericPlot),
|
|
39119
39439
|
'numeric_point': ConjureFieldDefinition('numericPoint', OptionalTypeWrapper[scout_compute_api_NumericPoint]),
|
|
39440
|
+
'arrow_numeric': ConjureFieldDefinition('arrowNumeric', scout_compute_api_ArrowNumericPlot),
|
|
39441
|
+
'arrow_bucketed_numeric': ConjureFieldDefinition('arrowBucketedNumeric', scout_compute_api_ArrowBucketedNumericPlot),
|
|
39120
39442
|
'enum': ConjureFieldDefinition('enum', scout_compute_api_EnumPlot),
|
|
39121
39443
|
'enum_point': ConjureFieldDefinition('enumPoint', OptionalTypeWrapper[scout_compute_api_EnumPoint]),
|
|
39122
39444
|
'bucketed_enum': ConjureFieldDefinition('bucketedEnum', scout_compute_api_BucketedEnumPlot),
|
|
@@ -39141,6 +39463,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39141
39463
|
numeric: Optional["scout_compute_api_NumericPlot"] = None,
|
|
39142
39464
|
bucketed_numeric: Optional["scout_compute_api_BucketedNumericPlot"] = None,
|
|
39143
39465
|
numeric_point: Optional[Optional["scout_compute_api_NumericPoint"]] = None,
|
|
39466
|
+
arrow_numeric: Optional["scout_compute_api_ArrowNumericPlot"] = None,
|
|
39467
|
+
arrow_bucketed_numeric: Optional["scout_compute_api_ArrowBucketedNumericPlot"] = None,
|
|
39144
39468
|
enum: Optional["scout_compute_api_EnumPlot"] = None,
|
|
39145
39469
|
enum_point: Optional[Optional["scout_compute_api_EnumPoint"]] = None,
|
|
39146
39470
|
bucketed_enum: Optional["scout_compute_api_BucketedEnumPlot"] = None,
|
|
@@ -39158,7 +39482,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39158
39482
|
type_of_union: Optional[str] = None
|
|
39159
39483
|
) -> None:
|
|
39160
39484
|
if type_of_union is None:
|
|
39161
|
-
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) + (enum is not None) + (enum_point is not None) + (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:
|
|
39485
|
+
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) + (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:
|
|
39162
39486
|
raise ValueError('a union must contain a single member')
|
|
39163
39487
|
|
|
39164
39488
|
if range is not None:
|
|
@@ -39179,6 +39503,12 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39179
39503
|
if numeric_point is not None:
|
|
39180
39504
|
self._numeric_point = numeric_point
|
|
39181
39505
|
self._type = 'numericPoint'
|
|
39506
|
+
if arrow_numeric is not None:
|
|
39507
|
+
self._arrow_numeric = arrow_numeric
|
|
39508
|
+
self._type = 'arrowNumeric'
|
|
39509
|
+
if arrow_bucketed_numeric is not None:
|
|
39510
|
+
self._arrow_bucketed_numeric = arrow_bucketed_numeric
|
|
39511
|
+
self._type = 'arrowBucketedNumeric'
|
|
39182
39512
|
if enum is not None:
|
|
39183
39513
|
self._enum = enum
|
|
39184
39514
|
self._type = 'enum'
|
|
@@ -39252,6 +39582,16 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39252
39582
|
raise ValueError('a union value must not be None')
|
|
39253
39583
|
self._numeric_point = numeric_point
|
|
39254
39584
|
self._type = 'numericPoint'
|
|
39585
|
+
elif type_of_union == 'arrowNumeric':
|
|
39586
|
+
if arrow_numeric is None:
|
|
39587
|
+
raise ValueError('a union value must not be None')
|
|
39588
|
+
self._arrow_numeric = arrow_numeric
|
|
39589
|
+
self._type = 'arrowNumeric'
|
|
39590
|
+
elif type_of_union == 'arrowBucketedNumeric':
|
|
39591
|
+
if arrow_bucketed_numeric is None:
|
|
39592
|
+
raise ValueError('a union value must not be None')
|
|
39593
|
+
self._arrow_bucketed_numeric = arrow_bucketed_numeric
|
|
39594
|
+
self._type = 'arrowBucketedNumeric'
|
|
39255
39595
|
elif type_of_union == 'enum':
|
|
39256
39596
|
if enum is None:
|
|
39257
39597
|
raise ValueError('a union value must not be None')
|
|
@@ -39347,6 +39687,14 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39347
39687
|
def numeric_point(self) -> Optional[Optional["scout_compute_api_NumericPoint"]]:
|
|
39348
39688
|
return self._numeric_point
|
|
39349
39689
|
|
|
39690
|
+
@builtins.property
|
|
39691
|
+
def arrow_numeric(self) -> Optional["scout_compute_api_ArrowNumericPlot"]:
|
|
39692
|
+
return self._arrow_numeric
|
|
39693
|
+
|
|
39694
|
+
@builtins.property
|
|
39695
|
+
def arrow_bucketed_numeric(self) -> Optional["scout_compute_api_ArrowBucketedNumericPlot"]:
|
|
39696
|
+
return self._arrow_bucketed_numeric
|
|
39697
|
+
|
|
39350
39698
|
@builtins.property
|
|
39351
39699
|
def enum(self) -> Optional["scout_compute_api_EnumPlot"]:
|
|
39352
39700
|
return self._enum
|
|
@@ -39418,6 +39766,10 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39418
39766
|
return visitor._bucketed_numeric(self.bucketed_numeric)
|
|
39419
39767
|
if self._type == 'numericPoint' and self.numeric_point is not None:
|
|
39420
39768
|
return visitor._numeric_point(self.numeric_point)
|
|
39769
|
+
if self._type == 'arrowNumeric' and self.arrow_numeric is not None:
|
|
39770
|
+
return visitor._arrow_numeric(self.arrow_numeric)
|
|
39771
|
+
if self._type == 'arrowBucketedNumeric' and self.arrow_bucketed_numeric is not None:
|
|
39772
|
+
return visitor._arrow_bucketed_numeric(self.arrow_bucketed_numeric)
|
|
39421
39773
|
if self._type == 'enum' and self.enum is not None:
|
|
39422
39774
|
return visitor._enum(self.enum)
|
|
39423
39775
|
if self._type == 'enumPoint' and self.enum_point is not None:
|
|
@@ -39479,6 +39831,14 @@ class scout_compute_api_ComputeNodeResponseVisitor:
|
|
|
39479
39831
|
def _numeric_point(self, numeric_point: Optional["scout_compute_api_NumericPoint"]) -> Any:
|
|
39480
39832
|
pass
|
|
39481
39833
|
|
|
39834
|
+
@abstractmethod
|
|
39835
|
+
def _arrow_numeric(self, arrow_numeric: "scout_compute_api_ArrowNumericPlot") -> Any:
|
|
39836
|
+
pass
|
|
39837
|
+
|
|
39838
|
+
@abstractmethod
|
|
39839
|
+
def _arrow_bucketed_numeric(self, arrow_bucketed_numeric: "scout_compute_api_ArrowBucketedNumericPlot") -> Any:
|
|
39840
|
+
pass
|
|
39841
|
+
|
|
39482
39842
|
@abstractmethod
|
|
39483
39843
|
def _enum(self, enum: "scout_compute_api_EnumPlot") -> Any:
|
|
39484
39844
|
pass
|
|
@@ -40542,6 +40902,35 @@ scout_compute_api_CurveResultDetailsVisitor.__qualname__ = "CurveResultDetailsVi
|
|
|
40542
40902
|
scout_compute_api_CurveResultDetailsVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
40543
40903
|
|
|
40544
40904
|
|
|
40905
|
+
class scout_compute_api_DataSourceAndChannel(ConjureBeanType):
|
|
40906
|
+
|
|
40907
|
+
@builtins.classmethod
|
|
40908
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
40909
|
+
return {
|
|
40910
|
+
'data_source_rid': ConjureFieldDefinition('dataSourceRid', api_rids_DataSourceRid),
|
|
40911
|
+
'channel': ConjureFieldDefinition('channel', str)
|
|
40912
|
+
}
|
|
40913
|
+
|
|
40914
|
+
__slots__: List[str] = ['_data_source_rid', '_channel']
|
|
40915
|
+
|
|
40916
|
+
def __init__(self, channel: str, data_source_rid: str) -> None:
|
|
40917
|
+
self._data_source_rid = data_source_rid
|
|
40918
|
+
self._channel = channel
|
|
40919
|
+
|
|
40920
|
+
@builtins.property
|
|
40921
|
+
def data_source_rid(self) -> str:
|
|
40922
|
+
return self._data_source_rid
|
|
40923
|
+
|
|
40924
|
+
@builtins.property
|
|
40925
|
+
def channel(self) -> str:
|
|
40926
|
+
return self._channel
|
|
40927
|
+
|
|
40928
|
+
|
|
40929
|
+
scout_compute_api_DataSourceAndChannel.__name__ = "DataSourceAndChannel"
|
|
40930
|
+
scout_compute_api_DataSourceAndChannel.__qualname__ = "DataSourceAndChannel"
|
|
40931
|
+
scout_compute_api_DataSourceAndChannel.__module__ = "nominal_api.scout_compute_api"
|
|
40932
|
+
|
|
40933
|
+
|
|
40545
40934
|
class scout_compute_api_DataSourceChannel(ConjureBeanType):
|
|
40546
40935
|
|
|
40547
40936
|
@builtins.classmethod
|
|
@@ -45559,6 +45948,24 @@ scout_compute_api_OnChangeRanges.__qualname__ = "OnChangeRanges"
|
|
|
45559
45948
|
scout_compute_api_OnChangeRanges.__module__ = "nominal_api.scout_compute_api"
|
|
45560
45949
|
|
|
45561
45950
|
|
|
45951
|
+
class scout_compute_api_OutputFormat(ConjureEnumType):
|
|
45952
|
+
|
|
45953
|
+
ARROW_V1 = 'ARROW_V1'
|
|
45954
|
+
'''ARROW_V1'''
|
|
45955
|
+
LEGACY = 'LEGACY'
|
|
45956
|
+
'''LEGACY'''
|
|
45957
|
+
UNKNOWN = 'UNKNOWN'
|
|
45958
|
+
'''UNKNOWN'''
|
|
45959
|
+
|
|
45960
|
+
def __reduce_ex__(self, proto):
|
|
45961
|
+
return self.__class__, (self.name,)
|
|
45962
|
+
|
|
45963
|
+
|
|
45964
|
+
scout_compute_api_OutputFormat.__name__ = "OutputFormat"
|
|
45965
|
+
scout_compute_api_OutputFormat.__qualname__ = "OutputFormat"
|
|
45966
|
+
scout_compute_api_OutputFormat.__module__ = "nominal_api.scout_compute_api"
|
|
45967
|
+
|
|
45968
|
+
|
|
45562
45969
|
class scout_compute_api_OutputRangeStart(ConjureUnionType):
|
|
45563
45970
|
_first_point_matching_condition: Optional["scout_compute_api_FirstPointMatchingCondition"] = None
|
|
45564
45971
|
_after_persistence_window: Optional["scout_compute_api_AfterPersistenceWindow"] = None
|
|
@@ -49070,15 +49477,17 @@ Summarization strategy should be specified.
|
|
|
49070
49477
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
49071
49478
|
return {
|
|
49072
49479
|
'input': ConjureFieldDefinition('input', scout_compute_api_Series),
|
|
49480
|
+
'output_format': ConjureFieldDefinition('outputFormat', OptionalTypeWrapper[scout_compute_api_OutputFormat]),
|
|
49073
49481
|
'resolution': ConjureFieldDefinition('resolution', OptionalTypeWrapper[int]),
|
|
49074
49482
|
'buckets': ConjureFieldDefinition('buckets', OptionalTypeWrapper[int]),
|
|
49075
49483
|
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', OptionalTypeWrapper[scout_compute_api_SummarizationStrategy])
|
|
49076
49484
|
}
|
|
49077
49485
|
|
|
49078
|
-
__slots__: List[str] = ['_input', '_resolution', '_buckets', '_summarization_strategy']
|
|
49486
|
+
__slots__: List[str] = ['_input', '_output_format', '_resolution', '_buckets', '_summarization_strategy']
|
|
49079
49487
|
|
|
49080
|
-
def __init__(self, input: "scout_compute_api_Series", buckets: Optional[int] = None, resolution: Optional[int] = None, summarization_strategy: Optional["scout_compute_api_SummarizationStrategy"] = None) -> None:
|
|
49488
|
+
def __init__(self, input: "scout_compute_api_Series", buckets: Optional[int] = None, output_format: Optional["scout_compute_api_OutputFormat"] = None, resolution: Optional[int] = None, summarization_strategy: Optional["scout_compute_api_SummarizationStrategy"] = None) -> None:
|
|
49081
49489
|
self._input = input
|
|
49490
|
+
self._output_format = output_format
|
|
49082
49491
|
self._resolution = resolution
|
|
49083
49492
|
self._buckets = buckets
|
|
49084
49493
|
self._summarization_strategy = summarization_strategy
|
|
@@ -49087,6 +49496,12 @@ Summarization strategy should be specified.
|
|
|
49087
49496
|
def input(self) -> "scout_compute_api_Series":
|
|
49088
49497
|
return self._input
|
|
49089
49498
|
|
|
49499
|
+
@builtins.property
|
|
49500
|
+
def output_format(self) -> Optional["scout_compute_api_OutputFormat"]:
|
|
49501
|
+
"""The output format of the response. Defaults to LEGACY.
|
|
49502
|
+
"""
|
|
49503
|
+
return self._output_format
|
|
49504
|
+
|
|
49090
49505
|
@builtins.property
|
|
49091
49506
|
def resolution(self) -> Optional[int]:
|
|
49092
49507
|
"""Resolution of the output series specifying time interval between decimated points.
|
|
@@ -49827,18 +50242,24 @@ class scout_compute_api_UnitsMissing(ConjureBeanType):
|
|
|
49827
50242
|
@builtins.classmethod
|
|
49828
50243
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
49829
50244
|
return {
|
|
49830
|
-
'series_rids': ConjureFieldDefinition('seriesRids', List[api_LogicalSeriesRid])
|
|
50245
|
+
'series_rids': ConjureFieldDefinition('seriesRids', List[api_LogicalSeriesRid]),
|
|
50246
|
+
'channels': ConjureFieldDefinition('channels', List[scout_compute_api_DataSourceAndChannel])
|
|
49831
50247
|
}
|
|
49832
50248
|
|
|
49833
|
-
__slots__: List[str] = ['_series_rids']
|
|
50249
|
+
__slots__: List[str] = ['_series_rids', '_channels']
|
|
49834
50250
|
|
|
49835
|
-
def __init__(self, series_rids: List[str]) -> None:
|
|
50251
|
+
def __init__(self, channels: List["scout_compute_api_DataSourceAndChannel"], series_rids: List[str]) -> None:
|
|
49836
50252
|
self._series_rids = series_rids
|
|
50253
|
+
self._channels = channels
|
|
49837
50254
|
|
|
49838
50255
|
@builtins.property
|
|
49839
50256
|
def series_rids(self) -> List[str]:
|
|
49840
50257
|
return self._series_rids
|
|
49841
50258
|
|
|
50259
|
+
@builtins.property
|
|
50260
|
+
def channels(self) -> List["scout_compute_api_DataSourceAndChannel"]:
|
|
50261
|
+
return self._channels
|
|
50262
|
+
|
|
49842
50263
|
|
|
49843
50264
|
scout_compute_api_UnitsMissing.__name__ = "UnitsMissing"
|
|
49844
50265
|
scout_compute_api_UnitsMissing.__qualname__ = "UnitsMissing"
|
|
@@ -52575,23 +52996,25 @@ scout_compute_resolved_api_BitOperationSeriesNode.__module__ = "nominal_api.scou
|
|
|
52575
52996
|
|
|
52576
52997
|
|
|
52577
52998
|
class scout_compute_resolved_api_CachedStorageLocator(ConjureBeanType):
|
|
52999
|
+
"""A storage locator for data in the legacy global cached datasets table. See SeriesCacheDb.
|
|
53000
|
+
"""
|
|
52578
53001
|
|
|
52579
53002
|
@builtins.classmethod
|
|
52580
53003
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52581
53004
|
return {
|
|
52582
|
-
'
|
|
53005
|
+
'logical_series': ConjureFieldDefinition('logicalSeries', timeseries_logicalseries_api_LogicalSeries),
|
|
52583
53006
|
'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
|
|
52584
53007
|
}
|
|
52585
53008
|
|
|
52586
|
-
__slots__: List[str] = ['
|
|
53009
|
+
__slots__: List[str] = ['_logical_series', '_type']
|
|
52587
53010
|
|
|
52588
|
-
def __init__(self,
|
|
52589
|
-
self.
|
|
53011
|
+
def __init__(self, logical_series: "timeseries_logicalseries_api_LogicalSeries", type: "storage_series_api_NominalDataType") -> None:
|
|
53012
|
+
self._logical_series = logical_series
|
|
52590
53013
|
self._type = type
|
|
52591
53014
|
|
|
52592
53015
|
@builtins.property
|
|
52593
|
-
def
|
|
52594
|
-
return self.
|
|
53016
|
+
def logical_series(self) -> "timeseries_logicalseries_api_LogicalSeries":
|
|
53017
|
+
return self._logical_series
|
|
52595
53018
|
|
|
52596
53019
|
@builtins.property
|
|
52597
53020
|
def type(self) -> "storage_series_api_NominalDataType":
|
|
@@ -54792,6 +55215,8 @@ scout_compute_resolved_api_MinSeriesNode.__module__ = "nominal_api.scout_compute
|
|
|
54792
55215
|
|
|
54793
55216
|
|
|
54794
55217
|
class scout_compute_resolved_api_NominalStorageLocator(ConjureBeanType):
|
|
55218
|
+
"""A storage locator for Nominal data in the per-org data tables.
|
|
55219
|
+
"""
|
|
54795
55220
|
|
|
54796
55221
|
@builtins.classmethod
|
|
54797
55222
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -56849,39 +57274,42 @@ scout_compute_resolved_api_ResolvedNodeVisitor.__module__ = "nominal_api.scout_c
|
|
|
56849
57274
|
|
|
56850
57275
|
|
|
56851
57276
|
class scout_compute_resolved_api_ResolvedSeries(ConjureBeanType):
|
|
57277
|
+
"""A resolved series is a fully-formed read on a raw set of series. The data for series may be stored in the
|
|
57278
|
+
Nominal database or externally.
|
|
57279
|
+
"""
|
|
56852
57280
|
|
|
56853
57281
|
@builtins.classmethod
|
|
56854
57282
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
56855
57283
|
return {
|
|
56856
|
-
'
|
|
56857
|
-
'
|
|
56858
|
-
'
|
|
56859
|
-
'
|
|
57284
|
+
'storage_locator': ConjureFieldDefinition('storageLocator', scout_compute_resolved_api_StorageLocator),
|
|
57285
|
+
'granularity': ConjureFieldDefinition('granularity', api_Granularity),
|
|
57286
|
+
'offset': ConjureFieldDefinition('offset', OptionalTypeWrapper[scout_run_api_Duration]),
|
|
57287
|
+
'unit': ConjureFieldDefinition('unit', OptionalTypeWrapper[api_Unit])
|
|
56860
57288
|
}
|
|
56861
57289
|
|
|
56862
|
-
__slots__: List[str] = ['
|
|
57290
|
+
__slots__: List[str] = ['_storage_locator', '_granularity', '_offset', '_unit']
|
|
56863
57291
|
|
|
56864
|
-
def __init__(self, granularity: "api_Granularity",
|
|
56865
|
-
self._logical_series = logical_series
|
|
56866
|
-
self._series_spec = series_spec
|
|
57292
|
+
def __init__(self, granularity: "api_Granularity", storage_locator: "scout_compute_resolved_api_StorageLocator", offset: Optional["scout_run_api_Duration"] = None, unit: Optional[str] = None) -> None:
|
|
56867
57293
|
self._storage_locator = storage_locator
|
|
56868
57294
|
self._granularity = granularity
|
|
57295
|
+
self._offset = offset
|
|
57296
|
+
self._unit = unit
|
|
56869
57297
|
|
|
56870
57298
|
@builtins.property
|
|
56871
|
-
def
|
|
56872
|
-
return self.
|
|
57299
|
+
def storage_locator(self) -> "scout_compute_resolved_api_StorageLocator":
|
|
57300
|
+
return self._storage_locator
|
|
56873
57301
|
|
|
56874
57302
|
@builtins.property
|
|
56875
|
-
def
|
|
56876
|
-
return self.
|
|
57303
|
+
def granularity(self) -> "api_Granularity":
|
|
57304
|
+
return self._granularity
|
|
56877
57305
|
|
|
56878
57306
|
@builtins.property
|
|
56879
|
-
def
|
|
56880
|
-
return self.
|
|
57307
|
+
def offset(self) -> Optional["scout_run_api_Duration"]:
|
|
57308
|
+
return self._offset
|
|
56881
57309
|
|
|
56882
57310
|
@builtins.property
|
|
56883
|
-
def
|
|
56884
|
-
return self.
|
|
57311
|
+
def unit(self) -> Optional[str]:
|
|
57312
|
+
return self._unit
|
|
56885
57313
|
|
|
56886
57314
|
|
|
56887
57315
|
scout_compute_resolved_api_ResolvedSeries.__name__ = "ResolvedSeries"
|
|
@@ -57668,22 +58096,25 @@ scout_compute_resolved_api_StaleRangesNode.__module__ = "nominal_api.scout_compu
|
|
|
57668
58096
|
class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
57669
58097
|
_cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None
|
|
57670
58098
|
_nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None
|
|
58099
|
+
_external: Optional["timeseries_logicalseries_api_LogicalSeries"] = None
|
|
57671
58100
|
|
|
57672
58101
|
@builtins.classmethod
|
|
57673
58102
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
57674
58103
|
return {
|
|
57675
58104
|
'cached': ConjureFieldDefinition('cached', scout_compute_resolved_api_CachedStorageLocator),
|
|
57676
|
-
'nominal': ConjureFieldDefinition('nominal', scout_compute_resolved_api_NominalStorageLocator)
|
|
58105
|
+
'nominal': ConjureFieldDefinition('nominal', scout_compute_resolved_api_NominalStorageLocator),
|
|
58106
|
+
'external': ConjureFieldDefinition('external', timeseries_logicalseries_api_LogicalSeries)
|
|
57677
58107
|
}
|
|
57678
58108
|
|
|
57679
58109
|
def __init__(
|
|
57680
58110
|
self,
|
|
57681
58111
|
cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None,
|
|
57682
58112
|
nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None,
|
|
58113
|
+
external: Optional["timeseries_logicalseries_api_LogicalSeries"] = None,
|
|
57683
58114
|
type_of_union: Optional[str] = None
|
|
57684
58115
|
) -> None:
|
|
57685
58116
|
if type_of_union is None:
|
|
57686
|
-
if (cached is not None) + (nominal is not None) != 1:
|
|
58117
|
+
if (cached is not None) + (nominal is not None) + (external is not None) != 1:
|
|
57687
58118
|
raise ValueError('a union must contain a single member')
|
|
57688
58119
|
|
|
57689
58120
|
if cached is not None:
|
|
@@ -57692,6 +58123,9 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57692
58123
|
if nominal is not None:
|
|
57693
58124
|
self._nominal = nominal
|
|
57694
58125
|
self._type = 'nominal'
|
|
58126
|
+
if external is not None:
|
|
58127
|
+
self._external = external
|
|
58128
|
+
self._type = 'external'
|
|
57695
58129
|
|
|
57696
58130
|
elif type_of_union == 'cached':
|
|
57697
58131
|
if cached is None:
|
|
@@ -57703,6 +58137,11 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57703
58137
|
raise ValueError('a union value must not be None')
|
|
57704
58138
|
self._nominal = nominal
|
|
57705
58139
|
self._type = 'nominal'
|
|
58140
|
+
elif type_of_union == 'external':
|
|
58141
|
+
if external is None:
|
|
58142
|
+
raise ValueError('a union value must not be None')
|
|
58143
|
+
self._external = external
|
|
58144
|
+
self._type = 'external'
|
|
57706
58145
|
|
|
57707
58146
|
@builtins.property
|
|
57708
58147
|
def cached(self) -> Optional["scout_compute_resolved_api_CachedStorageLocator"]:
|
|
@@ -57712,6 +58151,10 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57712
58151
|
def nominal(self) -> Optional["scout_compute_resolved_api_NominalStorageLocator"]:
|
|
57713
58152
|
return self._nominal
|
|
57714
58153
|
|
|
58154
|
+
@builtins.property
|
|
58155
|
+
def external(self) -> Optional["timeseries_logicalseries_api_LogicalSeries"]:
|
|
58156
|
+
return self._external
|
|
58157
|
+
|
|
57715
58158
|
def accept(self, visitor) -> Any:
|
|
57716
58159
|
if not isinstance(visitor, scout_compute_resolved_api_StorageLocatorVisitor):
|
|
57717
58160
|
raise ValueError('{} is not an instance of scout_compute_resolved_api_StorageLocatorVisitor'.format(visitor.__class__.__name__))
|
|
@@ -57719,6 +58162,8 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57719
58162
|
return visitor._cached(self.cached)
|
|
57720
58163
|
if self._type == 'nominal' and self.nominal is not None:
|
|
57721
58164
|
return visitor._nominal(self.nominal)
|
|
58165
|
+
if self._type == 'external' and self.external is not None:
|
|
58166
|
+
return visitor._external(self.external)
|
|
57722
58167
|
|
|
57723
58168
|
|
|
57724
58169
|
scout_compute_resolved_api_StorageLocator.__name__ = "StorageLocator"
|
|
@@ -57736,6 +58181,10 @@ class scout_compute_resolved_api_StorageLocatorVisitor:
|
|
|
57736
58181
|
def _nominal(self, nominal: "scout_compute_resolved_api_NominalStorageLocator") -> Any:
|
|
57737
58182
|
pass
|
|
57738
58183
|
|
|
58184
|
+
@abstractmethod
|
|
58185
|
+
def _external(self, external: "timeseries_logicalseries_api_LogicalSeries") -> Any:
|
|
58186
|
+
pass
|
|
58187
|
+
|
|
57739
58188
|
|
|
57740
58189
|
scout_compute_resolved_api_StorageLocatorVisitor.__name__ = "StorageLocatorVisitor"
|
|
57741
58190
|
scout_compute_resolved_api_StorageLocatorVisitor.__qualname__ = "StorageLocatorVisitor"
|
|
@@ -57914,14 +58363,16 @@ Summarization strategy should be specified.
|
|
|
57914
58363
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
57915
58364
|
return {
|
|
57916
58365
|
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_SeriesNode),
|
|
57917
|
-
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', scout_compute_api_SummarizationStrategy)
|
|
58366
|
+
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', scout_compute_api_SummarizationStrategy),
|
|
58367
|
+
'output_format': ConjureFieldDefinition('outputFormat', scout_compute_api_OutputFormat)
|
|
57918
58368
|
}
|
|
57919
58369
|
|
|
57920
|
-
__slots__: List[str] = ['_input', '_summarization_strategy']
|
|
58370
|
+
__slots__: List[str] = ['_input', '_summarization_strategy', '_output_format']
|
|
57921
58371
|
|
|
57922
|
-
def __init__(self, input: "scout_compute_resolved_api_SeriesNode", summarization_strategy: "scout_compute_api_SummarizationStrategy") -> None:
|
|
58372
|
+
def __init__(self, input: "scout_compute_resolved_api_SeriesNode", output_format: "scout_compute_api_OutputFormat", summarization_strategy: "scout_compute_api_SummarizationStrategy") -> None:
|
|
57923
58373
|
self._input = input
|
|
57924
58374
|
self._summarization_strategy = summarization_strategy
|
|
58375
|
+
self._output_format = output_format
|
|
57925
58376
|
|
|
57926
58377
|
@builtins.property
|
|
57927
58378
|
def input(self) -> "scout_compute_resolved_api_SeriesNode":
|
|
@@ -57933,6 +58384,10 @@ Summarization strategy should be specified.
|
|
|
57933
58384
|
"""
|
|
57934
58385
|
return self._summarization_strategy
|
|
57935
58386
|
|
|
58387
|
+
@builtins.property
|
|
58388
|
+
def output_format(self) -> "scout_compute_api_OutputFormat":
|
|
58389
|
+
return self._output_format
|
|
58390
|
+
|
|
57936
58391
|
|
|
57937
58392
|
scout_compute_resolved_api_SummarizeSeriesNode.__name__ = "SummarizeSeriesNode"
|
|
57938
58393
|
scout_compute_resolved_api_SummarizeSeriesNode.__qualname__ = "SummarizeSeriesNode"
|
|
@@ -29,6 +29,9 @@ from .._impl import (
|
|
|
29
29
|
scout_chartdefinition_api_DisconnectedValueVisualization as DisconnectedValueVisualization,
|
|
30
30
|
scout_chartdefinition_api_DisconnectedValueVisualizationVisitor as DisconnectedValueVisualizationVisitor,
|
|
31
31
|
scout_chartdefinition_api_EnumCellConfig as EnumCellConfig,
|
|
32
|
+
scout_chartdefinition_api_EnumGroupBySort as EnumGroupBySort,
|
|
33
|
+
scout_chartdefinition_api_EnumGroupBySortCustom as EnumGroupBySortCustom,
|
|
34
|
+
scout_chartdefinition_api_EnumGroupBySortVisitor as EnumGroupBySortVisitor,
|
|
32
35
|
scout_chartdefinition_api_EnumRawVisualisation as EnumRawVisualisation,
|
|
33
36
|
scout_chartdefinition_api_EnumValueChannel as EnumValueChannel,
|
|
34
37
|
scout_chartdefinition_api_EnumValueVisualisation as EnumValueVisualisation,
|
|
@@ -78,6 +81,8 @@ from .._impl import (
|
|
|
78
81
|
scout_chartdefinition_api_NumericBarGaugeVisualisation as NumericBarGaugeVisualisation,
|
|
79
82
|
scout_chartdefinition_api_NumericBarVisualisationV2 as NumericBarVisualisationV2,
|
|
80
83
|
scout_chartdefinition_api_NumericCellConfig as NumericCellConfig,
|
|
84
|
+
scout_chartdefinition_api_NumericGroupBySort as NumericGroupBySort,
|
|
85
|
+
scout_chartdefinition_api_NumericGroupBySortVisitor as NumericGroupBySortVisitor,
|
|
81
86
|
scout_chartdefinition_api_NumericRawVisualisation as NumericRawVisualisation,
|
|
82
87
|
scout_chartdefinition_api_NumericRawVisualisationV2 as NumericRawVisualisationV2,
|
|
83
88
|
scout_chartdefinition_api_NumericValueChannel as NumericValueChannel,
|
|
@@ -96,6 +101,8 @@ from .._impl import (
|
|
|
96
101
|
scout_chartdefinition_api_PlotlyPreset as PlotlyPreset,
|
|
97
102
|
scout_chartdefinition_api_Position as Position,
|
|
98
103
|
scout_chartdefinition_api_RangeCellConfig as RangeCellConfig,
|
|
104
|
+
scout_chartdefinition_api_RangeGroupBySort as RangeGroupBySort,
|
|
105
|
+
scout_chartdefinition_api_RangeGroupBySortVisitor as RangeGroupBySortVisitor,
|
|
99
106
|
scout_chartdefinition_api_RangeRawVisualisation as RangeRawVisualisation,
|
|
100
107
|
scout_chartdefinition_api_RangeValueChannel as RangeValueChannel,
|
|
101
108
|
scout_chartdefinition_api_RangeValueVisualisation as RangeValueVisualisation,
|
|
@@ -123,6 +130,7 @@ from .._impl import (
|
|
|
123
130
|
scout_chartdefinition_api_TraceComputeConfig as TraceComputeConfig,
|
|
124
131
|
scout_chartdefinition_api_TraceComputeConfigVisitor as TraceComputeConfigVisitor,
|
|
125
132
|
scout_chartdefinition_api_ValueAxis as ValueAxis,
|
|
133
|
+
scout_chartdefinition_api_ValueSort as ValueSort,
|
|
126
134
|
scout_chartdefinition_api_ValueTableCell as ValueTableCell,
|
|
127
135
|
scout_chartdefinition_api_ValueTableCellConfig as ValueTableCellConfig,
|
|
128
136
|
scout_chartdefinition_api_ValueTableCellConfigVisitor as ValueTableCellConfigVisitor,
|
|
@@ -179,6 +187,9 @@ __all__ = [
|
|
|
179
187
|
'DisconnectedValueVisualization',
|
|
180
188
|
'DisconnectedValueVisualizationVisitor',
|
|
181
189
|
'EnumCellConfig',
|
|
190
|
+
'EnumGroupBySort',
|
|
191
|
+
'EnumGroupBySortVisitor',
|
|
192
|
+
'EnumGroupBySortCustom',
|
|
182
193
|
'EnumRawVisualisation',
|
|
183
194
|
'EnumValueChannel',
|
|
184
195
|
'EnumValueVisualisation',
|
|
@@ -228,6 +239,8 @@ __all__ = [
|
|
|
228
239
|
'NumericBarGaugeVisualisation',
|
|
229
240
|
'NumericBarVisualisationV2',
|
|
230
241
|
'NumericCellConfig',
|
|
242
|
+
'NumericGroupBySort',
|
|
243
|
+
'NumericGroupBySortVisitor',
|
|
231
244
|
'NumericRawVisualisation',
|
|
232
245
|
'NumericRawVisualisationV2',
|
|
233
246
|
'NumericValueChannel',
|
|
@@ -246,6 +259,8 @@ __all__ = [
|
|
|
246
259
|
'PlotlyPreset',
|
|
247
260
|
'Position',
|
|
248
261
|
'RangeCellConfig',
|
|
262
|
+
'RangeGroupBySort',
|
|
263
|
+
'RangeGroupBySortVisitor',
|
|
249
264
|
'RangeRawVisualisation',
|
|
250
265
|
'RangeValueChannel',
|
|
251
266
|
'RangeValueVisualisation',
|
|
@@ -273,6 +288,7 @@ __all__ = [
|
|
|
273
288
|
'TraceComputeConfig',
|
|
274
289
|
'TraceComputeConfigVisitor',
|
|
275
290
|
'ValueAxis',
|
|
291
|
+
'ValueSort',
|
|
276
292
|
'ValueTableCell',
|
|
277
293
|
'ValueTableCellConfig',
|
|
278
294
|
'ValueTableCellConfigVisitor',
|
|
@@ -9,6 +9,8 @@ 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_ArrowBucketedNumericPlot as ArrowBucketedNumericPlot,
|
|
13
|
+
scout_compute_api_ArrowNumericPlot as ArrowNumericPlot,
|
|
12
14
|
scout_compute_api_AssetChannel as AssetChannel,
|
|
13
15
|
scout_compute_api_Average as Average,
|
|
14
16
|
scout_compute_api_BandPassConfiguration as BandPassConfiguration,
|
|
@@ -78,6 +80,7 @@ from .._impl import (
|
|
|
78
80
|
scout_compute_api_CurveFitResult as CurveFitResult,
|
|
79
81
|
scout_compute_api_CurveResultDetails as CurveResultDetails,
|
|
80
82
|
scout_compute_api_CurveResultDetailsVisitor as CurveResultDetailsVisitor,
|
|
83
|
+
scout_compute_api_DataSourceAndChannel as DataSourceAndChannel,
|
|
81
84
|
scout_compute_api_DataSourceChannel as DataSourceChannel,
|
|
82
85
|
scout_compute_api_DecimateStrategy as DecimateStrategy,
|
|
83
86
|
scout_compute_api_DecimateStrategyVisitor as DecimateStrategyVisitor,
|
|
@@ -211,6 +214,7 @@ from .._impl import (
|
|
|
211
214
|
scout_compute_api_NumericUnionSeries as NumericUnionSeries,
|
|
212
215
|
scout_compute_api_OffsetSeries as OffsetSeries,
|
|
213
216
|
scout_compute_api_OnChangeRanges as OnChangeRanges,
|
|
217
|
+
scout_compute_api_OutputFormat as OutputFormat,
|
|
214
218
|
scout_compute_api_OutputRangeStart as OutputRangeStart,
|
|
215
219
|
scout_compute_api_OutputRangeStartVisitor as OutputRangeStartVisitor,
|
|
216
220
|
scout_compute_api_PageInfo as PageInfo,
|
|
@@ -333,6 +337,8 @@ __all__ = [
|
|
|
333
337
|
'ApproximateThresholdOperator',
|
|
334
338
|
'ApproximateThresholdRanges',
|
|
335
339
|
'ArithmeticSeries',
|
|
340
|
+
'ArrowBucketedNumericPlot',
|
|
341
|
+
'ArrowNumericPlot',
|
|
336
342
|
'AssetChannel',
|
|
337
343
|
'Average',
|
|
338
344
|
'BandPassConfiguration',
|
|
@@ -401,6 +407,7 @@ __all__ = [
|
|
|
401
407
|
'CurveFitResult',
|
|
402
408
|
'CurveResultDetails',
|
|
403
409
|
'CurveResultDetailsVisitor',
|
|
410
|
+
'DataSourceAndChannel',
|
|
404
411
|
'DataSourceChannel',
|
|
405
412
|
'DecimateStrategy',
|
|
406
413
|
'DecimateStrategyVisitor',
|
|
@@ -534,6 +541,7 @@ __all__ = [
|
|
|
534
541
|
'NumericUnionSeries',
|
|
535
542
|
'OffsetSeries',
|
|
536
543
|
'OnChangeRanges',
|
|
544
|
+
'OutputFormat',
|
|
537
545
|
'OutputRangeStart',
|
|
538
546
|
'OutputRangeStartVisitor',
|
|
539
547
|
'PageInfo',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=408Mzt5HQp2tAj6jDithtg90NodV5i6_UE_2z8otPI0,1989
|
|
2
|
+
nominal_api/_impl.py,sha256=J4wX97HzIMwE_6B9__nHJZXpExSFGXyzpLhmcHKq7TY,3393213
|
|
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
|
|
@@ -27,12 +27,12 @@ nominal_api/scout_assets/__init__.py,sha256=1ZyiolDjhxnrhyeUxW_KyeQ_q-6stlqd1I2d
|
|
|
27
27
|
nominal_api/scout_catalog/__init__.py,sha256=DNtjCxXk3yGniLZaCcUJ590VICWZfMRArO5u0Q81uic,4213
|
|
28
28
|
nominal_api/scout_channelvariables_api/__init__.py,sha256=Wahkyy-m3gEcaRFYU5ZV3beW-W4OeYnOs9Y4eirQO38,1033
|
|
29
29
|
nominal_api/scout_chart_api/__init__.py,sha256=hkNhoFOmPYnLFeINiQXqya78wbAsx65DoKU0TpUwhQo,261
|
|
30
|
-
nominal_api/scout_chartdefinition_api/__init__.py,sha256=
|
|
30
|
+
nominal_api/scout_chartdefinition_api/__init__.py,sha256=yxk1X27K-dtGjiLqRPBdUQM_NrS3_yQcaOZ6t66DVP4,16256
|
|
31
31
|
nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHrNDiFdqaWaQeGb6TQxuox-1c,4892
|
|
32
32
|
nominal_api/scout_checks_api/__init__.py,sha256=sxTv9ZL2rnXCaR7wVRNafqIPIzBbIPDGiJdYAr-VSV0,7317
|
|
33
33
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=RpTvc8WqNxOuDSXWs-xV3MSSFIoIy8Fj3eaIDCVygvU,6215
|
|
34
34
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
|
35
|
-
nominal_api/scout_compute_api/__init__.py,sha256=
|
|
35
|
+
nominal_api/scout_compute_api/__init__.py,sha256=IrFVrR6TLpDyM2oILBBewPuWH4dIIlcG2JwPSy8VkGk,29464
|
|
36
36
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
|
37
37
|
nominal_api/scout_compute_resolved_api/__init__.py,sha256=xUnUtOCWuwM1e4wC6hBg2vuaGjAgm2lXTSsxFZXQW4o,15751
|
|
38
38
|
nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
|
|
@@ -74,7 +74,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
|
74
74
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
75
75
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
|
76
76
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
77
|
-
nominal_api-0.
|
|
78
|
-
nominal_api-0.
|
|
79
|
-
nominal_api-0.
|
|
80
|
-
nominal_api-0.
|
|
77
|
+
nominal_api-0.747.0.dist-info/METADATA,sha256=9w0hX5wuBvBvyK-yhduDaYVHDXxwL7DWfccHDVBTmGo,199
|
|
78
|
+
nominal_api-0.747.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
79
|
+
nominal_api-0.747.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
80
|
+
nominal_api-0.747.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|