nominal-api 0.717.2__py3-none-any.whl → 0.719.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 +529 -14
- nominal_api/scout_compute_api/__init__.py +12 -0
- nominal_api/scout_compute_resolved_api/__init__.py +12 -0
- {nominal_api-0.717.2.dist-info → nominal_api-0.719.0.dist-info}/METADATA +1 -1
- {nominal_api-0.717.2.dist-info → nominal_api-0.719.0.dist-info}/RECORD +8 -8
- {nominal_api-0.717.2.dist-info → nominal_api-0.719.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.717.2.dist-info → nominal_api-0.719.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -20030,15 +20030,17 @@ class scout_catalog_AddFileToDataset(ConjureBeanType):
|
|
|
20030
20030
|
return {
|
|
20031
20031
|
'handle': ConjureFieldDefinition('handle', scout_catalog_Handle),
|
|
20032
20032
|
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[scout_catalog_TimestampMetadata]),
|
|
20033
|
-
'origin_file_handles': ConjureFieldDefinition('originFileHandles', OptionalTypeWrapper[List[scout_catalog_S3Handle]])
|
|
20033
|
+
'origin_file_handles': ConjureFieldDefinition('originFileHandles', OptionalTypeWrapper[List[scout_catalog_S3Handle]]),
|
|
20034
|
+
'ingest_job_rid': ConjureFieldDefinition('ingestJobRid', OptionalTypeWrapper[ingest_api_IngestJobRid])
|
|
20034
20035
|
}
|
|
20035
20036
|
|
|
20036
|
-
__slots__: List[str] = ['_handle', '_timestamp_metadata', '_origin_file_handles']
|
|
20037
|
+
__slots__: List[str] = ['_handle', '_timestamp_metadata', '_origin_file_handles', '_ingest_job_rid']
|
|
20037
20038
|
|
|
20038
|
-
def __init__(self, handle: "scout_catalog_Handle", origin_file_handles: Optional[List["scout_catalog_S3Handle"]] = None, timestamp_metadata: Optional["scout_catalog_TimestampMetadata"] = None) -> None:
|
|
20039
|
+
def __init__(self, handle: "scout_catalog_Handle", ingest_job_rid: Optional[str] = None, origin_file_handles: Optional[List["scout_catalog_S3Handle"]] = None, timestamp_metadata: Optional["scout_catalog_TimestampMetadata"] = None) -> None:
|
|
20039
20040
|
self._handle = handle
|
|
20040
20041
|
self._timestamp_metadata = timestamp_metadata
|
|
20041
20042
|
self._origin_file_handles = origin_file_handles
|
|
20043
|
+
self._ingest_job_rid = ingest_job_rid
|
|
20042
20044
|
|
|
20043
20045
|
@builtins.property
|
|
20044
20046
|
def handle(self) -> "scout_catalog_Handle":
|
|
@@ -20052,6 +20054,10 @@ class scout_catalog_AddFileToDataset(ConjureBeanType):
|
|
|
20052
20054
|
def origin_file_handles(self) -> Optional[List["scout_catalog_S3Handle"]]:
|
|
20053
20055
|
return self._origin_file_handles
|
|
20054
20056
|
|
|
20057
|
+
@builtins.property
|
|
20058
|
+
def ingest_job_rid(self) -> Optional[str]:
|
|
20059
|
+
return self._ingest_job_rid
|
|
20060
|
+
|
|
20055
20061
|
|
|
20056
20062
|
scout_catalog_AddFileToDataset.__name__ = "AddFileToDataset"
|
|
20057
20063
|
scout_catalog_AddFileToDataset.__qualname__ = "AddFileToDataset"
|
|
@@ -20279,6 +20285,37 @@ a file, primarily CSV.
|
|
|
20279
20285
|
_decoder = ConjureDecoder()
|
|
20280
20286
|
return _decoder.decode(_response.json(), scout_catalog_DatasetFile, self._return_none_for_unknown_union_types)
|
|
20281
20287
|
|
|
20288
|
+
def get_dataset_files_for_job(self, auth_header: str, ingest_job_rid: str, next_page_token: Optional[str] = None) -> "scout_catalog_DatasetFilesPage":
|
|
20289
|
+
_conjure_encoder = ConjureEncoder()
|
|
20290
|
+
|
|
20291
|
+
_headers: Dict[str, Any] = {
|
|
20292
|
+
'Accept': 'application/json',
|
|
20293
|
+
'Authorization': auth_header,
|
|
20294
|
+
}
|
|
20295
|
+
|
|
20296
|
+
_params: Dict[str, Any] = {
|
|
20297
|
+
'nextPageToken': _conjure_encoder.default(next_page_token),
|
|
20298
|
+
}
|
|
20299
|
+
|
|
20300
|
+
_path_params: Dict[str, str] = {
|
|
20301
|
+
'ingestJobRid': quote(str(_conjure_encoder.default(ingest_job_rid)), safe=''),
|
|
20302
|
+
}
|
|
20303
|
+
|
|
20304
|
+
_json: Any = None
|
|
20305
|
+
|
|
20306
|
+
_path = '/catalog/v1/ingest-job/{ingestJobRid}/files'
|
|
20307
|
+
_path = _path.format(**_path_params)
|
|
20308
|
+
|
|
20309
|
+
_response: Response = self._request(
|
|
20310
|
+
'GET',
|
|
20311
|
+
self._uri + _path,
|
|
20312
|
+
params=_params,
|
|
20313
|
+
headers=_headers,
|
|
20314
|
+
json=_json)
|
|
20315
|
+
|
|
20316
|
+
_decoder = ConjureDecoder()
|
|
20317
|
+
return _decoder.decode(_response.json(), scout_catalog_DatasetFilesPage, self._return_none_for_unknown_union_types)
|
|
20318
|
+
|
|
20282
20319
|
def search_datasets_by_text(self, auth_header: str, request: "scout_catalog_SearchDatasetsByTextRequest") -> "scout_catalog_SearchDatasetsByTextResponse":
|
|
20283
20320
|
_conjure_encoder = ConjureEncoder()
|
|
20284
20321
|
|
|
@@ -21213,12 +21250,13 @@ class scout_catalog_DatasetFile(ConjureBeanType):
|
|
|
21213
21250
|
'ingested_at': ConjureFieldDefinition('ingestedAt', OptionalTypeWrapper[str]),
|
|
21214
21251
|
'ingest_status': ConjureFieldDefinition('ingestStatus', api_IngestStatusV2),
|
|
21215
21252
|
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[scout_catalog_TimestampMetadata]),
|
|
21216
|
-
'origin_file_paths': ConjureFieldDefinition('originFilePaths', OptionalTypeWrapper[List[str]])
|
|
21253
|
+
'origin_file_paths': ConjureFieldDefinition('originFilePaths', OptionalTypeWrapper[List[str]]),
|
|
21254
|
+
'ingest_job_rid': ConjureFieldDefinition('ingestJobRid', OptionalTypeWrapper[ingest_api_IngestJobRid])
|
|
21217
21255
|
}
|
|
21218
21256
|
|
|
21219
|
-
__slots__: List[str] = ['_id', '_dataset_rid', '_name', '_handle', '_bounds', '_uploaded_at', '_ingested_at', '_ingest_status', '_timestamp_metadata', '_origin_file_paths']
|
|
21257
|
+
__slots__: List[str] = ['_id', '_dataset_rid', '_name', '_handle', '_bounds', '_uploaded_at', '_ingested_at', '_ingest_status', '_timestamp_metadata', '_origin_file_paths', '_ingest_job_rid']
|
|
21220
21258
|
|
|
21221
|
-
def __init__(self, dataset_rid: str, handle: "scout_catalog_Handle", id: str, ingest_status: "api_IngestStatusV2", name: str, uploaded_at: str, bounds: Optional["scout_catalog_Bounds"] = None, ingested_at: Optional[str] = None, origin_file_paths: Optional[List[str]] = None, timestamp_metadata: Optional["scout_catalog_TimestampMetadata"] = None) -> None:
|
|
21259
|
+
def __init__(self, dataset_rid: str, handle: "scout_catalog_Handle", id: str, ingest_status: "api_IngestStatusV2", name: str, uploaded_at: str, bounds: Optional["scout_catalog_Bounds"] = None, ingest_job_rid: Optional[str] = None, ingested_at: Optional[str] = None, origin_file_paths: Optional[List[str]] = None, timestamp_metadata: Optional["scout_catalog_TimestampMetadata"] = None) -> None:
|
|
21222
21260
|
self._id = id
|
|
21223
21261
|
self._dataset_rid = dataset_rid
|
|
21224
21262
|
self._name = name
|
|
@@ -21229,6 +21267,7 @@ class scout_catalog_DatasetFile(ConjureBeanType):
|
|
|
21229
21267
|
self._ingest_status = ingest_status
|
|
21230
21268
|
self._timestamp_metadata = timestamp_metadata
|
|
21231
21269
|
self._origin_file_paths = origin_file_paths
|
|
21270
|
+
self._ingest_job_rid = ingest_job_rid
|
|
21232
21271
|
|
|
21233
21272
|
@builtins.property
|
|
21234
21273
|
def id(self) -> str:
|
|
@@ -21275,6 +21314,10 @@ ingested for any reason or is still being processed, then this value will be emp
|
|
|
21275
21314
|
def origin_file_paths(self) -> Optional[List[str]]:
|
|
21276
21315
|
return self._origin_file_paths
|
|
21277
21316
|
|
|
21317
|
+
@builtins.property
|
|
21318
|
+
def ingest_job_rid(self) -> Optional[str]:
|
|
21319
|
+
return self._ingest_job_rid
|
|
21320
|
+
|
|
21278
21321
|
|
|
21279
21322
|
scout_catalog_DatasetFile.__name__ = "DatasetFile"
|
|
21280
21323
|
scout_catalog_DatasetFile.__qualname__ = "DatasetFile"
|
|
@@ -38847,6 +38890,83 @@ scout_compute_api_DurationFilterRanges.__qualname__ = "DurationFilterRanges"
|
|
|
38847
38890
|
scout_compute_api_DurationFilterRanges.__module__ = "nominal_api.scout_compute_api"
|
|
38848
38891
|
|
|
38849
38892
|
|
|
38893
|
+
class scout_compute_api_Enum1dArraySeries(ConjureUnionType):
|
|
38894
|
+
_channel: Optional["scout_compute_api_ChannelSeries"] = None
|
|
38895
|
+
_raw: Optional["scout_compute_api_Reference"] = None
|
|
38896
|
+
|
|
38897
|
+
@builtins.classmethod
|
|
38898
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
38899
|
+
return {
|
|
38900
|
+
'channel': ConjureFieldDefinition('channel', scout_compute_api_ChannelSeries),
|
|
38901
|
+
'raw': ConjureFieldDefinition('raw', scout_compute_api_Reference)
|
|
38902
|
+
}
|
|
38903
|
+
|
|
38904
|
+
def __init__(
|
|
38905
|
+
self,
|
|
38906
|
+
channel: Optional["scout_compute_api_ChannelSeries"] = None,
|
|
38907
|
+
raw: Optional["scout_compute_api_Reference"] = None,
|
|
38908
|
+
type_of_union: Optional[str] = None
|
|
38909
|
+
) -> None:
|
|
38910
|
+
if type_of_union is None:
|
|
38911
|
+
if (channel is not None) + (raw is not None) != 1:
|
|
38912
|
+
raise ValueError('a union must contain a single member')
|
|
38913
|
+
|
|
38914
|
+
if channel is not None:
|
|
38915
|
+
self._channel = channel
|
|
38916
|
+
self._type = 'channel'
|
|
38917
|
+
if raw is not None:
|
|
38918
|
+
self._raw = raw
|
|
38919
|
+
self._type = 'raw'
|
|
38920
|
+
|
|
38921
|
+
elif type_of_union == 'channel':
|
|
38922
|
+
if channel is None:
|
|
38923
|
+
raise ValueError('a union value must not be None')
|
|
38924
|
+
self._channel = channel
|
|
38925
|
+
self._type = 'channel'
|
|
38926
|
+
elif type_of_union == 'raw':
|
|
38927
|
+
if raw is None:
|
|
38928
|
+
raise ValueError('a union value must not be None')
|
|
38929
|
+
self._raw = raw
|
|
38930
|
+
self._type = 'raw'
|
|
38931
|
+
|
|
38932
|
+
@builtins.property
|
|
38933
|
+
def channel(self) -> Optional["scout_compute_api_ChannelSeries"]:
|
|
38934
|
+
return self._channel
|
|
38935
|
+
|
|
38936
|
+
@builtins.property
|
|
38937
|
+
def raw(self) -> Optional["scout_compute_api_Reference"]:
|
|
38938
|
+
return self._raw
|
|
38939
|
+
|
|
38940
|
+
def accept(self, visitor) -> Any:
|
|
38941
|
+
if not isinstance(visitor, scout_compute_api_Enum1dArraySeriesVisitor):
|
|
38942
|
+
raise ValueError('{} is not an instance of scout_compute_api_Enum1dArraySeriesVisitor'.format(visitor.__class__.__name__))
|
|
38943
|
+
if self._type == 'channel' and self.channel is not None:
|
|
38944
|
+
return visitor._channel(self.channel)
|
|
38945
|
+
if self._type == 'raw' and self.raw is not None:
|
|
38946
|
+
return visitor._raw(self.raw)
|
|
38947
|
+
|
|
38948
|
+
|
|
38949
|
+
scout_compute_api_Enum1dArraySeries.__name__ = "Enum1dArraySeries"
|
|
38950
|
+
scout_compute_api_Enum1dArraySeries.__qualname__ = "Enum1dArraySeries"
|
|
38951
|
+
scout_compute_api_Enum1dArraySeries.__module__ = "nominal_api.scout_compute_api"
|
|
38952
|
+
|
|
38953
|
+
|
|
38954
|
+
class scout_compute_api_Enum1dArraySeriesVisitor:
|
|
38955
|
+
|
|
38956
|
+
@abstractmethod
|
|
38957
|
+
def _channel(self, channel: "scout_compute_api_ChannelSeries") -> Any:
|
|
38958
|
+
pass
|
|
38959
|
+
|
|
38960
|
+
@abstractmethod
|
|
38961
|
+
def _raw(self, raw: "scout_compute_api_Reference") -> Any:
|
|
38962
|
+
pass
|
|
38963
|
+
|
|
38964
|
+
|
|
38965
|
+
scout_compute_api_Enum1dArraySeriesVisitor.__name__ = "Enum1dArraySeriesVisitor"
|
|
38966
|
+
scout_compute_api_Enum1dArraySeriesVisitor.__qualname__ = "Enum1dArraySeriesVisitor"
|
|
38967
|
+
scout_compute_api_Enum1dArraySeriesVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
38968
|
+
|
|
38969
|
+
|
|
38850
38970
|
class scout_compute_api_EnumAggregationFunction(ConjureEnumType):
|
|
38851
38971
|
|
|
38852
38972
|
MIN = 'MIN'
|
|
@@ -39211,6 +39331,7 @@ class scout_compute_api_EnumSeries(ConjureUnionType):
|
|
|
39211
39331
|
_union: Optional["scout_compute_api_EnumUnionSeries"] = None
|
|
39212
39332
|
_filter_transformation: Optional["scout_compute_api_EnumFilterTransformationSeries"] = None
|
|
39213
39333
|
_value_map: Optional["scout_compute_api_ValueMapSeries"] = None
|
|
39334
|
+
_select1d_array_index: Optional["scout_compute_api_SelectIndexFrom1dEnumArraySeries"] = None
|
|
39214
39335
|
|
|
39215
39336
|
@builtins.classmethod
|
|
39216
39337
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -39224,7 +39345,8 @@ class scout_compute_api_EnumSeries(ConjureUnionType):
|
|
|
39224
39345
|
'time_shift': ConjureFieldDefinition('timeShift', scout_compute_api_EnumTimeShiftSeries),
|
|
39225
39346
|
'union': ConjureFieldDefinition('union', scout_compute_api_EnumUnionSeries),
|
|
39226
39347
|
'filter_transformation': ConjureFieldDefinition('filterTransformation', scout_compute_api_EnumFilterTransformationSeries),
|
|
39227
|
-
'value_map': ConjureFieldDefinition('valueMap', scout_compute_api_ValueMapSeries)
|
|
39348
|
+
'value_map': ConjureFieldDefinition('valueMap', scout_compute_api_ValueMapSeries),
|
|
39349
|
+
'select1d_array_index': ConjureFieldDefinition('select1dArrayIndex', scout_compute_api_SelectIndexFrom1dEnumArraySeries)
|
|
39228
39350
|
}
|
|
39229
39351
|
|
|
39230
39352
|
def __init__(
|
|
@@ -39239,10 +39361,11 @@ class scout_compute_api_EnumSeries(ConjureUnionType):
|
|
|
39239
39361
|
union: Optional["scout_compute_api_EnumUnionSeries"] = None,
|
|
39240
39362
|
filter_transformation: Optional["scout_compute_api_EnumFilterTransformationSeries"] = None,
|
|
39241
39363
|
value_map: Optional["scout_compute_api_ValueMapSeries"] = None,
|
|
39364
|
+
select1d_array_index: Optional["scout_compute_api_SelectIndexFrom1dEnumArraySeries"] = None,
|
|
39242
39365
|
type_of_union: Optional[str] = None
|
|
39243
39366
|
) -> None:
|
|
39244
39367
|
if type_of_union is None:
|
|
39245
|
-
if (aggregate is not None) + (function is not None) + (raw is not None) + (channel is not None) + (resample is not None) + (time_range_filter is not None) + (time_shift is not None) + (union is not None) + (filter_transformation is not None) + (value_map is not None) != 1:
|
|
39368
|
+
if (aggregate is not None) + (function is not None) + (raw is not None) + (channel is not None) + (resample is not None) + (time_range_filter is not None) + (time_shift is not None) + (union is not None) + (filter_transformation is not None) + (value_map is not None) + (select1d_array_index is not None) != 1:
|
|
39246
39369
|
raise ValueError('a union must contain a single member')
|
|
39247
39370
|
|
|
39248
39371
|
if aggregate is not None:
|
|
@@ -39275,6 +39398,9 @@ class scout_compute_api_EnumSeries(ConjureUnionType):
|
|
|
39275
39398
|
if value_map is not None:
|
|
39276
39399
|
self._value_map = value_map
|
|
39277
39400
|
self._type = 'valueMap'
|
|
39401
|
+
if select1d_array_index is not None:
|
|
39402
|
+
self._select1d_array_index = select1d_array_index
|
|
39403
|
+
self._type = 'select1dArrayIndex'
|
|
39278
39404
|
|
|
39279
39405
|
elif type_of_union == 'aggregate':
|
|
39280
39406
|
if aggregate is None:
|
|
@@ -39326,6 +39452,11 @@ class scout_compute_api_EnumSeries(ConjureUnionType):
|
|
|
39326
39452
|
raise ValueError('a union value must not be None')
|
|
39327
39453
|
self._value_map = value_map
|
|
39328
39454
|
self._type = 'valueMap'
|
|
39455
|
+
elif type_of_union == 'select1dArrayIndex':
|
|
39456
|
+
if select1d_array_index is None:
|
|
39457
|
+
raise ValueError('a union value must not be None')
|
|
39458
|
+
self._select1d_array_index = select1d_array_index
|
|
39459
|
+
self._type = 'select1dArrayIndex'
|
|
39329
39460
|
|
|
39330
39461
|
@builtins.property
|
|
39331
39462
|
def aggregate(self) -> Optional["scout_compute_api_AggregateEnumSeries"]:
|
|
@@ -39367,6 +39498,10 @@ class scout_compute_api_EnumSeries(ConjureUnionType):
|
|
|
39367
39498
|
def value_map(self) -> Optional["scout_compute_api_ValueMapSeries"]:
|
|
39368
39499
|
return self._value_map
|
|
39369
39500
|
|
|
39501
|
+
@builtins.property
|
|
39502
|
+
def select1d_array_index(self) -> Optional["scout_compute_api_SelectIndexFrom1dEnumArraySeries"]:
|
|
39503
|
+
return self._select1d_array_index
|
|
39504
|
+
|
|
39370
39505
|
def accept(self, visitor) -> Any:
|
|
39371
39506
|
if not isinstance(visitor, scout_compute_api_EnumSeriesVisitor):
|
|
39372
39507
|
raise ValueError('{} is not an instance of scout_compute_api_EnumSeriesVisitor'.format(visitor.__class__.__name__))
|
|
@@ -39390,6 +39525,8 @@ class scout_compute_api_EnumSeries(ConjureUnionType):
|
|
|
39390
39525
|
return visitor._filter_transformation(self.filter_transformation)
|
|
39391
39526
|
if self._type == 'valueMap' and self.value_map is not None:
|
|
39392
39527
|
return visitor._value_map(self.value_map)
|
|
39528
|
+
if self._type == 'select1dArrayIndex' and self.select1d_array_index is not None:
|
|
39529
|
+
return visitor._select1d_array_index(self.select1d_array_index)
|
|
39393
39530
|
|
|
39394
39531
|
|
|
39395
39532
|
scout_compute_api_EnumSeries.__name__ = "EnumSeries"
|
|
@@ -39439,6 +39576,10 @@ class scout_compute_api_EnumSeriesVisitor:
|
|
|
39439
39576
|
def _value_map(self, value_map: "scout_compute_api_ValueMapSeries") -> Any:
|
|
39440
39577
|
pass
|
|
39441
39578
|
|
|
39579
|
+
@abstractmethod
|
|
39580
|
+
def _select1d_array_index(self, select1d_array_index: "scout_compute_api_SelectIndexFrom1dEnumArraySeries") -> Any:
|
|
39581
|
+
pass
|
|
39582
|
+
|
|
39442
39583
|
|
|
39443
39584
|
scout_compute_api_EnumSeriesVisitor.__name__ = "EnumSeriesVisitor"
|
|
39444
39585
|
scout_compute_api_EnumSeriesVisitor.__qualname__ = "EnumSeriesVisitor"
|
|
@@ -41768,6 +41909,83 @@ scout_compute_api_NotRanges.__qualname__ = "NotRanges"
|
|
|
41768
41909
|
scout_compute_api_NotRanges.__module__ = "nominal_api.scout_compute_api"
|
|
41769
41910
|
|
|
41770
41911
|
|
|
41912
|
+
class scout_compute_api_Numeric1dArraySeries(ConjureUnionType):
|
|
41913
|
+
_channel: Optional["scout_compute_api_ChannelSeries"] = None
|
|
41914
|
+
_raw: Optional["scout_compute_api_Reference"] = None
|
|
41915
|
+
|
|
41916
|
+
@builtins.classmethod
|
|
41917
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
41918
|
+
return {
|
|
41919
|
+
'channel': ConjureFieldDefinition('channel', scout_compute_api_ChannelSeries),
|
|
41920
|
+
'raw': ConjureFieldDefinition('raw', scout_compute_api_Reference)
|
|
41921
|
+
}
|
|
41922
|
+
|
|
41923
|
+
def __init__(
|
|
41924
|
+
self,
|
|
41925
|
+
channel: Optional["scout_compute_api_ChannelSeries"] = None,
|
|
41926
|
+
raw: Optional["scout_compute_api_Reference"] = None,
|
|
41927
|
+
type_of_union: Optional[str] = None
|
|
41928
|
+
) -> None:
|
|
41929
|
+
if type_of_union is None:
|
|
41930
|
+
if (channel is not None) + (raw is not None) != 1:
|
|
41931
|
+
raise ValueError('a union must contain a single member')
|
|
41932
|
+
|
|
41933
|
+
if channel is not None:
|
|
41934
|
+
self._channel = channel
|
|
41935
|
+
self._type = 'channel'
|
|
41936
|
+
if raw is not None:
|
|
41937
|
+
self._raw = raw
|
|
41938
|
+
self._type = 'raw'
|
|
41939
|
+
|
|
41940
|
+
elif type_of_union == 'channel':
|
|
41941
|
+
if channel is None:
|
|
41942
|
+
raise ValueError('a union value must not be None')
|
|
41943
|
+
self._channel = channel
|
|
41944
|
+
self._type = 'channel'
|
|
41945
|
+
elif type_of_union == 'raw':
|
|
41946
|
+
if raw is None:
|
|
41947
|
+
raise ValueError('a union value must not be None')
|
|
41948
|
+
self._raw = raw
|
|
41949
|
+
self._type = 'raw'
|
|
41950
|
+
|
|
41951
|
+
@builtins.property
|
|
41952
|
+
def channel(self) -> Optional["scout_compute_api_ChannelSeries"]:
|
|
41953
|
+
return self._channel
|
|
41954
|
+
|
|
41955
|
+
@builtins.property
|
|
41956
|
+
def raw(self) -> Optional["scout_compute_api_Reference"]:
|
|
41957
|
+
return self._raw
|
|
41958
|
+
|
|
41959
|
+
def accept(self, visitor) -> Any:
|
|
41960
|
+
if not isinstance(visitor, scout_compute_api_Numeric1dArraySeriesVisitor):
|
|
41961
|
+
raise ValueError('{} is not an instance of scout_compute_api_Numeric1dArraySeriesVisitor'.format(visitor.__class__.__name__))
|
|
41962
|
+
if self._type == 'channel' and self.channel is not None:
|
|
41963
|
+
return visitor._channel(self.channel)
|
|
41964
|
+
if self._type == 'raw' and self.raw is not None:
|
|
41965
|
+
return visitor._raw(self.raw)
|
|
41966
|
+
|
|
41967
|
+
|
|
41968
|
+
scout_compute_api_Numeric1dArraySeries.__name__ = "Numeric1dArraySeries"
|
|
41969
|
+
scout_compute_api_Numeric1dArraySeries.__qualname__ = "Numeric1dArraySeries"
|
|
41970
|
+
scout_compute_api_Numeric1dArraySeries.__module__ = "nominal_api.scout_compute_api"
|
|
41971
|
+
|
|
41972
|
+
|
|
41973
|
+
class scout_compute_api_Numeric1dArraySeriesVisitor:
|
|
41974
|
+
|
|
41975
|
+
@abstractmethod
|
|
41976
|
+
def _channel(self, channel: "scout_compute_api_ChannelSeries") -> Any:
|
|
41977
|
+
pass
|
|
41978
|
+
|
|
41979
|
+
@abstractmethod
|
|
41980
|
+
def _raw(self, raw: "scout_compute_api_Reference") -> Any:
|
|
41981
|
+
pass
|
|
41982
|
+
|
|
41983
|
+
|
|
41984
|
+
scout_compute_api_Numeric1dArraySeriesVisitor.__name__ = "Numeric1dArraySeriesVisitor"
|
|
41985
|
+
scout_compute_api_Numeric1dArraySeriesVisitor.__qualname__ = "Numeric1dArraySeriesVisitor"
|
|
41986
|
+
scout_compute_api_Numeric1dArraySeriesVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
41987
|
+
|
|
41988
|
+
|
|
41771
41989
|
class scout_compute_api_NumericAggregationFunction(ConjureEnumType):
|
|
41772
41990
|
|
|
41773
41991
|
SUM = 'SUM'
|
|
@@ -42270,6 +42488,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
42270
42488
|
_filter_transformation: Optional["scout_compute_api_NumericFilterTransformationSeries"] = None
|
|
42271
42489
|
_threshold_filter: Optional["scout_compute_api_NumericThresholdFilterSeries"] = None
|
|
42272
42490
|
_approximate_filter: Optional["scout_compute_api_NumericApproximateFilterSeries"] = None
|
|
42491
|
+
_select1d_array_index: Optional["scout_compute_api_SelectIndexFrom1dNumericArraySeries"] = None
|
|
42273
42492
|
|
|
42274
42493
|
@builtins.classmethod
|
|
42275
42494
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -42304,7 +42523,8 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
42304
42523
|
'value_difference': ConjureFieldDefinition('valueDifference', scout_compute_api_ValueDifferenceSeries),
|
|
42305
42524
|
'filter_transformation': ConjureFieldDefinition('filterTransformation', scout_compute_api_NumericFilterTransformationSeries),
|
|
42306
42525
|
'threshold_filter': ConjureFieldDefinition('thresholdFilter', scout_compute_api_NumericThresholdFilterSeries),
|
|
42307
|
-
'approximate_filter': ConjureFieldDefinition('approximateFilter', scout_compute_api_NumericApproximateFilterSeries)
|
|
42526
|
+
'approximate_filter': ConjureFieldDefinition('approximateFilter', scout_compute_api_NumericApproximateFilterSeries),
|
|
42527
|
+
'select1d_array_index': ConjureFieldDefinition('select1dArrayIndex', scout_compute_api_SelectIndexFrom1dNumericArraySeries)
|
|
42308
42528
|
}
|
|
42309
42529
|
|
|
42310
42530
|
def __init__(
|
|
@@ -42340,10 +42560,11 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
42340
42560
|
filter_transformation: Optional["scout_compute_api_NumericFilterTransformationSeries"] = None,
|
|
42341
42561
|
threshold_filter: Optional["scout_compute_api_NumericThresholdFilterSeries"] = None,
|
|
42342
42562
|
approximate_filter: Optional["scout_compute_api_NumericApproximateFilterSeries"] = None,
|
|
42563
|
+
select1d_array_index: Optional["scout_compute_api_SelectIndexFrom1dNumericArraySeries"] = None,
|
|
42343
42564
|
type_of_union: Optional[str] = None
|
|
42344
42565
|
) -> None:
|
|
42345
42566
|
if type_of_union is None:
|
|
42346
|
-
if (aggregate is not None) + (arithmetic is not None) + (bit_operation is not None) + (count_duplicate is not None) + (cumulative_sum is not None) + (derivative is not None) + (function 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) + (channel is not None) + (resample is not None) + (rolling_operation 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) + (approximate_filter is not None) != 1:
|
|
42567
|
+
if (aggregate is not None) + (arithmetic is not None) + (bit_operation is not None) + (count_duplicate is not None) + (cumulative_sum is not None) + (derivative is not None) + (function 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) + (channel is not None) + (resample is not None) + (rolling_operation 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) + (approximate_filter is not None) + (select1d_array_index is not None) != 1:
|
|
42347
42568
|
raise ValueError('a union must contain a single member')
|
|
42348
42569
|
|
|
42349
42570
|
if aggregate is not None:
|
|
@@ -42439,6 +42660,9 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
42439
42660
|
if approximate_filter is not None:
|
|
42440
42661
|
self._approximate_filter = approximate_filter
|
|
42441
42662
|
self._type = 'approximateFilter'
|
|
42663
|
+
if select1d_array_index is not None:
|
|
42664
|
+
self._select1d_array_index = select1d_array_index
|
|
42665
|
+
self._type = 'select1dArrayIndex'
|
|
42442
42666
|
|
|
42443
42667
|
elif type_of_union == 'aggregate':
|
|
42444
42668
|
if aggregate is None:
|
|
@@ -42595,6 +42819,11 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
42595
42819
|
raise ValueError('a union value must not be None')
|
|
42596
42820
|
self._approximate_filter = approximate_filter
|
|
42597
42821
|
self._type = 'approximateFilter'
|
|
42822
|
+
elif type_of_union == 'select1dArrayIndex':
|
|
42823
|
+
if select1d_array_index is None:
|
|
42824
|
+
raise ValueError('a union value must not be None')
|
|
42825
|
+
self._select1d_array_index = select1d_array_index
|
|
42826
|
+
self._type = 'select1dArrayIndex'
|
|
42598
42827
|
|
|
42599
42828
|
@builtins.property
|
|
42600
42829
|
def aggregate(self) -> Optional["scout_compute_api_AggregateNumericSeries"]:
|
|
@@ -42720,6 +42949,10 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
42720
42949
|
def approximate_filter(self) -> Optional["scout_compute_api_NumericApproximateFilterSeries"]:
|
|
42721
42950
|
return self._approximate_filter
|
|
42722
42951
|
|
|
42952
|
+
@builtins.property
|
|
42953
|
+
def select1d_array_index(self) -> Optional["scout_compute_api_SelectIndexFrom1dNumericArraySeries"]:
|
|
42954
|
+
return self._select1d_array_index
|
|
42955
|
+
|
|
42723
42956
|
def accept(self, visitor) -> Any:
|
|
42724
42957
|
if not isinstance(visitor, scout_compute_api_NumericSeriesVisitor):
|
|
42725
42958
|
raise ValueError('{} is not an instance of scout_compute_api_NumericSeriesVisitor'.format(visitor.__class__.__name__))
|
|
@@ -42785,6 +43018,8 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
42785
43018
|
return visitor._threshold_filter(self.threshold_filter)
|
|
42786
43019
|
if self._type == 'approximateFilter' and self.approximate_filter is not None:
|
|
42787
43020
|
return visitor._approximate_filter(self.approximate_filter)
|
|
43021
|
+
if self._type == 'select1dArrayIndex' and self.select1d_array_index is not None:
|
|
43022
|
+
return visitor._select1d_array_index(self.select1d_array_index)
|
|
42788
43023
|
|
|
42789
43024
|
|
|
42790
43025
|
scout_compute_api_NumericSeries.__name__ = "NumericSeries"
|
|
@@ -42918,6 +43153,10 @@ class scout_compute_api_NumericSeriesVisitor:
|
|
|
42918
43153
|
def _approximate_filter(self, approximate_filter: "scout_compute_api_NumericApproximateFilterSeries") -> Any:
|
|
42919
43154
|
pass
|
|
42920
43155
|
|
|
43156
|
+
@abstractmethod
|
|
43157
|
+
def _select1d_array_index(self, select1d_array_index: "scout_compute_api_SelectIndexFrom1dNumericArraySeries") -> Any:
|
|
43158
|
+
pass
|
|
43159
|
+
|
|
42921
43160
|
|
|
42922
43161
|
scout_compute_api_NumericSeriesVisitor.__name__ = "NumericSeriesVisitor"
|
|
42923
43162
|
scout_compute_api_NumericSeriesVisitor.__qualname__ = "NumericSeriesVisitor"
|
|
@@ -45465,6 +45704,70 @@ scout_compute_api_ScatterSummarizationStrategyVisitor.__qualname__ = "ScatterSum
|
|
|
45465
45704
|
scout_compute_api_ScatterSummarizationStrategyVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
45466
45705
|
|
|
45467
45706
|
|
|
45707
|
+
class scout_compute_api_SelectIndexFrom1dEnumArraySeries(ConjureBeanType):
|
|
45708
|
+
"""For each timestamp, selects a single enum value from the 1D enum array at the specified index. If the index
|
|
45709
|
+
is out of bounds for an array at a given timestamp, it is omitted.
|
|
45710
|
+
"""
|
|
45711
|
+
|
|
45712
|
+
@builtins.classmethod
|
|
45713
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
45714
|
+
return {
|
|
45715
|
+
'input': ConjureFieldDefinition('input', scout_compute_api_Enum1dArraySeries),
|
|
45716
|
+
'index': ConjureFieldDefinition('index', scout_compute_api_IntegerConstant)
|
|
45717
|
+
}
|
|
45718
|
+
|
|
45719
|
+
__slots__: List[str] = ['_input', '_index']
|
|
45720
|
+
|
|
45721
|
+
def __init__(self, index: "scout_compute_api_IntegerConstant", input: "scout_compute_api_Enum1dArraySeries") -> None:
|
|
45722
|
+
self._input = input
|
|
45723
|
+
self._index = index
|
|
45724
|
+
|
|
45725
|
+
@builtins.property
|
|
45726
|
+
def input(self) -> "scout_compute_api_Enum1dArraySeries":
|
|
45727
|
+
return self._input
|
|
45728
|
+
|
|
45729
|
+
@builtins.property
|
|
45730
|
+
def index(self) -> "scout_compute_api_IntegerConstant":
|
|
45731
|
+
return self._index
|
|
45732
|
+
|
|
45733
|
+
|
|
45734
|
+
scout_compute_api_SelectIndexFrom1dEnumArraySeries.__name__ = "SelectIndexFrom1dEnumArraySeries"
|
|
45735
|
+
scout_compute_api_SelectIndexFrom1dEnumArraySeries.__qualname__ = "SelectIndexFrom1dEnumArraySeries"
|
|
45736
|
+
scout_compute_api_SelectIndexFrom1dEnumArraySeries.__module__ = "nominal_api.scout_compute_api"
|
|
45737
|
+
|
|
45738
|
+
|
|
45739
|
+
class scout_compute_api_SelectIndexFrom1dNumericArraySeries(ConjureBeanType):
|
|
45740
|
+
"""For each timestamp, selects a single numeric value from the 1D numeric array at the specified index. If the
|
|
45741
|
+
index is out of bounds for an array at a given timestamp, it is omitted.
|
|
45742
|
+
"""
|
|
45743
|
+
|
|
45744
|
+
@builtins.classmethod
|
|
45745
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
45746
|
+
return {
|
|
45747
|
+
'input': ConjureFieldDefinition('input', scout_compute_api_Numeric1dArraySeries),
|
|
45748
|
+
'index': ConjureFieldDefinition('index', scout_compute_api_IntegerConstant)
|
|
45749
|
+
}
|
|
45750
|
+
|
|
45751
|
+
__slots__: List[str] = ['_input', '_index']
|
|
45752
|
+
|
|
45753
|
+
def __init__(self, index: "scout_compute_api_IntegerConstant", input: "scout_compute_api_Numeric1dArraySeries") -> None:
|
|
45754
|
+
self._input = input
|
|
45755
|
+
self._index = index
|
|
45756
|
+
|
|
45757
|
+
@builtins.property
|
|
45758
|
+
def input(self) -> "scout_compute_api_Numeric1dArraySeries":
|
|
45759
|
+
return self._input
|
|
45760
|
+
|
|
45761
|
+
@builtins.property
|
|
45762
|
+
def index(self) -> "scout_compute_api_IntegerConstant":
|
|
45763
|
+
return self._index
|
|
45764
|
+
|
|
45765
|
+
|
|
45766
|
+
scout_compute_api_SelectIndexFrom1dNumericArraySeries.__name__ = "SelectIndexFrom1dNumericArraySeries"
|
|
45767
|
+
scout_compute_api_SelectIndexFrom1dNumericArraySeries.__qualname__ = "SelectIndexFrom1dNumericArraySeries"
|
|
45768
|
+
scout_compute_api_SelectIndexFrom1dNumericArraySeries.__module__ = "nominal_api.scout_compute_api"
|
|
45769
|
+
|
|
45770
|
+
|
|
45468
45771
|
class scout_compute_api_SelectValue(ConjureUnionType):
|
|
45469
45772
|
_first_point: Optional["scout_compute_api_Series"] = None
|
|
45470
45773
|
_first_range: Optional["scout_compute_api_RangeSeries"] = None
|
|
@@ -50718,6 +51021,62 @@ scout_compute_resolved_api_DurationFilterRangesNode.__qualname__ = "DurationFilt
|
|
|
50718
51021
|
scout_compute_resolved_api_DurationFilterRangesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
50719
51022
|
|
|
50720
51023
|
|
|
51024
|
+
class scout_compute_resolved_api_EnumArraySeriesNode(ConjureUnionType):
|
|
51025
|
+
_raw: Optional["scout_compute_resolved_api_ResolvedSeries"] = None
|
|
51026
|
+
|
|
51027
|
+
@builtins.classmethod
|
|
51028
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
51029
|
+
return {
|
|
51030
|
+
'raw': ConjureFieldDefinition('raw', scout_compute_resolved_api_ResolvedSeries)
|
|
51031
|
+
}
|
|
51032
|
+
|
|
51033
|
+
def __init__(
|
|
51034
|
+
self,
|
|
51035
|
+
raw: Optional["scout_compute_resolved_api_ResolvedSeries"] = None,
|
|
51036
|
+
type_of_union: Optional[str] = None
|
|
51037
|
+
) -> None:
|
|
51038
|
+
if type_of_union is None:
|
|
51039
|
+
if (raw is not None) != 1:
|
|
51040
|
+
raise ValueError('a union must contain a single member')
|
|
51041
|
+
|
|
51042
|
+
if raw is not None:
|
|
51043
|
+
self._raw = raw
|
|
51044
|
+
self._type = 'raw'
|
|
51045
|
+
|
|
51046
|
+
elif type_of_union == 'raw':
|
|
51047
|
+
if raw is None:
|
|
51048
|
+
raise ValueError('a union value must not be None')
|
|
51049
|
+
self._raw = raw
|
|
51050
|
+
self._type = 'raw'
|
|
51051
|
+
|
|
51052
|
+
@builtins.property
|
|
51053
|
+
def raw(self) -> Optional["scout_compute_resolved_api_ResolvedSeries"]:
|
|
51054
|
+
return self._raw
|
|
51055
|
+
|
|
51056
|
+
def accept(self, visitor) -> Any:
|
|
51057
|
+
if not isinstance(visitor, scout_compute_resolved_api_EnumArraySeriesNodeVisitor):
|
|
51058
|
+
raise ValueError('{} is not an instance of scout_compute_resolved_api_EnumArraySeriesNodeVisitor'.format(visitor.__class__.__name__))
|
|
51059
|
+
if self._type == 'raw' and self.raw is not None:
|
|
51060
|
+
return visitor._raw(self.raw)
|
|
51061
|
+
|
|
51062
|
+
|
|
51063
|
+
scout_compute_resolved_api_EnumArraySeriesNode.__name__ = "EnumArraySeriesNode"
|
|
51064
|
+
scout_compute_resolved_api_EnumArraySeriesNode.__qualname__ = "EnumArraySeriesNode"
|
|
51065
|
+
scout_compute_resolved_api_EnumArraySeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
51066
|
+
|
|
51067
|
+
|
|
51068
|
+
class scout_compute_resolved_api_EnumArraySeriesNodeVisitor:
|
|
51069
|
+
|
|
51070
|
+
@abstractmethod
|
|
51071
|
+
def _raw(self, raw: "scout_compute_resolved_api_ResolvedSeries") -> Any:
|
|
51072
|
+
pass
|
|
51073
|
+
|
|
51074
|
+
|
|
51075
|
+
scout_compute_resolved_api_EnumArraySeriesNodeVisitor.__name__ = "EnumArraySeriesNodeVisitor"
|
|
51076
|
+
scout_compute_resolved_api_EnumArraySeriesNodeVisitor.__qualname__ = "EnumArraySeriesNodeVisitor"
|
|
51077
|
+
scout_compute_resolved_api_EnumArraySeriesNodeVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
51078
|
+
|
|
51079
|
+
|
|
50721
51080
|
class scout_compute_resolved_api_EnumCountDuplicateSeriesNode(ConjureBeanType):
|
|
50722
51081
|
|
|
50723
51082
|
@builtins.classmethod
|
|
@@ -50915,6 +51274,7 @@ class scout_compute_resolved_api_EnumSeriesNode(ConjureUnionType):
|
|
|
50915
51274
|
_aggregate: Optional["scout_compute_resolved_api_AggregateEnumSeriesNode"] = None
|
|
50916
51275
|
_filter_transformation: Optional["scout_compute_resolved_api_EnumFilterTransformationSeriesNode"] = None
|
|
50917
51276
|
_value_map: Optional["scout_compute_resolved_api_ValueMapSeriesNode"] = None
|
|
51277
|
+
_array_select: Optional["scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode"] = None
|
|
50918
51278
|
|
|
50919
51279
|
@builtins.classmethod
|
|
50920
51280
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -50926,7 +51286,8 @@ class scout_compute_resolved_api_EnumSeriesNode(ConjureUnionType):
|
|
|
50926
51286
|
'union': ConjureFieldDefinition('union', scout_compute_resolved_api_EnumUnionSeriesNode),
|
|
50927
51287
|
'aggregate': ConjureFieldDefinition('aggregate', scout_compute_resolved_api_AggregateEnumSeriesNode),
|
|
50928
51288
|
'filter_transformation': ConjureFieldDefinition('filterTransformation', scout_compute_resolved_api_EnumFilterTransformationSeriesNode),
|
|
50929
|
-
'value_map': ConjureFieldDefinition('valueMap', scout_compute_resolved_api_ValueMapSeriesNode)
|
|
51289
|
+
'value_map': ConjureFieldDefinition('valueMap', scout_compute_resolved_api_ValueMapSeriesNode),
|
|
51290
|
+
'array_select': ConjureFieldDefinition('arraySelect', scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode)
|
|
50930
51291
|
}
|
|
50931
51292
|
|
|
50932
51293
|
def __init__(
|
|
@@ -50939,10 +51300,11 @@ class scout_compute_resolved_api_EnumSeriesNode(ConjureUnionType):
|
|
|
50939
51300
|
aggregate: Optional["scout_compute_resolved_api_AggregateEnumSeriesNode"] = None,
|
|
50940
51301
|
filter_transformation: Optional["scout_compute_resolved_api_EnumFilterTransformationSeriesNode"] = None,
|
|
50941
51302
|
value_map: Optional["scout_compute_resolved_api_ValueMapSeriesNode"] = None,
|
|
51303
|
+
array_select: Optional["scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode"] = None,
|
|
50942
51304
|
type_of_union: Optional[str] = None
|
|
50943
51305
|
) -> None:
|
|
50944
51306
|
if type_of_union is None:
|
|
50945
|
-
if (raw is not None) + (resample is not None) + (time_range_filter is not None) + (time_shift is not None) + (union is not None) + (aggregate is not None) + (filter_transformation is not None) + (value_map is not None) != 1:
|
|
51307
|
+
if (raw is not None) + (resample is not None) + (time_range_filter is not None) + (time_shift is not None) + (union is not None) + (aggregate is not None) + (filter_transformation is not None) + (value_map is not None) + (array_select is not None) != 1:
|
|
50946
51308
|
raise ValueError('a union must contain a single member')
|
|
50947
51309
|
|
|
50948
51310
|
if raw is not None:
|
|
@@ -50969,6 +51331,9 @@ class scout_compute_resolved_api_EnumSeriesNode(ConjureUnionType):
|
|
|
50969
51331
|
if value_map is not None:
|
|
50970
51332
|
self._value_map = value_map
|
|
50971
51333
|
self._type = 'valueMap'
|
|
51334
|
+
if array_select is not None:
|
|
51335
|
+
self._array_select = array_select
|
|
51336
|
+
self._type = 'arraySelect'
|
|
50972
51337
|
|
|
50973
51338
|
elif type_of_union == 'raw':
|
|
50974
51339
|
if raw is None:
|
|
@@ -51010,6 +51375,11 @@ class scout_compute_resolved_api_EnumSeriesNode(ConjureUnionType):
|
|
|
51010
51375
|
raise ValueError('a union value must not be None')
|
|
51011
51376
|
self._value_map = value_map
|
|
51012
51377
|
self._type = 'valueMap'
|
|
51378
|
+
elif type_of_union == 'arraySelect':
|
|
51379
|
+
if array_select is None:
|
|
51380
|
+
raise ValueError('a union value must not be None')
|
|
51381
|
+
self._array_select = array_select
|
|
51382
|
+
self._type = 'arraySelect'
|
|
51013
51383
|
|
|
51014
51384
|
@builtins.property
|
|
51015
51385
|
def raw(self) -> Optional["scout_compute_resolved_api_RawEnumSeriesNode"]:
|
|
@@ -51043,6 +51413,10 @@ class scout_compute_resolved_api_EnumSeriesNode(ConjureUnionType):
|
|
|
51043
51413
|
def value_map(self) -> Optional["scout_compute_resolved_api_ValueMapSeriesNode"]:
|
|
51044
51414
|
return self._value_map
|
|
51045
51415
|
|
|
51416
|
+
@builtins.property
|
|
51417
|
+
def array_select(self) -> Optional["scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode"]:
|
|
51418
|
+
return self._array_select
|
|
51419
|
+
|
|
51046
51420
|
def accept(self, visitor) -> Any:
|
|
51047
51421
|
if not isinstance(visitor, scout_compute_resolved_api_EnumSeriesNodeVisitor):
|
|
51048
51422
|
raise ValueError('{} is not an instance of scout_compute_resolved_api_EnumSeriesNodeVisitor'.format(visitor.__class__.__name__))
|
|
@@ -51062,6 +51436,8 @@ class scout_compute_resolved_api_EnumSeriesNode(ConjureUnionType):
|
|
|
51062
51436
|
return visitor._filter_transformation(self.filter_transformation)
|
|
51063
51437
|
if self._type == 'valueMap' and self.value_map is not None:
|
|
51064
51438
|
return visitor._value_map(self.value_map)
|
|
51439
|
+
if self._type == 'arraySelect' and self.array_select is not None:
|
|
51440
|
+
return visitor._array_select(self.array_select)
|
|
51065
51441
|
|
|
51066
51442
|
|
|
51067
51443
|
scout_compute_resolved_api_EnumSeriesNode.__name__ = "EnumSeriesNode"
|
|
@@ -51103,6 +51479,10 @@ class scout_compute_resolved_api_EnumSeriesNodeVisitor:
|
|
|
51103
51479
|
def _value_map(self, value_map: "scout_compute_resolved_api_ValueMapSeriesNode") -> Any:
|
|
51104
51480
|
pass
|
|
51105
51481
|
|
|
51482
|
+
@abstractmethod
|
|
51483
|
+
def _array_select(self, array_select: "scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode") -> Any:
|
|
51484
|
+
pass
|
|
51485
|
+
|
|
51106
51486
|
|
|
51107
51487
|
scout_compute_resolved_api_EnumSeriesNodeVisitor.__name__ = "EnumSeriesNodeVisitor"
|
|
51108
51488
|
scout_compute_resolved_api_EnumSeriesNodeVisitor.__qualname__ = "EnumSeriesNodeVisitor"
|
|
@@ -52285,6 +52665,62 @@ scout_compute_resolved_api_NotRangesNode.__qualname__ = "NotRangesNode"
|
|
|
52285
52665
|
scout_compute_resolved_api_NotRangesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
52286
52666
|
|
|
52287
52667
|
|
|
52668
|
+
class scout_compute_resolved_api_NumericArraySeriesNode(ConjureUnionType):
|
|
52669
|
+
_raw: Optional["scout_compute_resolved_api_ResolvedSeries"] = None
|
|
52670
|
+
|
|
52671
|
+
@builtins.classmethod
|
|
52672
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52673
|
+
return {
|
|
52674
|
+
'raw': ConjureFieldDefinition('raw', scout_compute_resolved_api_ResolvedSeries)
|
|
52675
|
+
}
|
|
52676
|
+
|
|
52677
|
+
def __init__(
|
|
52678
|
+
self,
|
|
52679
|
+
raw: Optional["scout_compute_resolved_api_ResolvedSeries"] = None,
|
|
52680
|
+
type_of_union: Optional[str] = None
|
|
52681
|
+
) -> None:
|
|
52682
|
+
if type_of_union is None:
|
|
52683
|
+
if (raw is not None) != 1:
|
|
52684
|
+
raise ValueError('a union must contain a single member')
|
|
52685
|
+
|
|
52686
|
+
if raw is not None:
|
|
52687
|
+
self._raw = raw
|
|
52688
|
+
self._type = 'raw'
|
|
52689
|
+
|
|
52690
|
+
elif type_of_union == 'raw':
|
|
52691
|
+
if raw is None:
|
|
52692
|
+
raise ValueError('a union value must not be None')
|
|
52693
|
+
self._raw = raw
|
|
52694
|
+
self._type = 'raw'
|
|
52695
|
+
|
|
52696
|
+
@builtins.property
|
|
52697
|
+
def raw(self) -> Optional["scout_compute_resolved_api_ResolvedSeries"]:
|
|
52698
|
+
return self._raw
|
|
52699
|
+
|
|
52700
|
+
def accept(self, visitor) -> Any:
|
|
52701
|
+
if not isinstance(visitor, scout_compute_resolved_api_NumericArraySeriesNodeVisitor):
|
|
52702
|
+
raise ValueError('{} is not an instance of scout_compute_resolved_api_NumericArraySeriesNodeVisitor'.format(visitor.__class__.__name__))
|
|
52703
|
+
if self._type == 'raw' and self.raw is not None:
|
|
52704
|
+
return visitor._raw(self.raw)
|
|
52705
|
+
|
|
52706
|
+
|
|
52707
|
+
scout_compute_resolved_api_NumericArraySeriesNode.__name__ = "NumericArraySeriesNode"
|
|
52708
|
+
scout_compute_resolved_api_NumericArraySeriesNode.__qualname__ = "NumericArraySeriesNode"
|
|
52709
|
+
scout_compute_resolved_api_NumericArraySeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
52710
|
+
|
|
52711
|
+
|
|
52712
|
+
class scout_compute_resolved_api_NumericArraySeriesNodeVisitor:
|
|
52713
|
+
|
|
52714
|
+
@abstractmethod
|
|
52715
|
+
def _raw(self, raw: "scout_compute_resolved_api_ResolvedSeries") -> Any:
|
|
52716
|
+
pass
|
|
52717
|
+
|
|
52718
|
+
|
|
52719
|
+
scout_compute_resolved_api_NumericArraySeriesNodeVisitor.__name__ = "NumericArraySeriesNodeVisitor"
|
|
52720
|
+
scout_compute_resolved_api_NumericArraySeriesNodeVisitor.__qualname__ = "NumericArraySeriesNodeVisitor"
|
|
52721
|
+
scout_compute_resolved_api_NumericArraySeriesNodeVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
52722
|
+
|
|
52723
|
+
|
|
52288
52724
|
class scout_compute_resolved_api_NumericFilterTransformationSeriesNode(ConjureBeanType):
|
|
52289
52725
|
"""Outputs the values of the numeric plot value within the ranges specified by a ranges node
|
|
52290
52726
|
"""
|
|
@@ -52508,6 +52944,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
52508
52944
|
_unit_conversion: Optional["scout_compute_resolved_api_UnitConversionSeriesNode"] = None
|
|
52509
52945
|
_value_difference: Optional["scout_compute_resolved_api_ValueDifferenceSeriesNode"] = None
|
|
52510
52946
|
_filter_transformation: Optional["scout_compute_resolved_api_NumericFilterTransformationSeriesNode"] = None
|
|
52947
|
+
_array_select: Optional["scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode"] = None
|
|
52511
52948
|
|
|
52512
52949
|
@builtins.classmethod
|
|
52513
52950
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -52538,7 +52975,8 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
52538
52975
|
'union': ConjureFieldDefinition('union', scout_compute_resolved_api_NumericUnionSeriesNode),
|
|
52539
52976
|
'unit_conversion': ConjureFieldDefinition('unitConversion', scout_compute_resolved_api_UnitConversionSeriesNode),
|
|
52540
52977
|
'value_difference': ConjureFieldDefinition('valueDifference', scout_compute_resolved_api_ValueDifferenceSeriesNode),
|
|
52541
|
-
'filter_transformation': ConjureFieldDefinition('filterTransformation', scout_compute_resolved_api_NumericFilterTransformationSeriesNode)
|
|
52978
|
+
'filter_transformation': ConjureFieldDefinition('filterTransformation', scout_compute_resolved_api_NumericFilterTransformationSeriesNode),
|
|
52979
|
+
'array_select': ConjureFieldDefinition('arraySelect', scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode)
|
|
52542
52980
|
}
|
|
52543
52981
|
|
|
52544
52982
|
def __init__(
|
|
@@ -52570,10 +53008,11 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
52570
53008
|
unit_conversion: Optional["scout_compute_resolved_api_UnitConversionSeriesNode"] = None,
|
|
52571
53009
|
value_difference: Optional["scout_compute_resolved_api_ValueDifferenceSeriesNode"] = None,
|
|
52572
53010
|
filter_transformation: Optional["scout_compute_resolved_api_NumericFilterTransformationSeriesNode"] = None,
|
|
53011
|
+
array_select: Optional["scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode"] = None,
|
|
52573
53012
|
type_of_union: Optional[str] = None
|
|
52574
53013
|
) -> None:
|
|
52575
53014
|
if type_of_union is None:
|
|
52576
|
-
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) != 1:
|
|
53015
|
+
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) != 1:
|
|
52577
53016
|
raise ValueError('a union must contain a single member')
|
|
52578
53017
|
|
|
52579
53018
|
if arithmetic is not None:
|
|
@@ -52657,6 +53096,9 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
52657
53096
|
if filter_transformation is not None:
|
|
52658
53097
|
self._filter_transformation = filter_transformation
|
|
52659
53098
|
self._type = 'filterTransformation'
|
|
53099
|
+
if array_select is not None:
|
|
53100
|
+
self._array_select = array_select
|
|
53101
|
+
self._type = 'arraySelect'
|
|
52660
53102
|
|
|
52661
53103
|
elif type_of_union == 'arithmetic':
|
|
52662
53104
|
if arithmetic is None:
|
|
@@ -52793,6 +53235,11 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
52793
53235
|
raise ValueError('a union value must not be None')
|
|
52794
53236
|
self._filter_transformation = filter_transformation
|
|
52795
53237
|
self._type = 'filterTransformation'
|
|
53238
|
+
elif type_of_union == 'arraySelect':
|
|
53239
|
+
if array_select is None:
|
|
53240
|
+
raise ValueError('a union value must not be None')
|
|
53241
|
+
self._array_select = array_select
|
|
53242
|
+
self._type = 'arraySelect'
|
|
52796
53243
|
|
|
52797
53244
|
@builtins.property
|
|
52798
53245
|
def arithmetic(self) -> Optional["scout_compute_resolved_api_ArithmeticSeriesNode"]:
|
|
@@ -52902,6 +53349,10 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
52902
53349
|
def filter_transformation(self) -> Optional["scout_compute_resolved_api_NumericFilterTransformationSeriesNode"]:
|
|
52903
53350
|
return self._filter_transformation
|
|
52904
53351
|
|
|
53352
|
+
@builtins.property
|
|
53353
|
+
def array_select(self) -> Optional["scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode"]:
|
|
53354
|
+
return self._array_select
|
|
53355
|
+
|
|
52905
53356
|
def accept(self, visitor) -> Any:
|
|
52906
53357
|
if not isinstance(visitor, scout_compute_resolved_api_NumericSeriesNodeVisitor):
|
|
52907
53358
|
raise ValueError('{} is not an instance of scout_compute_resolved_api_NumericSeriesNodeVisitor'.format(visitor.__class__.__name__))
|
|
@@ -52959,6 +53410,8 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
52959
53410
|
return visitor._value_difference(self.value_difference)
|
|
52960
53411
|
if self._type == 'filterTransformation' and self.filter_transformation is not None:
|
|
52961
53412
|
return visitor._filter_transformation(self.filter_transformation)
|
|
53413
|
+
if self._type == 'arraySelect' and self.array_select is not None:
|
|
53414
|
+
return visitor._array_select(self.array_select)
|
|
52962
53415
|
|
|
52963
53416
|
|
|
52964
53417
|
scout_compute_resolved_api_NumericSeriesNode.__name__ = "NumericSeriesNode"
|
|
@@ -53076,6 +53529,10 @@ class scout_compute_resolved_api_NumericSeriesNodeVisitor:
|
|
|
53076
53529
|
def _filter_transformation(self, filter_transformation: "scout_compute_resolved_api_NumericFilterTransformationSeriesNode") -> Any:
|
|
53077
53530
|
pass
|
|
53078
53531
|
|
|
53532
|
+
@abstractmethod
|
|
53533
|
+
def _array_select(self, array_select: "scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode") -> Any:
|
|
53534
|
+
pass
|
|
53535
|
+
|
|
53079
53536
|
|
|
53080
53537
|
scout_compute_resolved_api_NumericSeriesNodeVisitor.__name__ = "NumericSeriesNodeVisitor"
|
|
53081
53538
|
scout_compute_resolved_api_NumericSeriesNodeVisitor.__qualname__ = "NumericSeriesNodeVisitor"
|
|
@@ -54431,6 +54888,64 @@ scout_compute_resolved_api_ScatterNode.__qualname__ = "ScatterNode"
|
|
|
54431
54888
|
scout_compute_resolved_api_ScatterNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
54432
54889
|
|
|
54433
54890
|
|
|
54891
|
+
class scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode(ConjureBeanType):
|
|
54892
|
+
|
|
54893
|
+
@builtins.classmethod
|
|
54894
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
54895
|
+
return {
|
|
54896
|
+
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_EnumArraySeriesNode),
|
|
54897
|
+
'index': ConjureFieldDefinition('index', int)
|
|
54898
|
+
}
|
|
54899
|
+
|
|
54900
|
+
__slots__: List[str] = ['_input', '_index']
|
|
54901
|
+
|
|
54902
|
+
def __init__(self, index: int, input: "scout_compute_resolved_api_EnumArraySeriesNode") -> None:
|
|
54903
|
+
self._input = input
|
|
54904
|
+
self._index = index
|
|
54905
|
+
|
|
54906
|
+
@builtins.property
|
|
54907
|
+
def input(self) -> "scout_compute_resolved_api_EnumArraySeriesNode":
|
|
54908
|
+
return self._input
|
|
54909
|
+
|
|
54910
|
+
@builtins.property
|
|
54911
|
+
def index(self) -> int:
|
|
54912
|
+
return self._index
|
|
54913
|
+
|
|
54914
|
+
|
|
54915
|
+
scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode.__name__ = "SelectIndexFromEnumArraySeriesNode"
|
|
54916
|
+
scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode.__qualname__ = "SelectIndexFromEnumArraySeriesNode"
|
|
54917
|
+
scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
54918
|
+
|
|
54919
|
+
|
|
54920
|
+
class scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode(ConjureBeanType):
|
|
54921
|
+
|
|
54922
|
+
@builtins.classmethod
|
|
54923
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
54924
|
+
return {
|
|
54925
|
+
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_NumericArraySeriesNode),
|
|
54926
|
+
'index': ConjureFieldDefinition('index', int)
|
|
54927
|
+
}
|
|
54928
|
+
|
|
54929
|
+
__slots__: List[str] = ['_input', '_index']
|
|
54930
|
+
|
|
54931
|
+
def __init__(self, index: int, input: "scout_compute_resolved_api_NumericArraySeriesNode") -> None:
|
|
54932
|
+
self._input = input
|
|
54933
|
+
self._index = index
|
|
54934
|
+
|
|
54935
|
+
@builtins.property
|
|
54936
|
+
def input(self) -> "scout_compute_resolved_api_NumericArraySeriesNode":
|
|
54937
|
+
return self._input
|
|
54938
|
+
|
|
54939
|
+
@builtins.property
|
|
54940
|
+
def index(self) -> int:
|
|
54941
|
+
return self._index
|
|
54942
|
+
|
|
54943
|
+
|
|
54944
|
+
scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode.__name__ = "SelectIndexFromNumericArraySeriesNode"
|
|
54945
|
+
scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode.__qualname__ = "SelectIndexFromNumericArraySeriesNode"
|
|
54946
|
+
scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
54947
|
+
|
|
54948
|
+
|
|
54434
54949
|
class scout_compute_resolved_api_SelectValueNode(ConjureUnionType):
|
|
54435
54950
|
_first_point: Optional["scout_compute_resolved_api_SeriesNode"] = None
|
|
54436
54951
|
_first_range: Optional["scout_compute_resolved_api_RangesNode"] = None
|
|
@@ -87,6 +87,8 @@ from .._impl import (
|
|
|
87
87
|
scout_compute_api_DurationConstant as DurationConstant,
|
|
88
88
|
scout_compute_api_DurationConstantVisitor as DurationConstantVisitor,
|
|
89
89
|
scout_compute_api_DurationFilterRanges as DurationFilterRanges,
|
|
90
|
+
scout_compute_api_Enum1dArraySeries as Enum1dArraySeries,
|
|
91
|
+
scout_compute_api_Enum1dArraySeriesVisitor as Enum1dArraySeriesVisitor,
|
|
90
92
|
scout_compute_api_EnumAggregationFunction as EnumAggregationFunction,
|
|
91
93
|
scout_compute_api_EnumBucket as EnumBucket,
|
|
92
94
|
scout_compute_api_EnumCountDuplicateSeries as EnumCountDuplicateSeries,
|
|
@@ -180,6 +182,8 @@ from .._impl import (
|
|
|
180
182
|
scout_compute_api_NegativeValueConfiguration as NegativeValueConfiguration,
|
|
181
183
|
scout_compute_api_NegativeValueConfigurationVisitor as NegativeValueConfigurationVisitor,
|
|
182
184
|
scout_compute_api_NotRanges as NotRanges,
|
|
185
|
+
scout_compute_api_Numeric1dArraySeries as Numeric1dArraySeries,
|
|
186
|
+
scout_compute_api_Numeric1dArraySeriesVisitor as Numeric1dArraySeriesVisitor,
|
|
183
187
|
scout_compute_api_NumericAggregationFunction as NumericAggregationFunction,
|
|
184
188
|
scout_compute_api_NumericApproximateFilterSeries as NumericApproximateFilterSeries,
|
|
185
189
|
scout_compute_api_NumericBucket as NumericBucket,
|
|
@@ -253,6 +257,8 @@ from .._impl import (
|
|
|
253
257
|
scout_compute_api_ScatterFitOptions as ScatterFitOptions,
|
|
254
258
|
scout_compute_api_ScatterSummarizationStrategy as ScatterSummarizationStrategy,
|
|
255
259
|
scout_compute_api_ScatterSummarizationStrategyVisitor as ScatterSummarizationStrategyVisitor,
|
|
260
|
+
scout_compute_api_SelectIndexFrom1dEnumArraySeries as SelectIndexFrom1dEnumArraySeries,
|
|
261
|
+
scout_compute_api_SelectIndexFrom1dNumericArraySeries as SelectIndexFrom1dNumericArraySeries,
|
|
256
262
|
scout_compute_api_SelectValue as SelectValue,
|
|
257
263
|
scout_compute_api_SelectValueVisitor as SelectValueVisitor,
|
|
258
264
|
scout_compute_api_Series as Series,
|
|
@@ -400,6 +406,8 @@ __all__ = [
|
|
|
400
406
|
'DurationConstant',
|
|
401
407
|
'DurationConstantVisitor',
|
|
402
408
|
'DurationFilterRanges',
|
|
409
|
+
'Enum1dArraySeries',
|
|
410
|
+
'Enum1dArraySeriesVisitor',
|
|
403
411
|
'EnumAggregationFunction',
|
|
404
412
|
'EnumBucket',
|
|
405
413
|
'EnumCountDuplicateSeries',
|
|
@@ -493,6 +501,8 @@ __all__ = [
|
|
|
493
501
|
'NegativeValueConfiguration',
|
|
494
502
|
'NegativeValueConfigurationVisitor',
|
|
495
503
|
'NotRanges',
|
|
504
|
+
'Numeric1dArraySeries',
|
|
505
|
+
'Numeric1dArraySeriesVisitor',
|
|
496
506
|
'NumericAggregationFunction',
|
|
497
507
|
'NumericApproximateFilterSeries',
|
|
498
508
|
'NumericBucket',
|
|
@@ -566,6 +576,8 @@ __all__ = [
|
|
|
566
576
|
'ScatterFitOptions',
|
|
567
577
|
'ScatterSummarizationStrategy',
|
|
568
578
|
'ScatterSummarizationStrategyVisitor',
|
|
579
|
+
'SelectIndexFrom1dEnumArraySeries',
|
|
580
|
+
'SelectIndexFrom1dNumericArraySeries',
|
|
569
581
|
'SelectValue',
|
|
570
582
|
'SelectValueVisitor',
|
|
571
583
|
'Series',
|
|
@@ -25,6 +25,8 @@ from .._impl import (
|
|
|
25
25
|
scout_compute_resolved_api_CurveFitPlotTypeNodeVisitor as CurveFitPlotTypeNodeVisitor,
|
|
26
26
|
scout_compute_resolved_api_DerivativeSeriesNode as DerivativeSeriesNode,
|
|
27
27
|
scout_compute_resolved_api_DurationFilterRangesNode as DurationFilterRangesNode,
|
|
28
|
+
scout_compute_resolved_api_EnumArraySeriesNode as EnumArraySeriesNode,
|
|
29
|
+
scout_compute_resolved_api_EnumArraySeriesNodeVisitor as EnumArraySeriesNodeVisitor,
|
|
28
30
|
scout_compute_resolved_api_EnumCountDuplicateSeriesNode as EnumCountDuplicateSeriesNode,
|
|
29
31
|
scout_compute_resolved_api_EnumEqualityRangesNode as EnumEqualityRangesNode,
|
|
30
32
|
scout_compute_resolved_api_EnumFilterRangesNode as EnumFilterRangesNode,
|
|
@@ -72,6 +74,8 @@ from .._impl import (
|
|
|
72
74
|
scout_compute_resolved_api_MinSeriesNode as MinSeriesNode,
|
|
73
75
|
scout_compute_resolved_api_NominalStorageLocator as NominalStorageLocator,
|
|
74
76
|
scout_compute_resolved_api_NotRangesNode as NotRangesNode,
|
|
77
|
+
scout_compute_resolved_api_NumericArraySeriesNode as NumericArraySeriesNode,
|
|
78
|
+
scout_compute_resolved_api_NumericArraySeriesNodeVisitor as NumericArraySeriesNodeVisitor,
|
|
75
79
|
scout_compute_resolved_api_NumericFilterTransformationSeriesNode as NumericFilterTransformationSeriesNode,
|
|
76
80
|
scout_compute_resolved_api_NumericHistogramBucketStrategy as NumericHistogramBucketStrategy,
|
|
77
81
|
scout_compute_resolved_api_NumericHistogramBucketStrategyVisitor as NumericHistogramBucketStrategyVisitor,
|
|
@@ -110,6 +114,8 @@ from .._impl import (
|
|
|
110
114
|
scout_compute_resolved_api_ScatterCurveFitNode as ScatterCurveFitNode,
|
|
111
115
|
scout_compute_resolved_api_ScatterFitOptions as ScatterFitOptions,
|
|
112
116
|
scout_compute_resolved_api_ScatterNode as ScatterNode,
|
|
117
|
+
scout_compute_resolved_api_SelectIndexFromEnumArraySeriesNode as SelectIndexFromEnumArraySeriesNode,
|
|
118
|
+
scout_compute_resolved_api_SelectIndexFromNumericArraySeriesNode as SelectIndexFromNumericArraySeriesNode,
|
|
113
119
|
scout_compute_resolved_api_SelectValueNode as SelectValueNode,
|
|
114
120
|
scout_compute_resolved_api_SelectValueNodeVisitor as SelectValueNodeVisitor,
|
|
115
121
|
scout_compute_resolved_api_SeriesCrossoverRangesNode as SeriesCrossoverRangesNode,
|
|
@@ -168,6 +174,8 @@ __all__ = [
|
|
|
168
174
|
'CurveFitPlotTypeNodeVisitor',
|
|
169
175
|
'DerivativeSeriesNode',
|
|
170
176
|
'DurationFilterRangesNode',
|
|
177
|
+
'EnumArraySeriesNode',
|
|
178
|
+
'EnumArraySeriesNodeVisitor',
|
|
171
179
|
'EnumCountDuplicateSeriesNode',
|
|
172
180
|
'EnumEqualityRangesNode',
|
|
173
181
|
'EnumFilterRangesNode',
|
|
@@ -215,6 +223,8 @@ __all__ = [
|
|
|
215
223
|
'MinSeriesNode',
|
|
216
224
|
'NominalStorageLocator',
|
|
217
225
|
'NotRangesNode',
|
|
226
|
+
'NumericArraySeriesNode',
|
|
227
|
+
'NumericArraySeriesNodeVisitor',
|
|
218
228
|
'NumericFilterTransformationSeriesNode',
|
|
219
229
|
'NumericHistogramBucketStrategy',
|
|
220
230
|
'NumericHistogramBucketStrategyVisitor',
|
|
@@ -253,6 +263,8 @@ __all__ = [
|
|
|
253
263
|
'ScatterCurveFitNode',
|
|
254
264
|
'ScatterFitOptions',
|
|
255
265
|
'ScatterNode',
|
|
266
|
+
'SelectIndexFromEnumArraySeriesNode',
|
|
267
|
+
'SelectIndexFromNumericArraySeriesNode',
|
|
256
268
|
'SelectValueNode',
|
|
257
269
|
'SelectValueNodeVisitor',
|
|
258
270
|
'SeriesCrossoverRangesNode',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=vFARSDv_dz0jxCo5UvbBe7j9-oxFTqmKnM84xgqTG-0,1956
|
|
2
|
+
nominal_api/_impl.py,sha256=8cO1Y_FxLa5LSfJ1Kj65llW7iN56WK0AKAoUKGY6G-0,3284897
|
|
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
|
|
@@ -30,9 +30,9 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHr
|
|
|
30
30
|
nominal_api/scout_checks_api/__init__.py,sha256=sxTv9ZL2rnXCaR7wVRNafqIPIzBbIPDGiJdYAr-VSV0,7317
|
|
31
31
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=RpTvc8WqNxOuDSXWs-xV3MSSFIoIy8Fj3eaIDCVygvU,6215
|
|
32
32
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
|
33
|
-
nominal_api/scout_compute_api/__init__.py,sha256=
|
|
33
|
+
nominal_api/scout_compute_api/__init__.py,sha256=D4nmK7psjwKnsNrOJ5UnTD3yrUVS6_ZppGht77LT-zI,28714
|
|
34
34
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
|
35
|
-
nominal_api/scout_compute_resolved_api/__init__.py,sha256=
|
|
35
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=lmFIeizsp3CjOdAUlmo1P_7m3UJhVxU7K_T0m8gT03I,15625
|
|
36
36
|
nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
|
|
37
37
|
nominal_api/scout_datareview_api/__init__.py,sha256=kTDvcuav5bBm3IPhvmDrBTYyVD26iQVkyzdZnu75omE,11695
|
|
38
38
|
nominal_api/scout_datasource/__init__.py,sha256=Z1Msu1Daf8GlLuM3w5imyB-6DhTNZojxI6xpH1sSvhM,141
|
|
@@ -72,7 +72,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
|
72
72
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
73
73
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
|
74
74
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
75
|
-
nominal_api-0.
|
|
76
|
-
nominal_api-0.
|
|
77
|
-
nominal_api-0.
|
|
78
|
-
nominal_api-0.
|
|
75
|
+
nominal_api-0.719.0.dist-info/METADATA,sha256=PL_fA6LmWVyMVs6SKI_Kam6CDwZATnp0EJLc0zsYM2U,199
|
|
76
|
+
nominal_api-0.719.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
77
|
+
nominal_api-0.719.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
78
|
+
nominal_api-0.719.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|