nominal-api 0.744.0__py3-none-any.whl → 0.746.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 +530 -57
- nominal_api/scout_chartdefinition_api/__init__.py +16 -0
- nominal_api/scout_compute_api/__init__.py +8 -0
- {nominal_api-0.744.0.dist-info → nominal_api-0.746.0.dist-info}/METADATA +1 -1
- {nominal_api-0.744.0.dist-info → nominal_api-0.746.0.dist-info}/RECORD +8 -8
- {nominal_api-0.744.0.dist-info → nominal_api-0.746.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.744.0.dist-info → nominal_api-0.746.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
|
|
@@ -37211,17 +37529,19 @@ class scout_compute_api_AssetChannel(ConjureBeanType):
|
|
|
37211
37529
|
'data_scope_name': ConjureFieldDefinition('dataScopeName', scout_compute_api_StringConstant),
|
|
37212
37530
|
'channel': ConjureFieldDefinition('channel', scout_compute_api_StringConstant),
|
|
37213
37531
|
'additional_tags': ConjureFieldDefinition('additionalTags', Dict[str, scout_compute_api_StringConstant]),
|
|
37214
|
-
'tags_to_group_by': ConjureFieldDefinition('tagsToGroupBy', List[str])
|
|
37532
|
+
'tags_to_group_by': ConjureFieldDefinition('tagsToGroupBy', List[str]),
|
|
37533
|
+
'group_by_tags': ConjureFieldDefinition('groupByTags', OptionalTypeWrapper[scout_compute_api_StringSetConstant])
|
|
37215
37534
|
}
|
|
37216
37535
|
|
|
37217
|
-
__slots__: List[str] = ['_asset_rid', '_data_scope_name', '_channel', '_additional_tags', '_tags_to_group_by']
|
|
37536
|
+
__slots__: List[str] = ['_asset_rid', '_data_scope_name', '_channel', '_additional_tags', '_tags_to_group_by', '_group_by_tags']
|
|
37218
37537
|
|
|
37219
|
-
def __init__(self, additional_tags: Dict[str, "scout_compute_api_StringConstant"], asset_rid: "scout_compute_api_StringConstant", channel: "scout_compute_api_StringConstant", data_scope_name: "scout_compute_api_StringConstant", tags_to_group_by: List[str]) -> None:
|
|
37538
|
+
def __init__(self, additional_tags: Dict[str, "scout_compute_api_StringConstant"], asset_rid: "scout_compute_api_StringConstant", channel: "scout_compute_api_StringConstant", data_scope_name: "scout_compute_api_StringConstant", tags_to_group_by: List[str], group_by_tags: Optional["scout_compute_api_StringSetConstant"] = None) -> None:
|
|
37220
37539
|
self._asset_rid = asset_rid
|
|
37221
37540
|
self._data_scope_name = data_scope_name
|
|
37222
37541
|
self._channel = channel
|
|
37223
37542
|
self._additional_tags = additional_tags
|
|
37224
37543
|
self._tags_to_group_by = tags_to_group_by
|
|
37544
|
+
self._group_by_tags = group_by_tags
|
|
37225
37545
|
|
|
37226
37546
|
@builtins.property
|
|
37227
37547
|
def asset_rid(self) -> "scout_compute_api_StringConstant":
|
|
@@ -37247,10 +37567,14 @@ both sets of tag filters. For log series, include arg filters here in addition t
|
|
|
37247
37567
|
|
|
37248
37568
|
@builtins.property
|
|
37249
37569
|
def tags_to_group_by(self) -> List[str]:
|
|
37570
|
+
return self._tags_to_group_by
|
|
37571
|
+
|
|
37572
|
+
@builtins.property
|
|
37573
|
+
def group_by_tags(self) -> Optional["scout_compute_api_StringSetConstant"]:
|
|
37250
37574
|
"""Tags that the channel should be grouped by. If this is non-empty a grouped result will be returned
|
|
37251
|
-
with an entry for each grouping.
|
|
37575
|
+
with an entry for each grouping. Only one of tagsToGroupBy and groupByTags should be specified.
|
|
37252
37576
|
"""
|
|
37253
|
-
return self.
|
|
37577
|
+
return self._group_by_tags
|
|
37254
37578
|
|
|
37255
37579
|
|
|
37256
37580
|
scout_compute_api_AssetChannel.__name__ = "AssetChannel"
|
|
@@ -39087,6 +39411,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39087
39411
|
_numeric: Optional["scout_compute_api_NumericPlot"] = None
|
|
39088
39412
|
_bucketed_numeric: Optional["scout_compute_api_BucketedNumericPlot"] = None
|
|
39089
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
|
|
39090
39416
|
_enum: Optional["scout_compute_api_EnumPlot"] = None
|
|
39091
39417
|
_enum_point: Optional[Optional["scout_compute_api_EnumPoint"]] = None
|
|
39092
39418
|
_bucketed_enum: Optional["scout_compute_api_BucketedEnumPlot"] = None
|
|
@@ -39111,6 +39437,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39111
39437
|
'numeric': ConjureFieldDefinition('numeric', scout_compute_api_NumericPlot),
|
|
39112
39438
|
'bucketed_numeric': ConjureFieldDefinition('bucketedNumeric', scout_compute_api_BucketedNumericPlot),
|
|
39113
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),
|
|
39114
39442
|
'enum': ConjureFieldDefinition('enum', scout_compute_api_EnumPlot),
|
|
39115
39443
|
'enum_point': ConjureFieldDefinition('enumPoint', OptionalTypeWrapper[scout_compute_api_EnumPoint]),
|
|
39116
39444
|
'bucketed_enum': ConjureFieldDefinition('bucketedEnum', scout_compute_api_BucketedEnumPlot),
|
|
@@ -39135,6 +39463,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39135
39463
|
numeric: Optional["scout_compute_api_NumericPlot"] = None,
|
|
39136
39464
|
bucketed_numeric: Optional["scout_compute_api_BucketedNumericPlot"] = None,
|
|
39137
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,
|
|
39138
39468
|
enum: Optional["scout_compute_api_EnumPlot"] = None,
|
|
39139
39469
|
enum_point: Optional[Optional["scout_compute_api_EnumPoint"]] = None,
|
|
39140
39470
|
bucketed_enum: Optional["scout_compute_api_BucketedEnumPlot"] = None,
|
|
@@ -39152,7 +39482,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39152
39482
|
type_of_union: Optional[str] = None
|
|
39153
39483
|
) -> None:
|
|
39154
39484
|
if type_of_union is None:
|
|
39155
|
-
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:
|
|
39156
39486
|
raise ValueError('a union must contain a single member')
|
|
39157
39487
|
|
|
39158
39488
|
if range is not None:
|
|
@@ -39173,6 +39503,12 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39173
39503
|
if numeric_point is not None:
|
|
39174
39504
|
self._numeric_point = numeric_point
|
|
39175
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'
|
|
39176
39512
|
if enum is not None:
|
|
39177
39513
|
self._enum = enum
|
|
39178
39514
|
self._type = 'enum'
|
|
@@ -39246,6 +39582,16 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39246
39582
|
raise ValueError('a union value must not be None')
|
|
39247
39583
|
self._numeric_point = numeric_point
|
|
39248
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'
|
|
39249
39595
|
elif type_of_union == 'enum':
|
|
39250
39596
|
if enum is None:
|
|
39251
39597
|
raise ValueError('a union value must not be None')
|
|
@@ -39341,6 +39687,14 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39341
39687
|
def numeric_point(self) -> Optional[Optional["scout_compute_api_NumericPoint"]]:
|
|
39342
39688
|
return self._numeric_point
|
|
39343
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
|
+
|
|
39344
39698
|
@builtins.property
|
|
39345
39699
|
def enum(self) -> Optional["scout_compute_api_EnumPlot"]:
|
|
39346
39700
|
return self._enum
|
|
@@ -39412,6 +39766,10 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
|
39412
39766
|
return visitor._bucketed_numeric(self.bucketed_numeric)
|
|
39413
39767
|
if self._type == 'numericPoint' and self.numeric_point is not None:
|
|
39414
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)
|
|
39415
39773
|
if self._type == 'enum' and self.enum is not None:
|
|
39416
39774
|
return visitor._enum(self.enum)
|
|
39417
39775
|
if self._type == 'enumPoint' and self.enum_point is not None:
|
|
@@ -39473,6 +39831,14 @@ class scout_compute_api_ComputeNodeResponseVisitor:
|
|
|
39473
39831
|
def _numeric_point(self, numeric_point: Optional["scout_compute_api_NumericPoint"]) -> Any:
|
|
39474
39832
|
pass
|
|
39475
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
|
+
|
|
39476
39842
|
@abstractmethod
|
|
39477
39843
|
def _enum(self, enum: "scout_compute_api_EnumPlot") -> Any:
|
|
39478
39844
|
pass
|
|
@@ -40536,6 +40902,35 @@ scout_compute_api_CurveResultDetailsVisitor.__qualname__ = "CurveResultDetailsVi
|
|
|
40536
40902
|
scout_compute_api_CurveResultDetailsVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
40537
40903
|
|
|
40538
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
|
+
|
|
40539
40934
|
class scout_compute_api_DataSourceChannel(ConjureBeanType):
|
|
40540
40935
|
|
|
40541
40936
|
@builtins.classmethod
|
|
@@ -40544,16 +40939,18 @@ class scout_compute_api_DataSourceChannel(ConjureBeanType):
|
|
|
40544
40939
|
'data_source_rid': ConjureFieldDefinition('dataSourceRid', scout_compute_api_StringConstant),
|
|
40545
40940
|
'channel': ConjureFieldDefinition('channel', scout_compute_api_StringConstant),
|
|
40546
40941
|
'tags': ConjureFieldDefinition('tags', Dict[str, scout_compute_api_StringConstant]),
|
|
40547
|
-
'tags_to_group_by': ConjureFieldDefinition('tagsToGroupBy', List[str])
|
|
40942
|
+
'tags_to_group_by': ConjureFieldDefinition('tagsToGroupBy', List[str]),
|
|
40943
|
+
'group_by_tags': ConjureFieldDefinition('groupByTags', OptionalTypeWrapper[scout_compute_api_StringSetConstant])
|
|
40548
40944
|
}
|
|
40549
40945
|
|
|
40550
|
-
__slots__: List[str] = ['_data_source_rid', '_channel', '_tags', '_tags_to_group_by']
|
|
40946
|
+
__slots__: List[str] = ['_data_source_rid', '_channel', '_tags', '_tags_to_group_by', '_group_by_tags']
|
|
40551
40947
|
|
|
40552
|
-
def __init__(self, channel: "scout_compute_api_StringConstant", data_source_rid: "scout_compute_api_StringConstant", tags: Dict[str, "scout_compute_api_StringConstant"], tags_to_group_by: List[str]) -> None:
|
|
40948
|
+
def __init__(self, channel: "scout_compute_api_StringConstant", data_source_rid: "scout_compute_api_StringConstant", tags: Dict[str, "scout_compute_api_StringConstant"], tags_to_group_by: List[str], group_by_tags: Optional["scout_compute_api_StringSetConstant"] = None) -> None:
|
|
40553
40949
|
self._data_source_rid = data_source_rid
|
|
40554
40950
|
self._channel = channel
|
|
40555
40951
|
self._tags = tags
|
|
40556
40952
|
self._tags_to_group_by = tags_to_group_by
|
|
40953
|
+
self._group_by_tags = group_by_tags
|
|
40557
40954
|
|
|
40558
40955
|
@builtins.property
|
|
40559
40956
|
def data_source_rid(self) -> "scout_compute_api_StringConstant":
|
|
@@ -40572,10 +40969,14 @@ provided tag keys. For log series, include arg filters here in addition to tag f
|
|
|
40572
40969
|
|
|
40573
40970
|
@builtins.property
|
|
40574
40971
|
def tags_to_group_by(self) -> List[str]:
|
|
40972
|
+
return self._tags_to_group_by
|
|
40973
|
+
|
|
40974
|
+
@builtins.property
|
|
40975
|
+
def group_by_tags(self) -> Optional["scout_compute_api_StringSetConstant"]:
|
|
40575
40976
|
"""Tags that the channel should be grouped by. If this is non-empty a grouped result will be returned
|
|
40576
|
-
with an entry for each grouping.
|
|
40977
|
+
with an entry for each grouping. Only one of tagsToGroupBy and groupByTags should be specified.
|
|
40577
40978
|
"""
|
|
40578
|
-
return self.
|
|
40979
|
+
return self._group_by_tags
|
|
40579
40980
|
|
|
40580
40981
|
|
|
40581
40982
|
scout_compute_api_DataSourceChannel.__name__ = "DataSourceChannel"
|
|
@@ -45547,6 +45948,24 @@ scout_compute_api_OnChangeRanges.__qualname__ = "OnChangeRanges"
|
|
|
45547
45948
|
scout_compute_api_OnChangeRanges.__module__ = "nominal_api.scout_compute_api"
|
|
45548
45949
|
|
|
45549
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
|
+
|
|
45550
45969
|
class scout_compute_api_OutputRangeStart(ConjureUnionType):
|
|
45551
45970
|
_first_point_matching_condition: Optional["scout_compute_api_FirstPointMatchingCondition"] = None
|
|
45552
45971
|
_after_persistence_window: Optional["scout_compute_api_AfterPersistenceWindow"] = None
|
|
@@ -47544,17 +47963,19 @@ class scout_compute_api_RunChannel(ConjureBeanType):
|
|
|
47544
47963
|
'data_scope_name': ConjureFieldDefinition('dataScopeName', scout_compute_api_StringConstant),
|
|
47545
47964
|
'channel': ConjureFieldDefinition('channel', scout_compute_api_StringConstant),
|
|
47546
47965
|
'additional_tags': ConjureFieldDefinition('additionalTags', Dict[str, scout_compute_api_StringConstant]),
|
|
47547
|
-
'tags_to_group_by': ConjureFieldDefinition('tagsToGroupBy', List[str])
|
|
47966
|
+
'tags_to_group_by': ConjureFieldDefinition('tagsToGroupBy', List[str]),
|
|
47967
|
+
'group_by_tags': ConjureFieldDefinition('groupByTags', OptionalTypeWrapper[scout_compute_api_StringSetConstant])
|
|
47548
47968
|
}
|
|
47549
47969
|
|
|
47550
|
-
__slots__: List[str] = ['_run_rid', '_data_scope_name', '_channel', '_additional_tags', '_tags_to_group_by']
|
|
47970
|
+
__slots__: List[str] = ['_run_rid', '_data_scope_name', '_channel', '_additional_tags', '_tags_to_group_by', '_group_by_tags']
|
|
47551
47971
|
|
|
47552
|
-
def __init__(self, additional_tags: Dict[str, "scout_compute_api_StringConstant"], channel: "scout_compute_api_StringConstant", data_scope_name: "scout_compute_api_StringConstant", run_rid: "scout_compute_api_StringConstant", tags_to_group_by: List[str]) -> None:
|
|
47972
|
+
def __init__(self, additional_tags: Dict[str, "scout_compute_api_StringConstant"], channel: "scout_compute_api_StringConstant", data_scope_name: "scout_compute_api_StringConstant", run_rid: "scout_compute_api_StringConstant", tags_to_group_by: List[str], group_by_tags: Optional["scout_compute_api_StringSetConstant"] = None) -> None:
|
|
47553
47973
|
self._run_rid = run_rid
|
|
47554
47974
|
self._data_scope_name = data_scope_name
|
|
47555
47975
|
self._channel = channel
|
|
47556
47976
|
self._additional_tags = additional_tags
|
|
47557
47977
|
self._tags_to_group_by = tags_to_group_by
|
|
47978
|
+
self._group_by_tags = group_by_tags
|
|
47558
47979
|
|
|
47559
47980
|
@builtins.property
|
|
47560
47981
|
def run_rid(self) -> "scout_compute_api_StringConstant":
|
|
@@ -47580,10 +48001,14 @@ both sets of tag filters. For log series, include arg filters here in addition t
|
|
|
47580
48001
|
|
|
47581
48002
|
@builtins.property
|
|
47582
48003
|
def tags_to_group_by(self) -> List[str]:
|
|
48004
|
+
return self._tags_to_group_by
|
|
48005
|
+
|
|
48006
|
+
@builtins.property
|
|
48007
|
+
def group_by_tags(self) -> Optional["scout_compute_api_StringSetConstant"]:
|
|
47583
48008
|
"""Tags that the channel should be grouped by. If this is non-empty a grouped result will be returned
|
|
47584
|
-
with an entry for each grouping.
|
|
48009
|
+
with an entry for each grouping. Only one of tagsToGroupBy and groupByTags should be specified.
|
|
47585
48010
|
"""
|
|
47586
|
-
return self.
|
|
48011
|
+
return self._group_by_tags
|
|
47587
48012
|
|
|
47588
48013
|
|
|
47589
48014
|
scout_compute_api_RunChannel.__name__ = "RunChannel"
|
|
@@ -49052,15 +49477,17 @@ Summarization strategy should be specified.
|
|
|
49052
49477
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
49053
49478
|
return {
|
|
49054
49479
|
'input': ConjureFieldDefinition('input', scout_compute_api_Series),
|
|
49480
|
+
'output_format': ConjureFieldDefinition('outputFormat', OptionalTypeWrapper[scout_compute_api_OutputFormat]),
|
|
49055
49481
|
'resolution': ConjureFieldDefinition('resolution', OptionalTypeWrapper[int]),
|
|
49056
49482
|
'buckets': ConjureFieldDefinition('buckets', OptionalTypeWrapper[int]),
|
|
49057
49483
|
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', OptionalTypeWrapper[scout_compute_api_SummarizationStrategy])
|
|
49058
49484
|
}
|
|
49059
49485
|
|
|
49060
|
-
__slots__: List[str] = ['_input', '_resolution', '_buckets', '_summarization_strategy']
|
|
49486
|
+
__slots__: List[str] = ['_input', '_output_format', '_resolution', '_buckets', '_summarization_strategy']
|
|
49061
49487
|
|
|
49062
|
-
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:
|
|
49063
49489
|
self._input = input
|
|
49490
|
+
self._output_format = output_format
|
|
49064
49491
|
self._resolution = resolution
|
|
49065
49492
|
self._buckets = buckets
|
|
49066
49493
|
self._summarization_strategy = summarization_strategy
|
|
@@ -49069,6 +49496,12 @@ Summarization strategy should be specified.
|
|
|
49069
49496
|
def input(self) -> "scout_compute_api_Series":
|
|
49070
49497
|
return self._input
|
|
49071
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
|
+
|
|
49072
49505
|
@builtins.property
|
|
49073
49506
|
def resolution(self) -> Optional[int]:
|
|
49074
49507
|
"""Resolution of the output series specifying time interval between decimated points.
|
|
@@ -49809,18 +50242,24 @@ class scout_compute_api_UnitsMissing(ConjureBeanType):
|
|
|
49809
50242
|
@builtins.classmethod
|
|
49810
50243
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
49811
50244
|
return {
|
|
49812
|
-
'series_rids': ConjureFieldDefinition('seriesRids', List[api_LogicalSeriesRid])
|
|
50245
|
+
'series_rids': ConjureFieldDefinition('seriesRids', List[api_LogicalSeriesRid]),
|
|
50246
|
+
'channels': ConjureFieldDefinition('channels', List[scout_compute_api_DataSourceAndChannel])
|
|
49813
50247
|
}
|
|
49814
50248
|
|
|
49815
|
-
__slots__: List[str] = ['_series_rids']
|
|
50249
|
+
__slots__: List[str] = ['_series_rids', '_channels']
|
|
49816
50250
|
|
|
49817
|
-
def __init__(self, series_rids: List[str]) -> None:
|
|
50251
|
+
def __init__(self, channels: List["scout_compute_api_DataSourceAndChannel"], series_rids: List[str]) -> None:
|
|
49818
50252
|
self._series_rids = series_rids
|
|
50253
|
+
self._channels = channels
|
|
49819
50254
|
|
|
49820
50255
|
@builtins.property
|
|
49821
50256
|
def series_rids(self) -> List[str]:
|
|
49822
50257
|
return self._series_rids
|
|
49823
50258
|
|
|
50259
|
+
@builtins.property
|
|
50260
|
+
def channels(self) -> List["scout_compute_api_DataSourceAndChannel"]:
|
|
50261
|
+
return self._channels
|
|
50262
|
+
|
|
49824
50263
|
|
|
49825
50264
|
scout_compute_api_UnitsMissing.__name__ = "UnitsMissing"
|
|
49826
50265
|
scout_compute_api_UnitsMissing.__qualname__ = "UnitsMissing"
|
|
@@ -52557,23 +52996,25 @@ scout_compute_resolved_api_BitOperationSeriesNode.__module__ = "nominal_api.scou
|
|
|
52557
52996
|
|
|
52558
52997
|
|
|
52559
52998
|
class scout_compute_resolved_api_CachedStorageLocator(ConjureBeanType):
|
|
52999
|
+
"""A storage locator for data in the legacy global cached datasets table. See SeriesCacheDb.
|
|
53000
|
+
"""
|
|
52560
53001
|
|
|
52561
53002
|
@builtins.classmethod
|
|
52562
53003
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52563
53004
|
return {
|
|
52564
|
-
'
|
|
53005
|
+
'logical_series': ConjureFieldDefinition('logicalSeries', timeseries_logicalseries_api_LogicalSeries),
|
|
52565
53006
|
'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
|
|
52566
53007
|
}
|
|
52567
53008
|
|
|
52568
|
-
__slots__: List[str] = ['
|
|
53009
|
+
__slots__: List[str] = ['_logical_series', '_type']
|
|
52569
53010
|
|
|
52570
|
-
def __init__(self,
|
|
52571
|
-
self.
|
|
53011
|
+
def __init__(self, logical_series: "timeseries_logicalseries_api_LogicalSeries", type: "storage_series_api_NominalDataType") -> None:
|
|
53012
|
+
self._logical_series = logical_series
|
|
52572
53013
|
self._type = type
|
|
52573
53014
|
|
|
52574
53015
|
@builtins.property
|
|
52575
|
-
def
|
|
52576
|
-
return self.
|
|
53016
|
+
def logical_series(self) -> "timeseries_logicalseries_api_LogicalSeries":
|
|
53017
|
+
return self._logical_series
|
|
52577
53018
|
|
|
52578
53019
|
@builtins.property
|
|
52579
53020
|
def type(self) -> "storage_series_api_NominalDataType":
|
|
@@ -54774,6 +55215,8 @@ scout_compute_resolved_api_MinSeriesNode.__module__ = "nominal_api.scout_compute
|
|
|
54774
55215
|
|
|
54775
55216
|
|
|
54776
55217
|
class scout_compute_resolved_api_NominalStorageLocator(ConjureBeanType):
|
|
55218
|
+
"""A storage locator for Nominal data in the per-org data tables.
|
|
55219
|
+
"""
|
|
54777
55220
|
|
|
54778
55221
|
@builtins.classmethod
|
|
54779
55222
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -56831,39 +57274,42 @@ scout_compute_resolved_api_ResolvedNodeVisitor.__module__ = "nominal_api.scout_c
|
|
|
56831
57274
|
|
|
56832
57275
|
|
|
56833
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
|
+
"""
|
|
56834
57280
|
|
|
56835
57281
|
@builtins.classmethod
|
|
56836
57282
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
56837
57283
|
return {
|
|
56838
|
-
'
|
|
56839
|
-
'
|
|
56840
|
-
'
|
|
56841
|
-
'
|
|
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])
|
|
56842
57288
|
}
|
|
56843
57289
|
|
|
56844
|
-
__slots__: List[str] = ['
|
|
57290
|
+
__slots__: List[str] = ['_storage_locator', '_granularity', '_offset', '_unit']
|
|
56845
57291
|
|
|
56846
|
-
def __init__(self, granularity: "api_Granularity",
|
|
56847
|
-
self._logical_series = logical_series
|
|
56848
|
-
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:
|
|
56849
57293
|
self._storage_locator = storage_locator
|
|
56850
57294
|
self._granularity = granularity
|
|
57295
|
+
self._offset = offset
|
|
57296
|
+
self._unit = unit
|
|
56851
57297
|
|
|
56852
57298
|
@builtins.property
|
|
56853
|
-
def
|
|
56854
|
-
return self.
|
|
57299
|
+
def storage_locator(self) -> "scout_compute_resolved_api_StorageLocator":
|
|
57300
|
+
return self._storage_locator
|
|
56855
57301
|
|
|
56856
57302
|
@builtins.property
|
|
56857
|
-
def
|
|
56858
|
-
return self.
|
|
57303
|
+
def granularity(self) -> "api_Granularity":
|
|
57304
|
+
return self._granularity
|
|
56859
57305
|
|
|
56860
57306
|
@builtins.property
|
|
56861
|
-
def
|
|
56862
|
-
return self.
|
|
57307
|
+
def offset(self) -> Optional["scout_run_api_Duration"]:
|
|
57308
|
+
return self._offset
|
|
56863
57309
|
|
|
56864
57310
|
@builtins.property
|
|
56865
|
-
def
|
|
56866
|
-
return self.
|
|
57311
|
+
def unit(self) -> Optional[str]:
|
|
57312
|
+
return self._unit
|
|
56867
57313
|
|
|
56868
57314
|
|
|
56869
57315
|
scout_compute_resolved_api_ResolvedSeries.__name__ = "ResolvedSeries"
|
|
@@ -57650,22 +58096,25 @@ scout_compute_resolved_api_StaleRangesNode.__module__ = "nominal_api.scout_compu
|
|
|
57650
58096
|
class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
57651
58097
|
_cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None
|
|
57652
58098
|
_nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None
|
|
58099
|
+
_external: Optional["timeseries_logicalseries_api_LogicalSeries"] = None
|
|
57653
58100
|
|
|
57654
58101
|
@builtins.classmethod
|
|
57655
58102
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
57656
58103
|
return {
|
|
57657
58104
|
'cached': ConjureFieldDefinition('cached', scout_compute_resolved_api_CachedStorageLocator),
|
|
57658
|
-
'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)
|
|
57659
58107
|
}
|
|
57660
58108
|
|
|
57661
58109
|
def __init__(
|
|
57662
58110
|
self,
|
|
57663
58111
|
cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None,
|
|
57664
58112
|
nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None,
|
|
58113
|
+
external: Optional["timeseries_logicalseries_api_LogicalSeries"] = None,
|
|
57665
58114
|
type_of_union: Optional[str] = None
|
|
57666
58115
|
) -> None:
|
|
57667
58116
|
if type_of_union is None:
|
|
57668
|
-
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:
|
|
57669
58118
|
raise ValueError('a union must contain a single member')
|
|
57670
58119
|
|
|
57671
58120
|
if cached is not None:
|
|
@@ -57674,6 +58123,9 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57674
58123
|
if nominal is not None:
|
|
57675
58124
|
self._nominal = nominal
|
|
57676
58125
|
self._type = 'nominal'
|
|
58126
|
+
if external is not None:
|
|
58127
|
+
self._external = external
|
|
58128
|
+
self._type = 'external'
|
|
57677
58129
|
|
|
57678
58130
|
elif type_of_union == 'cached':
|
|
57679
58131
|
if cached is None:
|
|
@@ -57685,6 +58137,11 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57685
58137
|
raise ValueError('a union value must not be None')
|
|
57686
58138
|
self._nominal = nominal
|
|
57687
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'
|
|
57688
58145
|
|
|
57689
58146
|
@builtins.property
|
|
57690
58147
|
def cached(self) -> Optional["scout_compute_resolved_api_CachedStorageLocator"]:
|
|
@@ -57694,6 +58151,10 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57694
58151
|
def nominal(self) -> Optional["scout_compute_resolved_api_NominalStorageLocator"]:
|
|
57695
58152
|
return self._nominal
|
|
57696
58153
|
|
|
58154
|
+
@builtins.property
|
|
58155
|
+
def external(self) -> Optional["timeseries_logicalseries_api_LogicalSeries"]:
|
|
58156
|
+
return self._external
|
|
58157
|
+
|
|
57697
58158
|
def accept(self, visitor) -> Any:
|
|
57698
58159
|
if not isinstance(visitor, scout_compute_resolved_api_StorageLocatorVisitor):
|
|
57699
58160
|
raise ValueError('{} is not an instance of scout_compute_resolved_api_StorageLocatorVisitor'.format(visitor.__class__.__name__))
|
|
@@ -57701,6 +58162,8 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
57701
58162
|
return visitor._cached(self.cached)
|
|
57702
58163
|
if self._type == 'nominal' and self.nominal is not None:
|
|
57703
58164
|
return visitor._nominal(self.nominal)
|
|
58165
|
+
if self._type == 'external' and self.external is not None:
|
|
58166
|
+
return visitor._external(self.external)
|
|
57704
58167
|
|
|
57705
58168
|
|
|
57706
58169
|
scout_compute_resolved_api_StorageLocator.__name__ = "StorageLocator"
|
|
@@ -57718,6 +58181,10 @@ class scout_compute_resolved_api_StorageLocatorVisitor:
|
|
|
57718
58181
|
def _nominal(self, nominal: "scout_compute_resolved_api_NominalStorageLocator") -> Any:
|
|
57719
58182
|
pass
|
|
57720
58183
|
|
|
58184
|
+
@abstractmethod
|
|
58185
|
+
def _external(self, external: "timeseries_logicalseries_api_LogicalSeries") -> Any:
|
|
58186
|
+
pass
|
|
58187
|
+
|
|
57721
58188
|
|
|
57722
58189
|
scout_compute_resolved_api_StorageLocatorVisitor.__name__ = "StorageLocatorVisitor"
|
|
57723
58190
|
scout_compute_resolved_api_StorageLocatorVisitor.__qualname__ = "StorageLocatorVisitor"
|
|
@@ -57896,14 +58363,16 @@ Summarization strategy should be specified.
|
|
|
57896
58363
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
57897
58364
|
return {
|
|
57898
58365
|
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_SeriesNode),
|
|
57899
|
-
'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)
|
|
57900
58368
|
}
|
|
57901
58369
|
|
|
57902
|
-
__slots__: List[str] = ['_input', '_summarization_strategy']
|
|
58370
|
+
__slots__: List[str] = ['_input', '_summarization_strategy', '_output_format']
|
|
57903
58371
|
|
|
57904
|
-
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:
|
|
57905
58373
|
self._input = input
|
|
57906
58374
|
self._summarization_strategy = summarization_strategy
|
|
58375
|
+
self._output_format = output_format
|
|
57907
58376
|
|
|
57908
58377
|
@builtins.property
|
|
57909
58378
|
def input(self) -> "scout_compute_resolved_api_SeriesNode":
|
|
@@ -57915,6 +58384,10 @@ Summarization strategy should be specified.
|
|
|
57915
58384
|
"""
|
|
57916
58385
|
return self._summarization_strategy
|
|
57917
58386
|
|
|
58387
|
+
@builtins.property
|
|
58388
|
+
def output_format(self) -> "scout_compute_api_OutputFormat":
|
|
58389
|
+
return self._output_format
|
|
58390
|
+
|
|
57918
58391
|
|
|
57919
58392
|
scout_compute_resolved_api_SummarizeSeriesNode.__name__ = "SummarizeSeriesNode"
|
|
57920
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=b3qFp_9orO-Vu4C3Q1wCqr1E-o2KotqtGw3pjQ6EDco,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.746.0.dist-info/METADATA,sha256=Punl3ZNPg9QDHKQezyWFde6FF-SK8oUNpgD5oskthI4,199
|
|
78
|
+
nominal_api-0.746.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
79
|
+
nominal_api-0.746.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
80
|
+
nominal_api-0.746.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|