nominal-api 0.758.0__py3-none-any.whl → 0.759.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 +227 -25
- nominal_api/module/__init__.py +4 -0
- nominal_api/scout_compute_resolved_api/__init__.py +2 -0
- {nominal_api-0.758.0.dist-info → nominal_api-0.759.0.dist-info}/METADATA +1 -1
- {nominal_api-0.758.0.dist-info → nominal_api-0.759.0.dist-info}/RECORD +8 -8
- {nominal_api-0.758.0.dist-info → nominal_api-0.759.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.758.0.dist-info → nominal_api-0.759.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -15239,44 +15239,187 @@ module_ModuleVersionMetadata.__qualname__ = "ModuleVersionMetadata"
|
|
|
15239
15239
|
module_ModuleVersionMetadata.__module__ = "nominal_api.module"
|
|
15240
15240
|
|
|
15241
15241
|
|
|
15242
|
-
class
|
|
15242
|
+
class module_SearchModuleApplicationsQuery(ConjureUnionType):
|
|
15243
|
+
_module_rid: Optional[str] = None
|
|
15244
|
+
_asset_rid: Optional[str] = None
|
|
15245
|
+
_workspace: Optional[str] = None
|
|
15246
|
+
_and_: Optional[List["module_SearchModuleApplicationsQuery"]] = None
|
|
15247
|
+
_or_: Optional[List["module_SearchModuleApplicationsQuery"]] = None
|
|
15248
|
+
_not_: Optional["module_SearchModuleApplicationsQuery"] = None
|
|
15243
15249
|
|
|
15244
15250
|
@builtins.classmethod
|
|
15245
|
-
def
|
|
15251
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15246
15252
|
return {
|
|
15247
|
-
'
|
|
15248
|
-
'
|
|
15249
|
-
'
|
|
15250
|
-
'
|
|
15251
|
-
'
|
|
15252
|
-
'
|
|
15253
|
+
'module_rid': ConjureFieldDefinition('moduleRid', modules_api_ModuleRid),
|
|
15254
|
+
'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
|
|
15255
|
+
'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid),
|
|
15256
|
+
'and_': ConjureFieldDefinition('and', List[module_SearchModuleApplicationsQuery]),
|
|
15257
|
+
'or_': ConjureFieldDefinition('or', List[module_SearchModuleApplicationsQuery]),
|
|
15258
|
+
'not_': ConjureFieldDefinition('not', module_SearchModuleApplicationsQuery)
|
|
15253
15259
|
}
|
|
15254
15260
|
|
|
15255
|
-
|
|
15261
|
+
def __init__(
|
|
15262
|
+
self,
|
|
15263
|
+
module_rid: Optional[str] = None,
|
|
15264
|
+
asset_rid: Optional[str] = None,
|
|
15265
|
+
workspace: Optional[str] = None,
|
|
15266
|
+
and_: Optional[List["module_SearchModuleApplicationsQuery"]] = None,
|
|
15267
|
+
or_: Optional[List["module_SearchModuleApplicationsQuery"]] = None,
|
|
15268
|
+
not_: Optional["module_SearchModuleApplicationsQuery"] = None,
|
|
15269
|
+
type_of_union: Optional[str] = None
|
|
15270
|
+
) -> None:
|
|
15271
|
+
if type_of_union is None:
|
|
15272
|
+
if (module_rid is not None) + (asset_rid is not None) + (workspace is not None) + (and_ is not None) + (or_ is not None) + (not_ is not None) != 1:
|
|
15273
|
+
raise ValueError('a union must contain a single member')
|
|
15256
15274
|
|
|
15257
|
-
|
|
15258
|
-
|
|
15259
|
-
|
|
15260
|
-
|
|
15261
|
-
|
|
15262
|
-
|
|
15263
|
-
|
|
15275
|
+
if module_rid is not None:
|
|
15276
|
+
self._module_rid = module_rid
|
|
15277
|
+
self._type = 'moduleRid'
|
|
15278
|
+
if asset_rid is not None:
|
|
15279
|
+
self._asset_rid = asset_rid
|
|
15280
|
+
self._type = 'assetRid'
|
|
15281
|
+
if workspace is not None:
|
|
15282
|
+
self._workspace = workspace
|
|
15283
|
+
self._type = 'workspace'
|
|
15284
|
+
if and_ is not None:
|
|
15285
|
+
self._and_ = and_
|
|
15286
|
+
self._type = 'and'
|
|
15287
|
+
if or_ is not None:
|
|
15288
|
+
self._or_ = or_
|
|
15289
|
+
self._type = 'or'
|
|
15290
|
+
if not_ is not None:
|
|
15291
|
+
self._not_ = not_
|
|
15292
|
+
self._type = 'not'
|
|
15293
|
+
|
|
15294
|
+
elif type_of_union == 'moduleRid':
|
|
15295
|
+
if module_rid is None:
|
|
15296
|
+
raise ValueError('a union value must not be None')
|
|
15297
|
+
self._module_rid = module_rid
|
|
15298
|
+
self._type = 'moduleRid'
|
|
15299
|
+
elif type_of_union == 'assetRid':
|
|
15300
|
+
if asset_rid is None:
|
|
15301
|
+
raise ValueError('a union value must not be None')
|
|
15302
|
+
self._asset_rid = asset_rid
|
|
15303
|
+
self._type = 'assetRid'
|
|
15304
|
+
elif type_of_union == 'workspace':
|
|
15305
|
+
if workspace is None:
|
|
15306
|
+
raise ValueError('a union value must not be None')
|
|
15307
|
+
self._workspace = workspace
|
|
15308
|
+
self._type = 'workspace'
|
|
15309
|
+
elif type_of_union == 'and':
|
|
15310
|
+
if and_ is None:
|
|
15311
|
+
raise ValueError('a union value must not be None')
|
|
15312
|
+
self._and_ = and_
|
|
15313
|
+
self._type = 'and'
|
|
15314
|
+
elif type_of_union == 'or':
|
|
15315
|
+
if or_ is None:
|
|
15316
|
+
raise ValueError('a union value must not be None')
|
|
15317
|
+
self._or_ = or_
|
|
15318
|
+
self._type = 'or'
|
|
15319
|
+
elif type_of_union == 'not':
|
|
15320
|
+
if not_ is None:
|
|
15321
|
+
raise ValueError('a union value must not be None')
|
|
15322
|
+
self._not_ = not_
|
|
15323
|
+
self._type = 'not'
|
|
15264
15324
|
|
|
15265
15325
|
@builtins.property
|
|
15266
|
-
def
|
|
15267
|
-
return self.
|
|
15326
|
+
def module_rid(self) -> Optional[str]:
|
|
15327
|
+
return self._module_rid
|
|
15268
15328
|
|
|
15269
15329
|
@builtins.property
|
|
15270
|
-
def
|
|
15271
|
-
return self.
|
|
15330
|
+
def asset_rid(self) -> Optional[str]:
|
|
15331
|
+
return self._asset_rid
|
|
15272
15332
|
|
|
15273
15333
|
@builtins.property
|
|
15274
|
-
def
|
|
15275
|
-
return self.
|
|
15334
|
+
def workspace(self) -> Optional[str]:
|
|
15335
|
+
return self._workspace
|
|
15276
15336
|
|
|
15277
15337
|
@builtins.property
|
|
15278
|
-
def
|
|
15279
|
-
return self.
|
|
15338
|
+
def and_(self) -> Optional[List["module_SearchModuleApplicationsQuery"]]:
|
|
15339
|
+
return self._and_
|
|
15340
|
+
|
|
15341
|
+
@builtins.property
|
|
15342
|
+
def or_(self) -> Optional[List["module_SearchModuleApplicationsQuery"]]:
|
|
15343
|
+
return self._or_
|
|
15344
|
+
|
|
15345
|
+
@builtins.property
|
|
15346
|
+
def not_(self) -> Optional["module_SearchModuleApplicationsQuery"]:
|
|
15347
|
+
return self._not_
|
|
15348
|
+
|
|
15349
|
+
def accept(self, visitor) -> Any:
|
|
15350
|
+
if not isinstance(visitor, module_SearchModuleApplicationsQueryVisitor):
|
|
15351
|
+
raise ValueError('{} is not an instance of module_SearchModuleApplicationsQueryVisitor'.format(visitor.__class__.__name__))
|
|
15352
|
+
if self._type == 'moduleRid' and self.module_rid is not None:
|
|
15353
|
+
return visitor._module_rid(self.module_rid)
|
|
15354
|
+
if self._type == 'assetRid' and self.asset_rid is not None:
|
|
15355
|
+
return visitor._asset_rid(self.asset_rid)
|
|
15356
|
+
if self._type == 'workspace' and self.workspace is not None:
|
|
15357
|
+
return visitor._workspace(self.workspace)
|
|
15358
|
+
if self._type == 'and' and self.and_ is not None:
|
|
15359
|
+
return visitor._and(self.and_)
|
|
15360
|
+
if self._type == 'or' and self.or_ is not None:
|
|
15361
|
+
return visitor._or(self.or_)
|
|
15362
|
+
if self._type == 'not' and self.not_ is not None:
|
|
15363
|
+
return visitor._not(self.not_)
|
|
15364
|
+
|
|
15365
|
+
|
|
15366
|
+
module_SearchModuleApplicationsQuery.__name__ = "SearchModuleApplicationsQuery"
|
|
15367
|
+
module_SearchModuleApplicationsQuery.__qualname__ = "SearchModuleApplicationsQuery"
|
|
15368
|
+
module_SearchModuleApplicationsQuery.__module__ = "nominal_api.module"
|
|
15369
|
+
|
|
15370
|
+
|
|
15371
|
+
class module_SearchModuleApplicationsQueryVisitor:
|
|
15372
|
+
|
|
15373
|
+
@abstractmethod
|
|
15374
|
+
def _module_rid(self, module_rid: str) -> Any:
|
|
15375
|
+
pass
|
|
15376
|
+
|
|
15377
|
+
@abstractmethod
|
|
15378
|
+
def _asset_rid(self, asset_rid: str) -> Any:
|
|
15379
|
+
pass
|
|
15380
|
+
|
|
15381
|
+
@abstractmethod
|
|
15382
|
+
def _workspace(self, workspace: str) -> Any:
|
|
15383
|
+
pass
|
|
15384
|
+
|
|
15385
|
+
@abstractmethod
|
|
15386
|
+
def _and(self, and_: List["module_SearchModuleApplicationsQuery"]) -> Any:
|
|
15387
|
+
pass
|
|
15388
|
+
|
|
15389
|
+
@abstractmethod
|
|
15390
|
+
def _or(self, or_: List["module_SearchModuleApplicationsQuery"]) -> Any:
|
|
15391
|
+
pass
|
|
15392
|
+
|
|
15393
|
+
@abstractmethod
|
|
15394
|
+
def _not(self, not_: "module_SearchModuleApplicationsQuery") -> Any:
|
|
15395
|
+
pass
|
|
15396
|
+
|
|
15397
|
+
|
|
15398
|
+
module_SearchModuleApplicationsQueryVisitor.__name__ = "SearchModuleApplicationsQueryVisitor"
|
|
15399
|
+
module_SearchModuleApplicationsQueryVisitor.__qualname__ = "SearchModuleApplicationsQueryVisitor"
|
|
15400
|
+
module_SearchModuleApplicationsQueryVisitor.__module__ = "nominal_api.module"
|
|
15401
|
+
|
|
15402
|
+
|
|
15403
|
+
class module_SearchModuleApplicationsRequest(ConjureBeanType):
|
|
15404
|
+
|
|
15405
|
+
@builtins.classmethod
|
|
15406
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15407
|
+
return {
|
|
15408
|
+
'query': ConjureFieldDefinition('query', module_SearchModuleApplicationsQuery),
|
|
15409
|
+
'page_size': ConjureFieldDefinition('pageSize', int),
|
|
15410
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
15411
|
+
}
|
|
15412
|
+
|
|
15413
|
+
__slots__: List[str] = ['_query', '_page_size', '_next_page_token']
|
|
15414
|
+
|
|
15415
|
+
def __init__(self, page_size: int, query: "module_SearchModuleApplicationsQuery", next_page_token: Optional[str] = None) -> None:
|
|
15416
|
+
self._query = query
|
|
15417
|
+
self._page_size = page_size
|
|
15418
|
+
self._next_page_token = next_page_token
|
|
15419
|
+
|
|
15420
|
+
@builtins.property
|
|
15421
|
+
def query(self) -> "module_SearchModuleApplicationsQuery":
|
|
15422
|
+
return self._query
|
|
15280
15423
|
|
|
15281
15424
|
@builtins.property
|
|
15282
15425
|
def page_size(self) -> int:
|
|
@@ -55508,6 +55651,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
55508
55651
|
_unit_conversion: Optional["scout_compute_resolved_api_UnitConversionSeriesNode"] = None
|
|
55509
55652
|
_value_difference: Optional["scout_compute_resolved_api_ValueDifferenceSeriesNode"] = None
|
|
55510
55653
|
_filter_transformation: Optional["scout_compute_resolved_api_NumericFilterTransformationSeriesNode"] = None
|
|
55654
|
+
_threshold_filter: Optional["scout_compute_resolved_api_NumericThresholdFilterSeriesNode"] = None
|
|
55511
55655
|
_array_select: Optional["scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode"] = None
|
|
55512
55656
|
_absolute_timestamp: Optional["scout_compute_resolved_api_AbsoluteTimestampSeriesNode"] = None
|
|
55513
55657
|
|
|
@@ -55541,6 +55685,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
55541
55685
|
'unit_conversion': ConjureFieldDefinition('unitConversion', scout_compute_resolved_api_UnitConversionSeriesNode),
|
|
55542
55686
|
'value_difference': ConjureFieldDefinition('valueDifference', scout_compute_resolved_api_ValueDifferenceSeriesNode),
|
|
55543
55687
|
'filter_transformation': ConjureFieldDefinition('filterTransformation', scout_compute_resolved_api_NumericFilterTransformationSeriesNode),
|
|
55688
|
+
'threshold_filter': ConjureFieldDefinition('thresholdFilter', scout_compute_resolved_api_NumericThresholdFilterSeriesNode),
|
|
55544
55689
|
'array_select': ConjureFieldDefinition('arraySelect', scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode),
|
|
55545
55690
|
'absolute_timestamp': ConjureFieldDefinition('absoluteTimestamp', scout_compute_resolved_api_AbsoluteTimestampSeriesNode)
|
|
55546
55691
|
}
|
|
@@ -55574,12 +55719,13 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
55574
55719
|
unit_conversion: Optional["scout_compute_resolved_api_UnitConversionSeriesNode"] = None,
|
|
55575
55720
|
value_difference: Optional["scout_compute_resolved_api_ValueDifferenceSeriesNode"] = None,
|
|
55576
55721
|
filter_transformation: Optional["scout_compute_resolved_api_NumericFilterTransformationSeriesNode"] = None,
|
|
55722
|
+
threshold_filter: Optional["scout_compute_resolved_api_NumericThresholdFilterSeriesNode"] = None,
|
|
55577
55723
|
array_select: Optional["scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode"] = None,
|
|
55578
55724
|
absolute_timestamp: Optional["scout_compute_resolved_api_AbsoluteTimestampSeriesNode"] = None,
|
|
55579
55725
|
type_of_union: Optional[str] = None
|
|
55580
55726
|
) -> None:
|
|
55581
55727
|
if type_of_union is None:
|
|
55582
|
-
if (arithmetic is not None) + (bit_operation is not None) + (count_duplicate is not None) + (cumulative_sum is not None) + (derivative is not None) + (integral is not None) + (max is not None) + (mean is not None) + (min is not None) + (offset is not None) + (product is not None) + (raw is not None) + (resample is not None) + (rolling_operation is not None) + (aggregate is not None) + (signal_filter is not None) + (sum is not None) + (scale is not None) + (time_difference is not None) + (time_range_filter is not None) + (time_shift is not None) + (unary_arithmetic is not None) + (binary_arithmetic is not None) + (union is not None) + (unit_conversion is not None) + (value_difference is not None) + (filter_transformation is not None) + (array_select is not None) + (absolute_timestamp is not None) != 1:
|
|
55728
|
+
if (arithmetic is not None) + (bit_operation is not None) + (count_duplicate is not None) + (cumulative_sum is not None) + (derivative is not None) + (integral is not None) + (max is not None) + (mean is not None) + (min is not None) + (offset is not None) + (product is not None) + (raw is not None) + (resample is not None) + (rolling_operation is not None) + (aggregate is not None) + (signal_filter is not None) + (sum is not None) + (scale is not None) + (time_difference is not None) + (time_range_filter is not None) + (time_shift is not None) + (unary_arithmetic is not None) + (binary_arithmetic is not None) + (union is not None) + (unit_conversion is not None) + (value_difference is not None) + (filter_transformation is not None) + (threshold_filter is not None) + (array_select is not None) + (absolute_timestamp is not None) != 1:
|
|
55583
55729
|
raise ValueError('a union must contain a single member')
|
|
55584
55730
|
|
|
55585
55731
|
if arithmetic is not None:
|
|
@@ -55663,6 +55809,9 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
55663
55809
|
if filter_transformation is not None:
|
|
55664
55810
|
self._filter_transformation = filter_transformation
|
|
55665
55811
|
self._type = 'filterTransformation'
|
|
55812
|
+
if threshold_filter is not None:
|
|
55813
|
+
self._threshold_filter = threshold_filter
|
|
55814
|
+
self._type = 'thresholdFilter'
|
|
55666
55815
|
if array_select is not None:
|
|
55667
55816
|
self._array_select = array_select
|
|
55668
55817
|
self._type = 'arraySelect'
|
|
@@ -55805,6 +55954,11 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
55805
55954
|
raise ValueError('a union value must not be None')
|
|
55806
55955
|
self._filter_transformation = filter_transformation
|
|
55807
55956
|
self._type = 'filterTransformation'
|
|
55957
|
+
elif type_of_union == 'thresholdFilter':
|
|
55958
|
+
if threshold_filter is None:
|
|
55959
|
+
raise ValueError('a union value must not be None')
|
|
55960
|
+
self._threshold_filter = threshold_filter
|
|
55961
|
+
self._type = 'thresholdFilter'
|
|
55808
55962
|
elif type_of_union == 'arraySelect':
|
|
55809
55963
|
if array_select is None:
|
|
55810
55964
|
raise ValueError('a union value must not be None')
|
|
@@ -55924,6 +56078,10 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
55924
56078
|
def filter_transformation(self) -> Optional["scout_compute_resolved_api_NumericFilterTransformationSeriesNode"]:
|
|
55925
56079
|
return self._filter_transformation
|
|
55926
56080
|
|
|
56081
|
+
@builtins.property
|
|
56082
|
+
def threshold_filter(self) -> Optional["scout_compute_resolved_api_NumericThresholdFilterSeriesNode"]:
|
|
56083
|
+
return self._threshold_filter
|
|
56084
|
+
|
|
55927
56085
|
@builtins.property
|
|
55928
56086
|
def array_select(self) -> Optional["scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode"]:
|
|
55929
56087
|
return self._array_select
|
|
@@ -55989,6 +56147,8 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
55989
56147
|
return visitor._value_difference(self.value_difference)
|
|
55990
56148
|
if self._type == 'filterTransformation' and self.filter_transformation is not None:
|
|
55991
56149
|
return visitor._filter_transformation(self.filter_transformation)
|
|
56150
|
+
if self._type == 'thresholdFilter' and self.threshold_filter is not None:
|
|
56151
|
+
return visitor._threshold_filter(self.threshold_filter)
|
|
55992
56152
|
if self._type == 'arraySelect' and self.array_select is not None:
|
|
55993
56153
|
return visitor._array_select(self.array_select)
|
|
55994
56154
|
if self._type == 'absoluteTimestamp' and self.absolute_timestamp is not None:
|
|
@@ -56110,6 +56270,10 @@ class scout_compute_resolved_api_NumericSeriesNodeVisitor:
|
|
|
56110
56270
|
def _filter_transformation(self, filter_transformation: "scout_compute_resolved_api_NumericFilterTransformationSeriesNode") -> Any:
|
|
56111
56271
|
pass
|
|
56112
56272
|
|
|
56273
|
+
@abstractmethod
|
|
56274
|
+
def _threshold_filter(self, threshold_filter: "scout_compute_resolved_api_NumericThresholdFilterSeriesNode") -> Any:
|
|
56275
|
+
pass
|
|
56276
|
+
|
|
56113
56277
|
@abstractmethod
|
|
56114
56278
|
def _array_select(self, array_select: "scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode") -> Any:
|
|
56115
56279
|
pass
|
|
@@ -56124,6 +56288,44 @@ scout_compute_resolved_api_NumericSeriesNodeVisitor.__qualname__ = "NumericSerie
|
|
|
56124
56288
|
scout_compute_resolved_api_NumericSeriesNodeVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
56125
56289
|
|
|
56126
56290
|
|
|
56291
|
+
class scout_compute_resolved_api_NumericThresholdFilterSeriesNode(ConjureBeanType):
|
|
56292
|
+
"""Even though this could be implementing using a filter transformation, handling it alone gives
|
|
56293
|
+
easier pushdown instead of indirecting through ranges nodes
|
|
56294
|
+
"""
|
|
56295
|
+
|
|
56296
|
+
@builtins.classmethod
|
|
56297
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
56298
|
+
return {
|
|
56299
|
+
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_NumericSeriesNode),
|
|
56300
|
+
'threshold': ConjureFieldDefinition('threshold', float),
|
|
56301
|
+
'threshold_operator': ConjureFieldDefinition('thresholdOperator', scout_compute_api_ThresholdOperator)
|
|
56302
|
+
}
|
|
56303
|
+
|
|
56304
|
+
__slots__: List[str] = ['_input', '_threshold', '_threshold_operator']
|
|
56305
|
+
|
|
56306
|
+
def __init__(self, input: "scout_compute_resolved_api_NumericSeriesNode", threshold: float, threshold_operator: "scout_compute_api_ThresholdOperator") -> None:
|
|
56307
|
+
self._input = input
|
|
56308
|
+
self._threshold = threshold
|
|
56309
|
+
self._threshold_operator = threshold_operator
|
|
56310
|
+
|
|
56311
|
+
@builtins.property
|
|
56312
|
+
def input(self) -> "scout_compute_resolved_api_NumericSeriesNode":
|
|
56313
|
+
return self._input
|
|
56314
|
+
|
|
56315
|
+
@builtins.property
|
|
56316
|
+
def threshold(self) -> float:
|
|
56317
|
+
return self._threshold
|
|
56318
|
+
|
|
56319
|
+
@builtins.property
|
|
56320
|
+
def threshold_operator(self) -> "scout_compute_api_ThresholdOperator":
|
|
56321
|
+
return self._threshold_operator
|
|
56322
|
+
|
|
56323
|
+
|
|
56324
|
+
scout_compute_resolved_api_NumericThresholdFilterSeriesNode.__name__ = "NumericThresholdFilterSeriesNode"
|
|
56325
|
+
scout_compute_resolved_api_NumericThresholdFilterSeriesNode.__qualname__ = "NumericThresholdFilterSeriesNode"
|
|
56326
|
+
scout_compute_resolved_api_NumericThresholdFilterSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
56327
|
+
|
|
56328
|
+
|
|
56127
56329
|
class scout_compute_resolved_api_NumericTimeRangeFilterSeriesNode(ConjureBeanType):
|
|
56128
56330
|
|
|
56129
56331
|
@builtins.classmethod
|
nominal_api/module/__init__.py
CHANGED
|
@@ -27,6 +27,8 @@ from .._impl import (
|
|
|
27
27
|
module_ModuleVersionDefinition as ModuleVersionDefinition,
|
|
28
28
|
module_ModuleVersionMetadata as ModuleVersionMetadata,
|
|
29
29
|
module_ParameterName as ParameterName,
|
|
30
|
+
module_SearchModuleApplicationsQuery as SearchModuleApplicationsQuery,
|
|
31
|
+
module_SearchModuleApplicationsQueryVisitor as SearchModuleApplicationsQueryVisitor,
|
|
30
32
|
module_SearchModuleApplicationsRequest as SearchModuleApplicationsRequest,
|
|
31
33
|
module_SearchModuleApplicationsResponse as SearchModuleApplicationsResponse,
|
|
32
34
|
module_SearchModulesQuery as SearchModulesQuery,
|
|
@@ -70,6 +72,8 @@ __all__ = [
|
|
|
70
72
|
'ModuleVersionDefinition',
|
|
71
73
|
'ModuleVersionMetadata',
|
|
72
74
|
'ParameterName',
|
|
75
|
+
'SearchModuleApplicationsQuery',
|
|
76
|
+
'SearchModuleApplicationsQueryVisitor',
|
|
73
77
|
'SearchModuleApplicationsRequest',
|
|
74
78
|
'SearchModuleApplicationsResponse',
|
|
75
79
|
'SearchModulesQuery',
|
|
@@ -85,6 +85,7 @@ from .._impl import (
|
|
|
85
85
|
scout_compute_resolved_api_NumericResampleSeriesNode as NumericResampleSeriesNode,
|
|
86
86
|
scout_compute_resolved_api_NumericSeriesNode as NumericSeriesNode,
|
|
87
87
|
scout_compute_resolved_api_NumericSeriesNodeVisitor as NumericSeriesNodeVisitor,
|
|
88
|
+
scout_compute_resolved_api_NumericThresholdFilterSeriesNode as NumericThresholdFilterSeriesNode,
|
|
88
89
|
scout_compute_resolved_api_NumericTimeRangeFilterSeriesNode as NumericTimeRangeFilterSeriesNode,
|
|
89
90
|
scout_compute_resolved_api_NumericTimeShiftSeriesNode as NumericTimeShiftSeriesNode,
|
|
90
91
|
scout_compute_resolved_api_NumericUnionSeriesNode as NumericUnionSeriesNode,
|
|
@@ -239,6 +240,7 @@ __all__ = [
|
|
|
239
240
|
'NumericResampleSeriesNode',
|
|
240
241
|
'NumericSeriesNode',
|
|
241
242
|
'NumericSeriesNodeVisitor',
|
|
243
|
+
'NumericThresholdFilterSeriesNode',
|
|
242
244
|
'NumericTimeRangeFilterSeriesNode',
|
|
243
245
|
'NumericTimeShiftSeriesNode',
|
|
244
246
|
'NumericUnionSeriesNode',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=cMiHHbUR3HQJAgBRBEmQ1C3V7eqzDuRI87N4wPPMhFw,1989
|
|
2
|
+
nominal_api/_impl.py,sha256=JRTNTYF_IyzRp9XjvxjiOdICaiZL0Z8EaL389jQGIW0,3400468
|
|
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
|
|
@@ -17,7 +17,7 @@ nominal_api/datasource_pagination_api/__init__.py,sha256=WeENj6yqi2XfInU8YgjFwqw
|
|
|
17
17
|
nominal_api/event/__init__.py,sha256=t5q8N5ozj3tHwRVhwtL6kwu-1-FMIoTGJT1RX75pwZM,2830
|
|
18
18
|
nominal_api/ingest_api/__init__.py,sha256=vkOFk6X2S4jpv0FBwsT9JpaK7Hb7lk9nkMNwcTi4zTw,11266
|
|
19
19
|
nominal_api/ingest_workflow_api/__init__.py,sha256=lTCb7s4VCrpur0TDpTy_EDvUdHJ4UKqcTv8MYiEeeko,2954
|
|
20
|
-
nominal_api/module/__init__.py,sha256=
|
|
20
|
+
nominal_api/module/__init__.py,sha256=lM3ETKLddEed2ZeQgjz1eb0C_AEU0qnGX_sceK05sc0,3650
|
|
21
21
|
nominal_api/modules_api/__init__.py,sha256=V8ccEclLTh6CbzZvpRhcncPFqFBU-sSUSkfr4KzXL6w,112
|
|
22
22
|
nominal_api/persistent_compute_api/__init__.py,sha256=bOWBiRLJbl3winMP9EowCUpPpRIUYyejua3059wJWQk,3314
|
|
23
23
|
nominal_api/scout/__init__.py,sha256=dZzrrqBeio2l0txhlNoHSfv6QsA9a3EVDp0_XpubUGk,481
|
|
@@ -34,7 +34,7 @@ nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=RpTvc8WqNxOuDSXWs-xV
|
|
|
34
34
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
|
35
35
|
nominal_api/scout_compute_api/__init__.py,sha256=YuZBcMy3WbAVThmYpZWZTr534ptbYa8o4iI-qmI1DTI,29605
|
|
36
36
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
|
37
|
-
nominal_api/scout_compute_resolved_api/__init__.py,sha256=
|
|
37
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=Q1cKCbGdqm_adVh-NitZa8FCjJRC7NDvYMXveLUs4cY,16231
|
|
38
38
|
nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
|
|
39
39
|
nominal_api/scout_datareview_api/__init__.py,sha256=kTDvcuav5bBm3IPhvmDrBTYyVD26iQVkyzdZnu75omE,11695
|
|
40
40
|
nominal_api/scout_datasource/__init__.py,sha256=Z1Msu1Daf8GlLuM3w5imyB-6DhTNZojxI6xpH1sSvhM,141
|
|
@@ -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.759.0.dist-info/METADATA,sha256=zjr5tpByzXGzbVYZEAYlXz2CRcC77-UNGejtsXmodMo,199
|
|
78
|
+
nominal_api-0.759.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
79
|
+
nominal_api-0.759.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
80
|
+
nominal_api-0.759.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|