nominal-api 0.606.1__py3-none-any.whl → 0.608.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 +486 -301
- nominal_api/ingest_api/__init__.py +1 -0
- nominal_api/scout_checklistexecution_api/__init__.py +9 -6
- {nominal_api-0.606.1.dist-info → nominal_api-0.608.0.dist-info}/METADATA +1 -1
- {nominal_api-0.606.1.dist-info → nominal_api-0.608.0.dist-info}/RECORD +8 -8
- {nominal_api-0.606.1.dist-info → nominal_api-0.608.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.606.1.dist-info → nominal_api-0.608.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -6588,6 +6588,9 @@ ingest_api_CompleteMultipartUploadResponse.__module__ = "nominal_api.ingest_api"
|
|
|
6588
6588
|
|
|
6589
6589
|
|
|
6590
6590
|
class ingest_api_CsvOpts(ConjureBeanType):
|
|
6591
|
+
"""
|
|
6592
|
+
Options for ingesting csv files. Supported file formats include .csv, .csv.gz
|
|
6593
|
+
"""
|
|
6591
6594
|
|
|
6592
6595
|
@builtins.classmethod
|
|
6593
6596
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -7538,6 +7541,7 @@ class ingest_api_IngestOptions(ConjureUnionType):
|
|
|
7538
7541
|
_mcap_protobuf_timeseries: Optional["ingest_api_McapProtobufTimeseriesOpts"] = None
|
|
7539
7542
|
_journal_json: Optional["ingest_api_JournalJsonOpts"] = None
|
|
7540
7543
|
_csv: Optional["ingest_api_CsvOpts"] = None
|
|
7544
|
+
_parquet: Optional["ingest_api_ParquetOpts"] = None
|
|
7541
7545
|
_video: Optional["ingest_api_VideoOpts"] = None
|
|
7542
7546
|
_custom: Optional["ingest_api_CustomOpts"] = None
|
|
7543
7547
|
|
|
@@ -7548,6 +7552,7 @@ class ingest_api_IngestOptions(ConjureUnionType):
|
|
|
7548
7552
|
'mcap_protobuf_timeseries': ConjureFieldDefinition('mcapProtobufTimeseries', ingest_api_McapProtobufTimeseriesOpts),
|
|
7549
7553
|
'journal_json': ConjureFieldDefinition('journalJson', ingest_api_JournalJsonOpts),
|
|
7550
7554
|
'csv': ConjureFieldDefinition('csv', ingest_api_CsvOpts),
|
|
7555
|
+
'parquet': ConjureFieldDefinition('parquet', ingest_api_ParquetOpts),
|
|
7551
7556
|
'video': ConjureFieldDefinition('video', ingest_api_VideoOpts),
|
|
7552
7557
|
'custom': ConjureFieldDefinition('custom', ingest_api_CustomOpts)
|
|
7553
7558
|
}
|
|
@@ -7558,12 +7563,13 @@ class ingest_api_IngestOptions(ConjureUnionType):
|
|
|
7558
7563
|
mcap_protobuf_timeseries: Optional["ingest_api_McapProtobufTimeseriesOpts"] = None,
|
|
7559
7564
|
journal_json: Optional["ingest_api_JournalJsonOpts"] = None,
|
|
7560
7565
|
csv: Optional["ingest_api_CsvOpts"] = None,
|
|
7566
|
+
parquet: Optional["ingest_api_ParquetOpts"] = None,
|
|
7561
7567
|
video: Optional["ingest_api_VideoOpts"] = None,
|
|
7562
7568
|
custom: Optional["ingest_api_CustomOpts"] = None,
|
|
7563
7569
|
type_of_union: Optional[str] = None
|
|
7564
7570
|
) -> None:
|
|
7565
7571
|
if type_of_union is None:
|
|
7566
|
-
if (dataflash is not None) + (mcap_protobuf_timeseries is not None) + (journal_json is not None) + (csv is not None) + (video is not None) + (custom is not None) != 1:
|
|
7572
|
+
if (dataflash is not None) + (mcap_protobuf_timeseries is not None) + (journal_json is not None) + (csv is not None) + (parquet is not None) + (video is not None) + (custom is not None) != 1:
|
|
7567
7573
|
raise ValueError('a union must contain a single member')
|
|
7568
7574
|
|
|
7569
7575
|
if dataflash is not None:
|
|
@@ -7578,6 +7584,9 @@ class ingest_api_IngestOptions(ConjureUnionType):
|
|
|
7578
7584
|
if csv is not None:
|
|
7579
7585
|
self._csv = csv
|
|
7580
7586
|
self._type = 'csv'
|
|
7587
|
+
if parquet is not None:
|
|
7588
|
+
self._parquet = parquet
|
|
7589
|
+
self._type = 'parquet'
|
|
7581
7590
|
if video is not None:
|
|
7582
7591
|
self._video = video
|
|
7583
7592
|
self._type = 'video'
|
|
@@ -7605,6 +7614,11 @@ class ingest_api_IngestOptions(ConjureUnionType):
|
|
|
7605
7614
|
raise ValueError('a union value must not be None')
|
|
7606
7615
|
self._csv = csv
|
|
7607
7616
|
self._type = 'csv'
|
|
7617
|
+
elif type_of_union == 'parquet':
|
|
7618
|
+
if parquet is None:
|
|
7619
|
+
raise ValueError('a union value must not be None')
|
|
7620
|
+
self._parquet = parquet
|
|
7621
|
+
self._type = 'parquet'
|
|
7608
7622
|
elif type_of_union == 'video':
|
|
7609
7623
|
if video is None:
|
|
7610
7624
|
raise ValueError('a union value must not be None')
|
|
@@ -7632,6 +7646,10 @@ class ingest_api_IngestOptions(ConjureUnionType):
|
|
|
7632
7646
|
def csv(self) -> Optional["ingest_api_CsvOpts"]:
|
|
7633
7647
|
return self._csv
|
|
7634
7648
|
|
|
7649
|
+
@builtins.property
|
|
7650
|
+
def parquet(self) -> Optional["ingest_api_ParquetOpts"]:
|
|
7651
|
+
return self._parquet
|
|
7652
|
+
|
|
7635
7653
|
@builtins.property
|
|
7636
7654
|
def video(self) -> Optional["ingest_api_VideoOpts"]:
|
|
7637
7655
|
return self._video
|
|
@@ -7651,6 +7669,8 @@ class ingest_api_IngestOptions(ConjureUnionType):
|
|
|
7651
7669
|
return visitor._journal_json(self.journal_json)
|
|
7652
7670
|
if self._type == 'csv' and self.csv is not None:
|
|
7653
7671
|
return visitor._csv(self.csv)
|
|
7672
|
+
if self._type == 'parquet' and self.parquet is not None:
|
|
7673
|
+
return visitor._parquet(self.parquet)
|
|
7654
7674
|
if self._type == 'video' and self.video is not None:
|
|
7655
7675
|
return visitor._video(self.video)
|
|
7656
7676
|
if self._type == 'custom' and self.custom is not None:
|
|
@@ -7680,6 +7700,10 @@ class ingest_api_IngestOptionsVisitor:
|
|
|
7680
7700
|
def _csv(self, csv: "ingest_api_CsvOpts") -> Any:
|
|
7681
7701
|
pass
|
|
7682
7702
|
|
|
7703
|
+
@abstractmethod
|
|
7704
|
+
def _parquet(self, parquet: "ingest_api_ParquetOpts") -> Any:
|
|
7705
|
+
pass
|
|
7706
|
+
|
|
7683
7707
|
@abstractmethod
|
|
7684
7708
|
def _video(self, video: "ingest_api_VideoOpts") -> Any:
|
|
7685
7709
|
pass
|
|
@@ -9309,6 +9333,75 @@ ingest_api_NoTimestampManifest.__qualname__ = "NoTimestampManifest"
|
|
|
9309
9333
|
ingest_api_NoTimestampManifest.__module__ = "nominal_api.ingest_api"
|
|
9310
9334
|
|
|
9311
9335
|
|
|
9336
|
+
class ingest_api_ParquetOpts(ConjureBeanType):
|
|
9337
|
+
"""
|
|
9338
|
+
Options for ingesting parquet files.
|
|
9339
|
+
Supported file formats include .parquet, .parquet.gz
|
|
9340
|
+
and archives such as .tar, .tar.gz, and .zip (must set the isArchive flag).
|
|
9341
|
+
"""
|
|
9342
|
+
|
|
9343
|
+
@builtins.classmethod
|
|
9344
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
9345
|
+
return {
|
|
9346
|
+
'source': ConjureFieldDefinition('source', ingest_api_IngestSource),
|
|
9347
|
+
'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget),
|
|
9348
|
+
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata),
|
|
9349
|
+
'channel_prefix': ConjureFieldDefinition('channelPrefix', ingest_api_ChannelPrefix),
|
|
9350
|
+
'tag_keys_from_columns': ConjureFieldDefinition('tagKeysFromColumns', OptionalTypeWrapper[List[api_TagName]]),
|
|
9351
|
+
'additional_file_tags': ConjureFieldDefinition('additionalFileTags', OptionalTypeWrapper[Dict[api_TagName, api_TagValue]]),
|
|
9352
|
+
'is_archive': ConjureFieldDefinition('isArchive', OptionalTypeWrapper[bool])
|
|
9353
|
+
}
|
|
9354
|
+
|
|
9355
|
+
__slots__: List[str] = ['_source', '_target', '_timestamp_metadata', '_channel_prefix', '_tag_keys_from_columns', '_additional_file_tags', '_is_archive']
|
|
9356
|
+
|
|
9357
|
+
def __init__(self, source: "ingest_api_IngestSource", target: "ingest_api_DatasetIngestTarget", timestamp_metadata: "ingest_api_TimestampMetadata", additional_file_tags: Optional[Dict[str, str]] = None, channel_prefix: Optional[str] = None, is_archive: Optional[bool] = None, tag_keys_from_columns: Optional[List[str]] = None) -> None:
|
|
9358
|
+
self._source = source
|
|
9359
|
+
self._target = target
|
|
9360
|
+
self._timestamp_metadata = timestamp_metadata
|
|
9361
|
+
self._channel_prefix = channel_prefix
|
|
9362
|
+
self._tag_keys_from_columns = tag_keys_from_columns
|
|
9363
|
+
self._additional_file_tags = additional_file_tags
|
|
9364
|
+
self._is_archive = is_archive
|
|
9365
|
+
|
|
9366
|
+
@builtins.property
|
|
9367
|
+
def source(self) -> "ingest_api_IngestSource":
|
|
9368
|
+
return self._source
|
|
9369
|
+
|
|
9370
|
+
@builtins.property
|
|
9371
|
+
def target(self) -> "ingest_api_DatasetIngestTarget":
|
|
9372
|
+
return self._target
|
|
9373
|
+
|
|
9374
|
+
@builtins.property
|
|
9375
|
+
def timestamp_metadata(self) -> "ingest_api_TimestampMetadata":
|
|
9376
|
+
return self._timestamp_metadata
|
|
9377
|
+
|
|
9378
|
+
@builtins.property
|
|
9379
|
+
def channel_prefix(self) -> Optional[str]:
|
|
9380
|
+
return self._channel_prefix
|
|
9381
|
+
|
|
9382
|
+
@builtins.property
|
|
9383
|
+
def tag_keys_from_columns(self) -> Optional[List[str]]:
|
|
9384
|
+
return self._tag_keys_from_columns
|
|
9385
|
+
|
|
9386
|
+
@builtins.property
|
|
9387
|
+
def additional_file_tags(self) -> Optional[Dict[str, str]]:
|
|
9388
|
+
return self._additional_file_tags
|
|
9389
|
+
|
|
9390
|
+
@builtins.property
|
|
9391
|
+
def is_archive(self) -> Optional[bool]:
|
|
9392
|
+
"""
|
|
9393
|
+
If true, the file is an archive. Supported archive formats include
|
|
9394
|
+
.tar, .tar.gz, and .zip. Only files ending in .parquet
|
|
9395
|
+
within the archive will be ingested. If field not provided, defaults to false.
|
|
9396
|
+
"""
|
|
9397
|
+
return self._is_archive
|
|
9398
|
+
|
|
9399
|
+
|
|
9400
|
+
ingest_api_ParquetOpts.__name__ = "ParquetOpts"
|
|
9401
|
+
ingest_api_ParquetOpts.__qualname__ = "ParquetOpts"
|
|
9402
|
+
ingest_api_ParquetOpts.__module__ = "nominal_api.ingest_api"
|
|
9403
|
+
|
|
9404
|
+
|
|
9312
9405
|
class ingest_api_Part(ConjureBeanType):
|
|
9313
9406
|
|
|
9314
9407
|
@builtins.classmethod
|
|
@@ -22220,28 +22313,18 @@ class scout_checklistexecution_api_BatchChecklistLiveStatusRequest(ConjureBeanTy
|
|
|
22220
22313
|
@builtins.classmethod
|
|
22221
22314
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22222
22315
|
return {
|
|
22223
|
-
'requests': ConjureFieldDefinition('requests', List[scout_checklistexecution_api_ChecklistLiveStatusRequest])
|
|
22224
|
-
'computation_range': ConjureFieldDefinition('computationRange', OptionalTypeWrapper[scout_checklistexecution_api_ComputationRange])
|
|
22316
|
+
'requests': ConjureFieldDefinition('requests', List[scout_checklistexecution_api_ChecklistLiveStatusRequest])
|
|
22225
22317
|
}
|
|
22226
22318
|
|
|
22227
|
-
__slots__: List[str] = ['_requests'
|
|
22319
|
+
__slots__: List[str] = ['_requests']
|
|
22228
22320
|
|
|
22229
|
-
def __init__(self, requests: List["scout_checklistexecution_api_ChecklistLiveStatusRequest"]
|
|
22321
|
+
def __init__(self, requests: List["scout_checklistexecution_api_ChecklistLiveStatusRequest"]) -> None:
|
|
22230
22322
|
self._requests = requests
|
|
22231
|
-
self._computation_range = computation_range
|
|
22232
22323
|
|
|
22233
22324
|
@builtins.property
|
|
22234
22325
|
def requests(self) -> List["scout_checklistexecution_api_ChecklistLiveStatusRequest"]:
|
|
22235
22326
|
return self._requests
|
|
22236
22327
|
|
|
22237
|
-
@builtins.property
|
|
22238
|
-
def computation_range(self) -> Optional["scout_checklistexecution_api_ComputationRange"]:
|
|
22239
|
-
"""
|
|
22240
|
-
The time range over which status and last failure were calculated. Failures outside of this time range
|
|
22241
|
-
will not be included in the results. If not specified, defaults to evaluating from now minus sixty minutes to now.
|
|
22242
|
-
"""
|
|
22243
|
-
return self._computation_range
|
|
22244
|
-
|
|
22245
22328
|
|
|
22246
22329
|
scout_checklistexecution_api_BatchChecklistLiveStatusRequest.__name__ = "BatchChecklistLiveStatusRequest"
|
|
22247
22330
|
scout_checklistexecution_api_BatchChecklistLiveStatusRequest.__qualname__ = "BatchChecklistLiveStatusRequest"
|
|
@@ -22253,27 +22336,17 @@ class scout_checklistexecution_api_BatchChecklistLiveStatusResponse(ConjureBeanT
|
|
|
22253
22336
|
@builtins.classmethod
|
|
22254
22337
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22255
22338
|
return {
|
|
22256
|
-
'
|
|
22257
|
-
'checklist_results': ConjureFieldDefinition('checklistResults', List[scout_checklistexecution_api_ChecklistLiveStatusResponse])
|
|
22339
|
+
'checklist_live_status_responses': ConjureFieldDefinition('checklistLiveStatusResponses', List[scout_checklistexecution_api_ChecklistLiveStatusResponse])
|
|
22258
22340
|
}
|
|
22259
22341
|
|
|
22260
|
-
__slots__: List[str] = ['
|
|
22261
|
-
|
|
22262
|
-
def __init__(self, checklist_results: List["scout_checklistexecution_api_ChecklistLiveStatusResponse"], computation_range: "scout_checklistexecution_api_ComputationRange") -> None:
|
|
22263
|
-
self._computation_range = computation_range
|
|
22264
|
-
self._checklist_results = checklist_results
|
|
22342
|
+
__slots__: List[str] = ['_checklist_live_status_responses']
|
|
22265
22343
|
|
|
22266
|
-
|
|
22267
|
-
|
|
22268
|
-
"""
|
|
22269
|
-
The time range over which status and last failure were calculated. Failures outside of this time range
|
|
22270
|
-
will not be included in the results.
|
|
22271
|
-
"""
|
|
22272
|
-
return self._computation_range
|
|
22344
|
+
def __init__(self, checklist_live_status_responses: List["scout_checklistexecution_api_ChecklistLiveStatusResponse"]) -> None:
|
|
22345
|
+
self._checklist_live_status_responses = checklist_live_status_responses
|
|
22273
22346
|
|
|
22274
22347
|
@builtins.property
|
|
22275
|
-
def
|
|
22276
|
-
return self.
|
|
22348
|
+
def checklist_live_status_responses(self) -> List["scout_checklistexecution_api_ChecklistLiveStatusResponse"]:
|
|
22349
|
+
return self._checklist_live_status_responses
|
|
22277
22350
|
|
|
22278
22351
|
|
|
22279
22352
|
scout_checklistexecution_api_BatchChecklistLiveStatusResponse.__name__ = "BatchChecklistLiveStatusResponse"
|
|
@@ -22281,6 +22354,52 @@ scout_checklistexecution_api_BatchChecklistLiveStatusResponse.__qualname__ = "Ba
|
|
|
22281
22354
|
scout_checklistexecution_api_BatchChecklistLiveStatusResponse.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22282
22355
|
|
|
22283
22356
|
|
|
22357
|
+
class scout_checklistexecution_api_BatchGetStreamingChecklistRequest(ConjureBeanType):
|
|
22358
|
+
|
|
22359
|
+
@builtins.classmethod
|
|
22360
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22361
|
+
return {
|
|
22362
|
+
'checklist_rids': ConjureFieldDefinition('checklistRids', List[scout_rids_api_ChecklistRid])
|
|
22363
|
+
}
|
|
22364
|
+
|
|
22365
|
+
__slots__: List[str] = ['_checklist_rids']
|
|
22366
|
+
|
|
22367
|
+
def __init__(self, checklist_rids: List[str]) -> None:
|
|
22368
|
+
self._checklist_rids = checklist_rids
|
|
22369
|
+
|
|
22370
|
+
@builtins.property
|
|
22371
|
+
def checklist_rids(self) -> List[str]:
|
|
22372
|
+
return self._checklist_rids
|
|
22373
|
+
|
|
22374
|
+
|
|
22375
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistRequest.__name__ = "BatchGetStreamingChecklistRequest"
|
|
22376
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistRequest.__qualname__ = "BatchGetStreamingChecklistRequest"
|
|
22377
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistRequest.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22378
|
+
|
|
22379
|
+
|
|
22380
|
+
class scout_checklistexecution_api_BatchGetStreamingChecklistResponse(ConjureBeanType):
|
|
22381
|
+
|
|
22382
|
+
@builtins.classmethod
|
|
22383
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22384
|
+
return {
|
|
22385
|
+
'streaming_checklist_infos': ConjureFieldDefinition('streamingChecklistInfos', Dict[scout_rids_api_ChecklistRid, scout_checklistexecution_api_StreamingChecklistInfo])
|
|
22386
|
+
}
|
|
22387
|
+
|
|
22388
|
+
__slots__: List[str] = ['_streaming_checklist_infos']
|
|
22389
|
+
|
|
22390
|
+
def __init__(self, streaming_checklist_infos: Dict[str, "scout_checklistexecution_api_StreamingChecklistInfo"]) -> None:
|
|
22391
|
+
self._streaming_checklist_infos = streaming_checklist_infos
|
|
22392
|
+
|
|
22393
|
+
@builtins.property
|
|
22394
|
+
def streaming_checklist_infos(self) -> Dict[str, "scout_checklistexecution_api_StreamingChecklistInfo"]:
|
|
22395
|
+
return self._streaming_checklist_infos
|
|
22396
|
+
|
|
22397
|
+
|
|
22398
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistResponse.__name__ = "BatchGetStreamingChecklistResponse"
|
|
22399
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistResponse.__qualname__ = "BatchGetStreamingChecklistResponse"
|
|
22400
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistResponse.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22401
|
+
|
|
22402
|
+
|
|
22284
22403
|
class scout_checklistexecution_api_BatchValidateChecklistResolutionRequest(ConjureBeanType):
|
|
22285
22404
|
|
|
22286
22405
|
@builtins.classmethod
|
|
@@ -22379,33 +22498,33 @@ class scout_checklistexecution_api_CheckLiveStatusResponse(ConjureBeanType):
|
|
|
22379
22498
|
@builtins.classmethod
|
|
22380
22499
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22381
22500
|
return {
|
|
22382
|
-
'
|
|
22501
|
+
'status': ConjureFieldDefinition('status', scout_checklistexecution_api_CheckStatus),
|
|
22383
22502
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
22384
|
-
'
|
|
22503
|
+
'check_parameter_index': ConjureFieldDefinition('checkParameterIndex', OptionalTypeWrapper[int])
|
|
22385
22504
|
}
|
|
22386
22505
|
|
|
22387
|
-
__slots__: List[str] = ['
|
|
22506
|
+
__slots__: List[str] = ['_status', '_check_rid', '_check_parameter_index']
|
|
22388
22507
|
|
|
22389
|
-
def __init__(self, check_rid: str,
|
|
22390
|
-
self.
|
|
22508
|
+
def __init__(self, check_rid: str, status: "scout_checklistexecution_api_CheckStatus", check_parameter_index: Optional[int] = None) -> None:
|
|
22509
|
+
self._status = status
|
|
22391
22510
|
self._check_rid = check_rid
|
|
22392
|
-
self.
|
|
22511
|
+
self._check_parameter_index = check_parameter_index
|
|
22393
22512
|
|
|
22394
22513
|
@builtins.property
|
|
22395
|
-
def
|
|
22396
|
-
return self.
|
|
22514
|
+
def status(self) -> "scout_checklistexecution_api_CheckStatus":
|
|
22515
|
+
return self._status
|
|
22397
22516
|
|
|
22398
22517
|
@builtins.property
|
|
22399
22518
|
def check_rid(self) -> str:
|
|
22400
22519
|
return self._check_rid
|
|
22401
22520
|
|
|
22402
22521
|
@builtins.property
|
|
22403
|
-
def
|
|
22522
|
+
def check_parameter_index(self) -> Optional[int]:
|
|
22404
22523
|
"""
|
|
22405
22524
|
Checks can define a single range computation which can evaluate over multiple implementations of a context.
|
|
22406
22525
|
The check implementation index will correspond to the implementation index of the check condition.
|
|
22407
22526
|
"""
|
|
22408
|
-
return self.
|
|
22527
|
+
return self._check_parameter_index
|
|
22409
22528
|
|
|
22410
22529
|
|
|
22411
22530
|
scout_checklistexecution_api_CheckLiveStatusResponse.__name__ = "CheckLiveStatusResponse"
|
|
@@ -22413,130 +22532,31 @@ scout_checklistexecution_api_CheckLiveStatusResponse.__qualname__ = "CheckLiveSt
|
|
|
22413
22532
|
scout_checklistexecution_api_CheckLiveStatusResponse.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22414
22533
|
|
|
22415
22534
|
|
|
22416
|
-
class scout_checklistexecution_api_CheckLiveStatusResult(ConjureUnionType):
|
|
22417
|
-
_computed: Optional["scout_checklistexecution_api_ComputedResult"] = None
|
|
22418
|
-
_not_computable: Optional["scout_checklistexecution_api_NotComputable"] = None
|
|
22419
|
-
_failed_to_resolve: Optional["scout_checklistexecution_api_FailedToResolve"] = None
|
|
22420
|
-
|
|
22421
|
-
@builtins.classmethod
|
|
22422
|
-
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22423
|
-
return {
|
|
22424
|
-
'computed': ConjureFieldDefinition('computed', scout_checklistexecution_api_ComputedResult),
|
|
22425
|
-
'not_computable': ConjureFieldDefinition('notComputable', scout_checklistexecution_api_NotComputable),
|
|
22426
|
-
'failed_to_resolve': ConjureFieldDefinition('failedToResolve', scout_checklistexecution_api_FailedToResolve)
|
|
22427
|
-
}
|
|
22428
|
-
|
|
22429
|
-
def __init__(
|
|
22430
|
-
self,
|
|
22431
|
-
computed: Optional["scout_checklistexecution_api_ComputedResult"] = None,
|
|
22432
|
-
not_computable: Optional["scout_checklistexecution_api_NotComputable"] = None,
|
|
22433
|
-
failed_to_resolve: Optional["scout_checklistexecution_api_FailedToResolve"] = None,
|
|
22434
|
-
type_of_union: Optional[str] = None
|
|
22435
|
-
) -> None:
|
|
22436
|
-
if type_of_union is None:
|
|
22437
|
-
if (computed is not None) + (not_computable is not None) + (failed_to_resolve is not None) != 1:
|
|
22438
|
-
raise ValueError('a union must contain a single member')
|
|
22439
|
-
|
|
22440
|
-
if computed is not None:
|
|
22441
|
-
self._computed = computed
|
|
22442
|
-
self._type = 'computed'
|
|
22443
|
-
if not_computable is not None:
|
|
22444
|
-
self._not_computable = not_computable
|
|
22445
|
-
self._type = 'notComputable'
|
|
22446
|
-
if failed_to_resolve is not None:
|
|
22447
|
-
self._failed_to_resolve = failed_to_resolve
|
|
22448
|
-
self._type = 'failedToResolve'
|
|
22449
|
-
|
|
22450
|
-
elif type_of_union == 'computed':
|
|
22451
|
-
if computed is None:
|
|
22452
|
-
raise ValueError('a union value must not be None')
|
|
22453
|
-
self._computed = computed
|
|
22454
|
-
self._type = 'computed'
|
|
22455
|
-
elif type_of_union == 'notComputable':
|
|
22456
|
-
if not_computable is None:
|
|
22457
|
-
raise ValueError('a union value must not be None')
|
|
22458
|
-
self._not_computable = not_computable
|
|
22459
|
-
self._type = 'notComputable'
|
|
22460
|
-
elif type_of_union == 'failedToResolve':
|
|
22461
|
-
if failed_to_resolve is None:
|
|
22462
|
-
raise ValueError('a union value must not be None')
|
|
22463
|
-
self._failed_to_resolve = failed_to_resolve
|
|
22464
|
-
self._type = 'failedToResolve'
|
|
22465
|
-
|
|
22466
|
-
@builtins.property
|
|
22467
|
-
def computed(self) -> Optional["scout_checklistexecution_api_ComputedResult"]:
|
|
22468
|
-
return self._computed
|
|
22469
|
-
|
|
22470
|
-
@builtins.property
|
|
22471
|
-
def not_computable(self) -> Optional["scout_checklistexecution_api_NotComputable"]:
|
|
22472
|
-
"""
|
|
22473
|
-
The check cannot be computed in a streaming context. This would be returned if an overly expensive
|
|
22474
|
-
computation was attempted, such as checking the rolling median over the last year of data.
|
|
22475
|
-
"""
|
|
22476
|
-
return self._not_computable
|
|
22477
|
-
|
|
22478
|
-
@builtins.property
|
|
22479
|
-
def failed_to_resolve(self) -> Optional["scout_checklistexecution_api_FailedToResolve"]:
|
|
22480
|
-
"""
|
|
22481
|
-
The checklist cannot be applied to the data sources.
|
|
22482
|
-
"""
|
|
22483
|
-
return self._failed_to_resolve
|
|
22484
|
-
|
|
22485
|
-
def accept(self, visitor) -> Any:
|
|
22486
|
-
if not isinstance(visitor, scout_checklistexecution_api_CheckLiveStatusResultVisitor):
|
|
22487
|
-
raise ValueError('{} is not an instance of scout_checklistexecution_api_CheckLiveStatusResultVisitor'.format(visitor.__class__.__name__))
|
|
22488
|
-
if self._type == 'computed' and self.computed is not None:
|
|
22489
|
-
return visitor._computed(self.computed)
|
|
22490
|
-
if self._type == 'notComputable' and self.not_computable is not None:
|
|
22491
|
-
return visitor._not_computable(self.not_computable)
|
|
22492
|
-
if self._type == 'failedToResolve' and self.failed_to_resolve is not None:
|
|
22493
|
-
return visitor._failed_to_resolve(self.failed_to_resolve)
|
|
22494
|
-
|
|
22495
|
-
|
|
22496
|
-
scout_checklistexecution_api_CheckLiveStatusResult.__name__ = "CheckLiveStatusResult"
|
|
22497
|
-
scout_checklistexecution_api_CheckLiveStatusResult.__qualname__ = "CheckLiveStatusResult"
|
|
22498
|
-
scout_checklistexecution_api_CheckLiveStatusResult.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22499
|
-
|
|
22500
|
-
|
|
22501
|
-
class scout_checklistexecution_api_CheckLiveStatusResultVisitor:
|
|
22502
|
-
|
|
22503
|
-
@abstractmethod
|
|
22504
|
-
def _computed(self, computed: "scout_checklistexecution_api_ComputedResult") -> Any:
|
|
22505
|
-
pass
|
|
22506
|
-
|
|
22507
|
-
@abstractmethod
|
|
22508
|
-
def _not_computable(self, not_computable: "scout_checklistexecution_api_NotComputable") -> Any:
|
|
22509
|
-
pass
|
|
22510
|
-
|
|
22511
|
-
@abstractmethod
|
|
22512
|
-
def _failed_to_resolve(self, failed_to_resolve: "scout_checklistexecution_api_FailedToResolve") -> Any:
|
|
22513
|
-
pass
|
|
22514
|
-
|
|
22515
|
-
|
|
22516
|
-
scout_checklistexecution_api_CheckLiveStatusResultVisitor.__name__ = "CheckLiveStatusResultVisitor"
|
|
22517
|
-
scout_checklistexecution_api_CheckLiveStatusResultVisitor.__qualname__ = "CheckLiveStatusResultVisitor"
|
|
22518
|
-
scout_checklistexecution_api_CheckLiveStatusResultVisitor.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22519
|
-
|
|
22520
|
-
|
|
22521
22535
|
class scout_checklistexecution_api_CheckStatus(ConjureUnionType):
|
|
22522
22536
|
_pass_: Optional["scout_checklistexecution_api_Pass"] = None
|
|
22523
22537
|
_fail: Optional["scout_checklistexecution_api_Fail"] = None
|
|
22538
|
+
_invalid: Optional["scout_checklistexecution_api_Invalid"] = None
|
|
22539
|
+
_skipped: Optional["scout_checklistexecution_api_Skipped"] = None
|
|
22524
22540
|
|
|
22525
22541
|
@builtins.classmethod
|
|
22526
22542
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22527
22543
|
return {
|
|
22528
22544
|
'pass_': ConjureFieldDefinition('pass', scout_checklistexecution_api_Pass),
|
|
22529
|
-
'fail': ConjureFieldDefinition('fail', scout_checklistexecution_api_Fail)
|
|
22545
|
+
'fail': ConjureFieldDefinition('fail', scout_checklistexecution_api_Fail),
|
|
22546
|
+
'invalid': ConjureFieldDefinition('invalid', scout_checklistexecution_api_Invalid),
|
|
22547
|
+
'skipped': ConjureFieldDefinition('skipped', scout_checklistexecution_api_Skipped)
|
|
22530
22548
|
}
|
|
22531
22549
|
|
|
22532
22550
|
def __init__(
|
|
22533
22551
|
self,
|
|
22534
22552
|
pass_: Optional["scout_checklistexecution_api_Pass"] = None,
|
|
22535
22553
|
fail: Optional["scout_checklistexecution_api_Fail"] = None,
|
|
22554
|
+
invalid: Optional["scout_checklistexecution_api_Invalid"] = None,
|
|
22555
|
+
skipped: Optional["scout_checklistexecution_api_Skipped"] = None,
|
|
22536
22556
|
type_of_union: Optional[str] = None
|
|
22537
22557
|
) -> None:
|
|
22538
22558
|
if type_of_union is None:
|
|
22539
|
-
if (pass_ is not None) + (fail is not None) != 1:
|
|
22559
|
+
if (pass_ is not None) + (fail is not None) + (invalid is not None) + (skipped is not None) != 1:
|
|
22540
22560
|
raise ValueError('a union must contain a single member')
|
|
22541
22561
|
|
|
22542
22562
|
if pass_ is not None:
|
|
@@ -22545,6 +22565,12 @@ class scout_checklistexecution_api_CheckStatus(ConjureUnionType):
|
|
|
22545
22565
|
if fail is not None:
|
|
22546
22566
|
self._fail = fail
|
|
22547
22567
|
self._type = 'fail'
|
|
22568
|
+
if invalid is not None:
|
|
22569
|
+
self._invalid = invalid
|
|
22570
|
+
self._type = 'invalid'
|
|
22571
|
+
if skipped is not None:
|
|
22572
|
+
self._skipped = skipped
|
|
22573
|
+
self._type = 'skipped'
|
|
22548
22574
|
|
|
22549
22575
|
elif type_of_union == 'pass':
|
|
22550
22576
|
if pass_ is None:
|
|
@@ -22556,6 +22582,16 @@ class scout_checklistexecution_api_CheckStatus(ConjureUnionType):
|
|
|
22556
22582
|
raise ValueError('a union value must not be None')
|
|
22557
22583
|
self._fail = fail
|
|
22558
22584
|
self._type = 'fail'
|
|
22585
|
+
elif type_of_union == 'invalid':
|
|
22586
|
+
if invalid is None:
|
|
22587
|
+
raise ValueError('a union value must not be None')
|
|
22588
|
+
self._invalid = invalid
|
|
22589
|
+
self._type = 'invalid'
|
|
22590
|
+
elif type_of_union == 'skipped':
|
|
22591
|
+
if skipped is None:
|
|
22592
|
+
raise ValueError('a union value must not be None')
|
|
22593
|
+
self._skipped = skipped
|
|
22594
|
+
self._type = 'skipped'
|
|
22559
22595
|
|
|
22560
22596
|
@builtins.property
|
|
22561
22597
|
def pass_(self) -> Optional["scout_checklistexecution_api_Pass"]:
|
|
@@ -22571,6 +22607,24 @@ class scout_checklistexecution_api_CheckStatus(ConjureUnionType):
|
|
|
22571
22607
|
"""
|
|
22572
22608
|
return self._fail
|
|
22573
22609
|
|
|
22610
|
+
@builtins.property
|
|
22611
|
+
def invalid(self) -> Optional["scout_checklistexecution_api_Invalid"]:
|
|
22612
|
+
"""
|
|
22613
|
+
The check was evaluated and is currently in state INVALID.
|
|
22614
|
+
This signifies that the check could not be evaluated due to an internal error or
|
|
22615
|
+
if an overly expensive computation was attempted.
|
|
22616
|
+
"""
|
|
22617
|
+
return self._invalid
|
|
22618
|
+
|
|
22619
|
+
@builtins.property
|
|
22620
|
+
def skipped(self) -> Optional["scout_checklistexecution_api_Skipped"]:
|
|
22621
|
+
"""
|
|
22622
|
+
The check was skipped and was not evaluated.
|
|
22623
|
+
This typically occurs when the check performs operations that are not supported in the streaming context,
|
|
22624
|
+
or if the required channels could not be resolved.
|
|
22625
|
+
"""
|
|
22626
|
+
return self._skipped
|
|
22627
|
+
|
|
22574
22628
|
def accept(self, visitor) -> Any:
|
|
22575
22629
|
if not isinstance(visitor, scout_checklistexecution_api_CheckStatusVisitor):
|
|
22576
22630
|
raise ValueError('{} is not an instance of scout_checklistexecution_api_CheckStatusVisitor'.format(visitor.__class__.__name__))
|
|
@@ -22578,6 +22632,10 @@ class scout_checklistexecution_api_CheckStatus(ConjureUnionType):
|
|
|
22578
22632
|
return visitor._pass(self.pass_)
|
|
22579
22633
|
if self._type == 'fail' and self.fail is not None:
|
|
22580
22634
|
return visitor._fail(self.fail)
|
|
22635
|
+
if self._type == 'invalid' and self.invalid is not None:
|
|
22636
|
+
return visitor._invalid(self.invalid)
|
|
22637
|
+
if self._type == 'skipped' and self.skipped is not None:
|
|
22638
|
+
return visitor._skipped(self.skipped)
|
|
22581
22639
|
|
|
22582
22640
|
|
|
22583
22641
|
scout_checklistexecution_api_CheckStatus.__name__ = "CheckStatus"
|
|
@@ -22595,6 +22653,14 @@ class scout_checklistexecution_api_CheckStatusVisitor:
|
|
|
22595
22653
|
def _fail(self, fail: "scout_checklistexecution_api_Fail") -> Any:
|
|
22596
22654
|
pass
|
|
22597
22655
|
|
|
22656
|
+
@abstractmethod
|
|
22657
|
+
def _invalid(self, invalid: "scout_checklistexecution_api_Invalid") -> Any:
|
|
22658
|
+
pass
|
|
22659
|
+
|
|
22660
|
+
@abstractmethod
|
|
22661
|
+
def _skipped(self, skipped: "scout_checklistexecution_api_Skipped") -> Any:
|
|
22662
|
+
pass
|
|
22663
|
+
|
|
22598
22664
|
|
|
22599
22665
|
scout_checklistexecution_api_CheckStatusVisitor.__name__ = "CheckStatusVisitor"
|
|
22600
22666
|
scout_checklistexecution_api_CheckStatusVisitor.__qualname__ = "CheckStatusVisitor"
|
|
@@ -22608,8 +22674,7 @@ class scout_checklistexecution_api_ChecklistExecutionService(Service):
|
|
|
22608
22674
|
|
|
22609
22675
|
def checklist_live_status(self, auth_header: str, request: "scout_checklistexecution_api_BatchChecklistLiveStatusRequest") -> "scout_checklistexecution_api_BatchChecklistLiveStatusResponse":
|
|
22610
22676
|
"""
|
|
22611
|
-
For each request, get the
|
|
22612
|
-
every automatic check against the given run.
|
|
22677
|
+
For each request, get the latest status for each check in a streaming checklist against the given asset.
|
|
22613
22678
|
"""
|
|
22614
22679
|
|
|
22615
22680
|
_headers: Dict[str, Any] = {
|
|
@@ -22641,8 +22706,8 @@ every automatic check against the given run.
|
|
|
22641
22706
|
|
|
22642
22707
|
def execute_streaming_checklist(self, auth_header: str, request: "scout_checklistexecution_api_ExecuteChecklistForAssetsRequest") -> None:
|
|
22643
22708
|
"""
|
|
22644
|
-
Triggers a checklist to run continuously against assets.
|
|
22645
|
-
checklist is already running for the given asset.
|
|
22709
|
+
Triggers a checklist to run continuously against assets.
|
|
22710
|
+
If the checklist is already running for the given asset, replace the existing configuration with the one specified by the request.
|
|
22646
22711
|
"""
|
|
22647
22712
|
|
|
22648
22713
|
_headers: Dict[str, Any] = {
|
|
@@ -22737,7 +22802,7 @@ checklist is already running for the given asset.
|
|
|
22737
22802
|
|
|
22738
22803
|
def get_streaming_checklist(self, auth_header: str, checklist_rid: str) -> "scout_checklistexecution_api_StreamingChecklistInfo":
|
|
22739
22804
|
"""
|
|
22740
|
-
Retrieves
|
|
22805
|
+
Retrieves the set of assets and their execution configurations for a streaming checklist specified by the checklistRid.
|
|
22741
22806
|
"""
|
|
22742
22807
|
|
|
22743
22808
|
_headers: Dict[str, Any] = {
|
|
@@ -22767,6 +22832,39 @@ checklist is already running for the given asset.
|
|
|
22767
22832
|
_decoder = ConjureDecoder()
|
|
22768
22833
|
return _decoder.decode(_response.json(), scout_checklistexecution_api_StreamingChecklistInfo, self._return_none_for_unknown_union_types)
|
|
22769
22834
|
|
|
22835
|
+
def batch_get_streaming_checklist(self, auth_header: str, request: "scout_checklistexecution_api_BatchGetStreamingChecklistRequest") -> "scout_checklistexecution_api_BatchGetStreamingChecklistResponse":
|
|
22836
|
+
"""
|
|
22837
|
+
Retrieves the set of assets and their execution configurations for all streaming checklists specified by the request.
|
|
22838
|
+
If a streaming checklist is not found, it will not be included in the response.
|
|
22839
|
+
"""
|
|
22840
|
+
|
|
22841
|
+
_headers: Dict[str, Any] = {
|
|
22842
|
+
'Accept': 'application/json',
|
|
22843
|
+
'Content-Type': 'application/json',
|
|
22844
|
+
'Authorization': auth_header,
|
|
22845
|
+
}
|
|
22846
|
+
|
|
22847
|
+
_params: Dict[str, Any] = {
|
|
22848
|
+
}
|
|
22849
|
+
|
|
22850
|
+
_path_params: Dict[str, Any] = {
|
|
22851
|
+
}
|
|
22852
|
+
|
|
22853
|
+
_json: Any = ConjureEncoder().default(request)
|
|
22854
|
+
|
|
22855
|
+
_path = '/scout/v2/checklist-execution/get-streaming-checklists'
|
|
22856
|
+
_path = _path.format(**_path_params)
|
|
22857
|
+
|
|
22858
|
+
_response: Response = self._request(
|
|
22859
|
+
'POST',
|
|
22860
|
+
self._uri + _path,
|
|
22861
|
+
params=_params,
|
|
22862
|
+
headers=_headers,
|
|
22863
|
+
json=_json)
|
|
22864
|
+
|
|
22865
|
+
_decoder = ConjureDecoder()
|
|
22866
|
+
return _decoder.decode(_response.json(), scout_checklistexecution_api_BatchGetStreamingChecklistResponse, self._return_none_for_unknown_union_types)
|
|
22867
|
+
|
|
22770
22868
|
def stop_streaming_checklist(self, auth_header: str, checklist_rid: str) -> None:
|
|
22771
22869
|
"""
|
|
22772
22870
|
Stops the execution of a streaming checklist on all assets.
|
|
@@ -22898,147 +22996,175 @@ scout_checklistexecution_api_ChecklistExecutionService.__qualname__ = "Checklist
|
|
|
22898
22996
|
scout_checklistexecution_api_ChecklistExecutionService.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22899
22997
|
|
|
22900
22998
|
|
|
22901
|
-
class
|
|
22902
|
-
""
|
|
22903
|
-
|
|
22904
|
-
""
|
|
22999
|
+
class scout_checklistexecution_api_ChecklistLiveStatus(ConjureUnionType):
|
|
23000
|
+
_running: Optional["scout_checklistexecution_api_StreamingChecklistRunning"] = None
|
|
23001
|
+
_initializing: Optional["scout_checklistexecution_api_StreamingChecklistInitializing"] = None
|
|
23002
|
+
_failed: Optional["scout_checklistexecution_api_StreamingChecklistFailed"] = None
|
|
22905
23003
|
|
|
22906
23004
|
@builtins.classmethod
|
|
22907
|
-
def
|
|
23005
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22908
23006
|
return {
|
|
22909
|
-
'
|
|
22910
|
-
'
|
|
22911
|
-
'
|
|
22912
|
-
'asset_rid': ConjureFieldDefinition('assetRid', OptionalTypeWrapper[scout_rids_api_AssetRid])
|
|
23007
|
+
'running': ConjureFieldDefinition('running', scout_checklistexecution_api_StreamingChecklistRunning),
|
|
23008
|
+
'initializing': ConjureFieldDefinition('initializing', scout_checklistexecution_api_StreamingChecklistInitializing),
|
|
23009
|
+
'failed': ConjureFieldDefinition('failed', scout_checklistexecution_api_StreamingChecklistFailed)
|
|
22913
23010
|
}
|
|
22914
23011
|
|
|
22915
|
-
|
|
23012
|
+
def __init__(
|
|
23013
|
+
self,
|
|
23014
|
+
running: Optional["scout_checklistexecution_api_StreamingChecklistRunning"] = None,
|
|
23015
|
+
initializing: Optional["scout_checklistexecution_api_StreamingChecklistInitializing"] = None,
|
|
23016
|
+
failed: Optional["scout_checklistexecution_api_StreamingChecklistFailed"] = None,
|
|
23017
|
+
type_of_union: Optional[str] = None
|
|
23018
|
+
) -> None:
|
|
23019
|
+
if type_of_union is None:
|
|
23020
|
+
if (running is not None) + (initializing is not None) + (failed is not None) != 1:
|
|
23021
|
+
raise ValueError('a union must contain a single member')
|
|
22916
23022
|
|
|
22917
|
-
|
|
22918
|
-
|
|
22919
|
-
|
|
22920
|
-
|
|
22921
|
-
|
|
23023
|
+
if running is not None:
|
|
23024
|
+
self._running = running
|
|
23025
|
+
self._type = 'running'
|
|
23026
|
+
if initializing is not None:
|
|
23027
|
+
self._initializing = initializing
|
|
23028
|
+
self._type = 'initializing'
|
|
23029
|
+
if failed is not None:
|
|
23030
|
+
self._failed = failed
|
|
23031
|
+
self._type = 'failed'
|
|
22922
23032
|
|
|
22923
|
-
|
|
22924
|
-
|
|
22925
|
-
|
|
23033
|
+
elif type_of_union == 'running':
|
|
23034
|
+
if running is None:
|
|
23035
|
+
raise ValueError('a union value must not be None')
|
|
23036
|
+
self._running = running
|
|
23037
|
+
self._type = 'running'
|
|
23038
|
+
elif type_of_union == 'initializing':
|
|
23039
|
+
if initializing is None:
|
|
23040
|
+
raise ValueError('a union value must not be None')
|
|
23041
|
+
self._initializing = initializing
|
|
23042
|
+
self._type = 'initializing'
|
|
23043
|
+
elif type_of_union == 'failed':
|
|
23044
|
+
if failed is None:
|
|
23045
|
+
raise ValueError('a union value must not be None')
|
|
23046
|
+
self._failed = failed
|
|
23047
|
+
self._type = 'failed'
|
|
22926
23048
|
|
|
22927
23049
|
@builtins.property
|
|
22928
|
-
def
|
|
22929
|
-
|
|
23050
|
+
def running(self) -> Optional["scout_checklistexecution_api_StreamingChecklistRunning"]:
|
|
23051
|
+
"""
|
|
23052
|
+
The streaming checklist is currently executing against the asset.
|
|
23053
|
+
"""
|
|
23054
|
+
return self._running
|
|
22930
23055
|
|
|
22931
23056
|
@builtins.property
|
|
22932
|
-
def
|
|
22933
|
-
|
|
23057
|
+
def initializing(self) -> Optional["scout_checklistexecution_api_StreamingChecklistInitializing"]:
|
|
23058
|
+
"""
|
|
23059
|
+
The streaming checklist is currently initializing against the asset.
|
|
23060
|
+
"""
|
|
23061
|
+
return self._initializing
|
|
22934
23062
|
|
|
22935
23063
|
@builtins.property
|
|
22936
|
-
def
|
|
22937
|
-
|
|
22938
|
-
|
|
23064
|
+
def failed(self) -> Optional["scout_checklistexecution_api_StreamingChecklistFailed"]:
|
|
23065
|
+
"""
|
|
23066
|
+
The streaming checklist failed unexpectedly. Please contact support.
|
|
23067
|
+
"""
|
|
23068
|
+
return self._failed
|
|
22939
23069
|
|
|
22940
|
-
|
|
22941
|
-
|
|
22942
|
-
|
|
23070
|
+
def accept(self, visitor) -> Any:
|
|
23071
|
+
if not isinstance(visitor, scout_checklistexecution_api_ChecklistLiveStatusVisitor):
|
|
23072
|
+
raise ValueError('{} is not an instance of scout_checklistexecution_api_ChecklistLiveStatusVisitor'.format(visitor.__class__.__name__))
|
|
23073
|
+
if self._type == 'running' and self.running is not None:
|
|
23074
|
+
return visitor._running(self.running)
|
|
23075
|
+
if self._type == 'initializing' and self.initializing is not None:
|
|
23076
|
+
return visitor._initializing(self.initializing)
|
|
23077
|
+
if self._type == 'failed' and self.failed is not None:
|
|
23078
|
+
return visitor._failed(self.failed)
|
|
22943
23079
|
|
|
22944
23080
|
|
|
22945
|
-
|
|
23081
|
+
scout_checklistexecution_api_ChecklistLiveStatus.__name__ = "ChecklistLiveStatus"
|
|
23082
|
+
scout_checklistexecution_api_ChecklistLiveStatus.__qualname__ = "ChecklistLiveStatus"
|
|
23083
|
+
scout_checklistexecution_api_ChecklistLiveStatus.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22946
23084
|
|
|
22947
|
-
@builtins.classmethod
|
|
22948
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22949
|
-
return {
|
|
22950
|
-
'checklist_rid': ConjureFieldDefinition('checklistRid', scout_rids_api_ChecklistRid),
|
|
22951
|
-
'check_results': ConjureFieldDefinition('checkResults', List[scout_checklistexecution_api_CheckLiveStatusResponse])
|
|
22952
|
-
}
|
|
22953
23085
|
|
|
22954
|
-
|
|
23086
|
+
class scout_checklistexecution_api_ChecklistLiveStatusVisitor:
|
|
22955
23087
|
|
|
22956
|
-
|
|
22957
|
-
|
|
22958
|
-
|
|
23088
|
+
@abstractmethod
|
|
23089
|
+
def _running(self, running: "scout_checklistexecution_api_StreamingChecklistRunning") -> Any:
|
|
23090
|
+
pass
|
|
22959
23091
|
|
|
22960
|
-
@
|
|
22961
|
-
def
|
|
22962
|
-
|
|
23092
|
+
@abstractmethod
|
|
23093
|
+
def _initializing(self, initializing: "scout_checklistexecution_api_StreamingChecklistInitializing") -> Any:
|
|
23094
|
+
pass
|
|
22963
23095
|
|
|
22964
|
-
@
|
|
22965
|
-
def
|
|
22966
|
-
|
|
23096
|
+
@abstractmethod
|
|
23097
|
+
def _failed(self, failed: "scout_checklistexecution_api_StreamingChecklistFailed") -> Any:
|
|
23098
|
+
pass
|
|
22967
23099
|
|
|
22968
23100
|
|
|
22969
|
-
|
|
22970
|
-
|
|
22971
|
-
|
|
23101
|
+
scout_checklistexecution_api_ChecklistLiveStatusVisitor.__name__ = "ChecklistLiveStatusVisitor"
|
|
23102
|
+
scout_checklistexecution_api_ChecklistLiveStatusVisitor.__qualname__ = "ChecklistLiveStatusVisitor"
|
|
23103
|
+
scout_checklistexecution_api_ChecklistLiveStatusVisitor.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
22972
23104
|
|
|
22973
23105
|
|
|
22974
|
-
class
|
|
22975
|
-
"""
|
|
22976
|
-
The time range over which status and last failure were calculated. Failures outside of this time range
|
|
22977
|
-
will not be included in the results.
|
|
22978
|
-
"""
|
|
23106
|
+
class scout_checklistexecution_api_ChecklistLiveStatusRequest(ConjureBeanType):
|
|
22979
23107
|
|
|
22980
23108
|
@builtins.classmethod
|
|
22981
23109
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22982
23110
|
return {
|
|
22983
|
-
'
|
|
22984
|
-
'
|
|
23111
|
+
'checklist_rid': ConjureFieldDefinition('checklistRid', scout_rids_api_ChecklistRid),
|
|
23112
|
+
'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid)
|
|
22985
23113
|
}
|
|
22986
23114
|
|
|
22987
|
-
__slots__: List[str] = ['
|
|
23115
|
+
__slots__: List[str] = ['_checklist_rid', '_asset_rid']
|
|
22988
23116
|
|
|
22989
|
-
def __init__(self,
|
|
22990
|
-
self.
|
|
22991
|
-
self.
|
|
23117
|
+
def __init__(self, asset_rid: str, checklist_rid: str) -> None:
|
|
23118
|
+
self._checklist_rid = checklist_rid
|
|
23119
|
+
self._asset_rid = asset_rid
|
|
22992
23120
|
|
|
22993
23121
|
@builtins.property
|
|
22994
|
-
def
|
|
22995
|
-
return self.
|
|
23122
|
+
def checklist_rid(self) -> str:
|
|
23123
|
+
return self._checklist_rid
|
|
22996
23124
|
|
|
22997
23125
|
@builtins.property
|
|
22998
|
-
def
|
|
22999
|
-
return self.
|
|
23126
|
+
def asset_rid(self) -> str:
|
|
23127
|
+
return self._asset_rid
|
|
23000
23128
|
|
|
23001
23129
|
|
|
23002
|
-
|
|
23003
|
-
|
|
23004
|
-
|
|
23130
|
+
scout_checklistexecution_api_ChecklistLiveStatusRequest.__name__ = "ChecklistLiveStatusRequest"
|
|
23131
|
+
scout_checklistexecution_api_ChecklistLiveStatusRequest.__qualname__ = "ChecklistLiveStatusRequest"
|
|
23132
|
+
scout_checklistexecution_api_ChecklistLiveStatusRequest.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23005
23133
|
|
|
23006
23134
|
|
|
23007
|
-
class
|
|
23135
|
+
class scout_checklistexecution_api_ChecklistLiveStatusResponse(ConjureBeanType):
|
|
23008
23136
|
|
|
23009
23137
|
@builtins.classmethod
|
|
23010
23138
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23011
23139
|
return {
|
|
23012
|
-
'
|
|
23013
|
-
'
|
|
23140
|
+
'checklist_rid': ConjureFieldDefinition('checklistRid', scout_rids_api_ChecklistRid),
|
|
23141
|
+
'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
|
|
23142
|
+
'status': ConjureFieldDefinition('status', scout_checklistexecution_api_ChecklistLiveStatus)
|
|
23014
23143
|
}
|
|
23015
23144
|
|
|
23016
|
-
__slots__: List[str] = ['
|
|
23145
|
+
__slots__: List[str] = ['_checklist_rid', '_asset_rid', '_status']
|
|
23017
23146
|
|
|
23018
|
-
def __init__(self,
|
|
23147
|
+
def __init__(self, asset_rid: str, checklist_rid: str, status: "scout_checklistexecution_api_ChecklistLiveStatus") -> None:
|
|
23148
|
+
self._checklist_rid = checklist_rid
|
|
23149
|
+
self._asset_rid = asset_rid
|
|
23019
23150
|
self._status = status
|
|
23020
|
-
self._last_failure = last_failure
|
|
23021
23151
|
|
|
23022
23152
|
@builtins.property
|
|
23023
|
-
def
|
|
23024
|
-
|
|
23025
|
-
The current status of a check at the time it was evaluated.
|
|
23026
|
-
"""
|
|
23027
|
-
return self._status
|
|
23153
|
+
def checklist_rid(self) -> str:
|
|
23154
|
+
return self._checklist_rid
|
|
23028
23155
|
|
|
23029
23156
|
@builtins.property
|
|
23030
|
-
def
|
|
23031
|
-
|
|
23032
|
-
If computed, represents the last time the check failed.
|
|
23033
|
-
Can also represent that the last failure hasn't been computed, or is currently being computed.
|
|
23034
|
-
If the check is currently failing, the current failure is returned.
|
|
23035
|
-
"""
|
|
23036
|
-
return self._last_failure
|
|
23157
|
+
def asset_rid(self) -> str:
|
|
23158
|
+
return self._asset_rid
|
|
23037
23159
|
|
|
23160
|
+
@builtins.property
|
|
23161
|
+
def status(self) -> "scout_checklistexecution_api_ChecklistLiveStatus":
|
|
23162
|
+
return self._status
|
|
23038
23163
|
|
|
23039
|
-
|
|
23040
|
-
|
|
23041
|
-
|
|
23164
|
+
|
|
23165
|
+
scout_checklistexecution_api_ChecklistLiveStatusResponse.__name__ = "ChecklistLiveStatusResponse"
|
|
23166
|
+
scout_checklistexecution_api_ChecklistLiveStatusResponse.__qualname__ = "ChecklistLiveStatusResponse"
|
|
23167
|
+
scout_checklistexecution_api_ChecklistLiveStatusResponse.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23042
23168
|
|
|
23043
23169
|
|
|
23044
23170
|
class scout_checklistexecution_api_Computing(ConjureBeanType):
|
|
@@ -23133,35 +23259,6 @@ scout_checklistexecution_api_Fail.__qualname__ = "Fail"
|
|
|
23133
23259
|
scout_checklistexecution_api_Fail.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23134
23260
|
|
|
23135
23261
|
|
|
23136
|
-
class scout_checklistexecution_api_FailedToResolve(ConjureBeanType):
|
|
23137
|
-
"""
|
|
23138
|
-
The checklist cannot be applied to the data sources.
|
|
23139
|
-
"""
|
|
23140
|
-
|
|
23141
|
-
@builtins.classmethod
|
|
23142
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23143
|
-
return {
|
|
23144
|
-
'variable_name': ConjureFieldDefinition('variableName', str)
|
|
23145
|
-
}
|
|
23146
|
-
|
|
23147
|
-
__slots__: List[str] = ['_variable_name']
|
|
23148
|
-
|
|
23149
|
-
def __init__(self, variable_name: str) -> None:
|
|
23150
|
-
self._variable_name = variable_name
|
|
23151
|
-
|
|
23152
|
-
@builtins.property
|
|
23153
|
-
def variable_name(self) -> str:
|
|
23154
|
-
"""
|
|
23155
|
-
The variable name that couldn't be resolved to a series.
|
|
23156
|
-
"""
|
|
23157
|
-
return self._variable_name
|
|
23158
|
-
|
|
23159
|
-
|
|
23160
|
-
scout_checklistexecution_api_FailedToResolve.__name__ = "FailedToResolve"
|
|
23161
|
-
scout_checklistexecution_api_FailedToResolve.__qualname__ = "FailedToResolve"
|
|
23162
|
-
scout_checklistexecution_api_FailedToResolve.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23163
|
-
|
|
23164
|
-
|
|
23165
23262
|
class scout_checklistexecution_api_Failure(ConjureBeanType):
|
|
23166
23263
|
"""
|
|
23167
23264
|
The time range where a check was failing.
|
|
@@ -23194,6 +23291,22 @@ scout_checklistexecution_api_Failure.__qualname__ = "Failure"
|
|
|
23194
23291
|
scout_checklistexecution_api_Failure.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23195
23292
|
|
|
23196
23293
|
|
|
23294
|
+
class scout_checklistexecution_api_Invalid(ConjureBeanType):
|
|
23295
|
+
|
|
23296
|
+
@builtins.classmethod
|
|
23297
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23298
|
+
return {
|
|
23299
|
+
}
|
|
23300
|
+
|
|
23301
|
+
__slots__: List[str] = []
|
|
23302
|
+
|
|
23303
|
+
|
|
23304
|
+
|
|
23305
|
+
scout_checklistexecution_api_Invalid.__name__ = "Invalid"
|
|
23306
|
+
scout_checklistexecution_api_Invalid.__qualname__ = "Invalid"
|
|
23307
|
+
scout_checklistexecution_api_Invalid.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23308
|
+
|
|
23309
|
+
|
|
23197
23310
|
class scout_checklistexecution_api_InvalidStreamingComputeNode(ConjureEnumType):
|
|
23198
23311
|
|
|
23199
23312
|
POINT_PERSISTENCE = 'POINT_PERSISTENCE'
|
|
@@ -23501,35 +23614,6 @@ scout_checklistexecution_api_NoPreviousFailure.__qualname__ = "NoPreviousFailure
|
|
|
23501
23614
|
scout_checklistexecution_api_NoPreviousFailure.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23502
23615
|
|
|
23503
23616
|
|
|
23504
|
-
class scout_checklistexecution_api_NotComputable(ConjureBeanType):
|
|
23505
|
-
"""
|
|
23506
|
-
The result cannot be computed in a streaming context.
|
|
23507
|
-
"""
|
|
23508
|
-
|
|
23509
|
-
@builtins.classmethod
|
|
23510
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23511
|
-
return {
|
|
23512
|
-
'message': ConjureFieldDefinition('message', str)
|
|
23513
|
-
}
|
|
23514
|
-
|
|
23515
|
-
__slots__: List[str] = ['_message']
|
|
23516
|
-
|
|
23517
|
-
def __init__(self, message: str) -> None:
|
|
23518
|
-
self._message = message
|
|
23519
|
-
|
|
23520
|
-
@builtins.property
|
|
23521
|
-
def message(self) -> str:
|
|
23522
|
-
"""
|
|
23523
|
-
Why the result couldn't be computed
|
|
23524
|
-
"""
|
|
23525
|
-
return self._message
|
|
23526
|
-
|
|
23527
|
-
|
|
23528
|
-
scout_checklistexecution_api_NotComputable.__name__ = "NotComputable"
|
|
23529
|
-
scout_checklistexecution_api_NotComputable.__qualname__ = "NotComputable"
|
|
23530
|
-
scout_checklistexecution_api_NotComputable.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23531
|
-
|
|
23532
|
-
|
|
23533
23617
|
class scout_checklistexecution_api_NotComputed(ConjureBeanType):
|
|
23534
23618
|
"""
|
|
23535
23619
|
The result has not been computed, and is not currently being computed.
|
|
@@ -23569,7 +23653,6 @@ class scout_checklistexecution_api_ResolvedCheckStatus(ConjureBeanType):
|
|
|
23569
23653
|
"""
|
|
23570
23654
|
Provides the resolution status for the required channels for a check and the set of invalid streaming compute nodes present within the check's compute graph.
|
|
23571
23655
|
Uniqueness between checkRid and checkParameterIndex pairs is guaranteed.
|
|
23572
|
-
checkParameterIndex is optional and will be null if the check is not parameterized otherwise it will be the index of the parameter.
|
|
23573
23656
|
"""
|
|
23574
23657
|
|
|
23575
23658
|
@builtins.classmethod
|
|
@@ -23595,6 +23678,10 @@ checkParameterIndex is optional and will be null if the check is not parameteriz
|
|
|
23595
23678
|
|
|
23596
23679
|
@builtins.property
|
|
23597
23680
|
def check_parameter_index(self) -> Optional[int]:
|
|
23681
|
+
"""
|
|
23682
|
+
Checks can define a single range computation which can evaluate over multiple implementations of a context.
|
|
23683
|
+
The check implementation index will correspond to the implementation index of the check condition.
|
|
23684
|
+
"""
|
|
23598
23685
|
return self._check_parameter_index
|
|
23599
23686
|
|
|
23600
23687
|
@builtins.property
|
|
@@ -23611,6 +23698,22 @@ scout_checklistexecution_api_ResolvedCheckStatus.__qualname__ = "ResolvedCheckSt
|
|
|
23611
23698
|
scout_checklistexecution_api_ResolvedCheckStatus.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23612
23699
|
|
|
23613
23700
|
|
|
23701
|
+
class scout_checklistexecution_api_Skipped(ConjureBeanType):
|
|
23702
|
+
|
|
23703
|
+
@builtins.classmethod
|
|
23704
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23705
|
+
return {
|
|
23706
|
+
}
|
|
23707
|
+
|
|
23708
|
+
__slots__: List[str] = []
|
|
23709
|
+
|
|
23710
|
+
|
|
23711
|
+
|
|
23712
|
+
scout_checklistexecution_api_Skipped.__name__ = "Skipped"
|
|
23713
|
+
scout_checklistexecution_api_Skipped.__qualname__ = "Skipped"
|
|
23714
|
+
scout_checklistexecution_api_Skipped.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23715
|
+
|
|
23716
|
+
|
|
23614
23717
|
class scout_checklistexecution_api_StopStreamingChecklistForAssetsRequest(ConjureBeanType):
|
|
23615
23718
|
|
|
23616
23719
|
@builtins.classmethod
|
|
@@ -23640,6 +23743,22 @@ scout_checklistexecution_api_StopStreamingChecklistForAssetsRequest.__qualname__
|
|
|
23640
23743
|
scout_checklistexecution_api_StopStreamingChecklistForAssetsRequest.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23641
23744
|
|
|
23642
23745
|
|
|
23746
|
+
class scout_checklistexecution_api_StreamingChecklistFailed(ConjureBeanType):
|
|
23747
|
+
|
|
23748
|
+
@builtins.classmethod
|
|
23749
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23750
|
+
return {
|
|
23751
|
+
}
|
|
23752
|
+
|
|
23753
|
+
__slots__: List[str] = []
|
|
23754
|
+
|
|
23755
|
+
|
|
23756
|
+
|
|
23757
|
+
scout_checklistexecution_api_StreamingChecklistFailed.__name__ = "StreamingChecklistFailed"
|
|
23758
|
+
scout_checklistexecution_api_StreamingChecklistFailed.__qualname__ = "StreamingChecklistFailed"
|
|
23759
|
+
scout_checklistexecution_api_StreamingChecklistFailed.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23760
|
+
|
|
23761
|
+
|
|
23643
23762
|
class scout_checklistexecution_api_StreamingChecklistInfo(ConjureBeanType):
|
|
23644
23763
|
|
|
23645
23764
|
@builtins.classmethod
|
|
@@ -23669,6 +23788,54 @@ scout_checklistexecution_api_StreamingChecklistInfo.__qualname__ = "StreamingChe
|
|
|
23669
23788
|
scout_checklistexecution_api_StreamingChecklistInfo.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23670
23789
|
|
|
23671
23790
|
|
|
23791
|
+
class scout_checklistexecution_api_StreamingChecklistInitializing(ConjureBeanType):
|
|
23792
|
+
|
|
23793
|
+
@builtins.classmethod
|
|
23794
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23795
|
+
return {
|
|
23796
|
+
}
|
|
23797
|
+
|
|
23798
|
+
__slots__: List[str] = []
|
|
23799
|
+
|
|
23800
|
+
|
|
23801
|
+
|
|
23802
|
+
scout_checklistexecution_api_StreamingChecklistInitializing.__name__ = "StreamingChecklistInitializing"
|
|
23803
|
+
scout_checklistexecution_api_StreamingChecklistInitializing.__qualname__ = "StreamingChecklistInitializing"
|
|
23804
|
+
scout_checklistexecution_api_StreamingChecklistInitializing.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23805
|
+
|
|
23806
|
+
|
|
23807
|
+
class scout_checklistexecution_api_StreamingChecklistRunning(ConjureBeanType):
|
|
23808
|
+
|
|
23809
|
+
@builtins.classmethod
|
|
23810
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23811
|
+
return {
|
|
23812
|
+
'commit_id': ConjureFieldDefinition('commitId', scout_versioning_api_CommitId),
|
|
23813
|
+
'check_results': ConjureFieldDefinition('checkResults', List[scout_checklistexecution_api_CheckLiveStatusResponse])
|
|
23814
|
+
}
|
|
23815
|
+
|
|
23816
|
+
__slots__: List[str] = ['_commit_id', '_check_results']
|
|
23817
|
+
|
|
23818
|
+
def __init__(self, check_results: List["scout_checklistexecution_api_CheckLiveStatusResponse"], commit_id: str) -> None:
|
|
23819
|
+
self._commit_id = commit_id
|
|
23820
|
+
self._check_results = check_results
|
|
23821
|
+
|
|
23822
|
+
@builtins.property
|
|
23823
|
+
def commit_id(self) -> str:
|
|
23824
|
+
"""
|
|
23825
|
+
The commitId of the checklist that is currently executing.
|
|
23826
|
+
"""
|
|
23827
|
+
return self._commit_id
|
|
23828
|
+
|
|
23829
|
+
@builtins.property
|
|
23830
|
+
def check_results(self) -> List["scout_checklistexecution_api_CheckLiveStatusResponse"]:
|
|
23831
|
+
return self._check_results
|
|
23832
|
+
|
|
23833
|
+
|
|
23834
|
+
scout_checklistexecution_api_StreamingChecklistRunning.__name__ = "StreamingChecklistRunning"
|
|
23835
|
+
scout_checklistexecution_api_StreamingChecklistRunning.__qualname__ = "StreamingChecklistRunning"
|
|
23836
|
+
scout_checklistexecution_api_StreamingChecklistRunning.__module__ = "nominal_api.scout_checklistexecution_api"
|
|
23837
|
+
|
|
23838
|
+
|
|
23672
23839
|
class scout_checklistexecution_api_ValidateChecklistResolutionRequest(ConjureBeanType):
|
|
23673
23840
|
"""
|
|
23674
23841
|
Validates that the channels referenced by the checklist can be resolved against the data sources.
|
|
@@ -72916,15 +73083,19 @@ class timeseries_logicalseries_api_CsvLocator(ConjureBeanType):
|
|
|
72916
73083
|
return {
|
|
72917
73084
|
's3_path': ConjureFieldDefinition('s3Path', api_S3Path),
|
|
72918
73085
|
'index': ConjureFieldDefinition('index', int),
|
|
72919
|
-
'uses_legacy_format': ConjureFieldDefinition('usesLegacyFormat', OptionalTypeWrapper[bool])
|
|
73086
|
+
'uses_legacy_format': ConjureFieldDefinition('usesLegacyFormat', OptionalTypeWrapper[bool]),
|
|
73087
|
+
'x_series_handle': ConjureFieldDefinition('xSeriesHandle', OptionalTypeWrapper[str]),
|
|
73088
|
+
'y_series_handle': ConjureFieldDefinition('ySeriesHandle', OptionalTypeWrapper[str])
|
|
72920
73089
|
}
|
|
72921
73090
|
|
|
72922
|
-
__slots__: List[str] = ['_s3_path', '_index', '_uses_legacy_format']
|
|
73091
|
+
__slots__: List[str] = ['_s3_path', '_index', '_uses_legacy_format', '_x_series_handle', '_y_series_handle']
|
|
72923
73092
|
|
|
72924
|
-
def __init__(self, index: int, s3_path: str, uses_legacy_format: Optional[bool] = None) -> None:
|
|
73093
|
+
def __init__(self, index: int, s3_path: str, uses_legacy_format: Optional[bool] = None, x_series_handle: Optional[str] = None, y_series_handle: Optional[str] = None) -> None:
|
|
72925
73094
|
self._s3_path = s3_path
|
|
72926
73095
|
self._index = index
|
|
72927
73096
|
self._uses_legacy_format = uses_legacy_format
|
|
73097
|
+
self._x_series_handle = x_series_handle
|
|
73098
|
+
self._y_series_handle = y_series_handle
|
|
72928
73099
|
|
|
72929
73100
|
@builtins.property
|
|
72930
73101
|
def s3_path(self) -> str:
|
|
@@ -72942,6 +73113,20 @@ and values are split into two separate arrow files.
|
|
|
72942
73113
|
"""
|
|
72943
73114
|
return self._uses_legacy_format
|
|
72944
73115
|
|
|
73116
|
+
@builtins.property
|
|
73117
|
+
def x_series_handle(self) -> Optional[str]:
|
|
73118
|
+
"""
|
|
73119
|
+
The handle of the x series to use for this logical series.
|
|
73120
|
+
"""
|
|
73121
|
+
return self._x_series_handle
|
|
73122
|
+
|
|
73123
|
+
@builtins.property
|
|
73124
|
+
def y_series_handle(self) -> Optional[str]:
|
|
73125
|
+
"""
|
|
73126
|
+
The handle of the y series to use for this logical series.
|
|
73127
|
+
"""
|
|
73128
|
+
return self._y_series_handle
|
|
73129
|
+
|
|
72945
73130
|
|
|
72946
73131
|
timeseries_logicalseries_api_CsvLocator.__name__ = "CsvLocator"
|
|
72947
73132
|
timeseries_logicalseries_api_CsvLocator.__qualname__ = "CsvLocator"
|
|
@@ -73,6 +73,7 @@ from .._impl import (
|
|
|
73
73
|
ingest_api_NewDatasetIngestDestination as NewDatasetIngestDestination,
|
|
74
74
|
ingest_api_NewVideoIngestDestination as NewVideoIngestDestination,
|
|
75
75
|
ingest_api_NoTimestampManifest as NoTimestampManifest,
|
|
76
|
+
ingest_api_ParquetOpts as ParquetOpts,
|
|
76
77
|
ingest_api_Part as Part,
|
|
77
78
|
ingest_api_PartWithSize as PartWithSize,
|
|
78
79
|
ingest_api_RelativeTimestamp as RelativeTimestamp,
|
|
@@ -3,25 +3,25 @@ from .._impl import (
|
|
|
3
3
|
scout_checklistexecution_api_AssetStreamConfiguration as AssetStreamConfiguration,
|
|
4
4
|
scout_checklistexecution_api_BatchChecklistLiveStatusRequest as BatchChecklistLiveStatusRequest,
|
|
5
5
|
scout_checklistexecution_api_BatchChecklistLiveStatusResponse as BatchChecklistLiveStatusResponse,
|
|
6
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistRequest as BatchGetStreamingChecklistRequest,
|
|
7
|
+
scout_checklistexecution_api_BatchGetStreamingChecklistResponse as BatchGetStreamingChecklistResponse,
|
|
6
8
|
scout_checklistexecution_api_BatchValidateChecklistResolutionRequest as BatchValidateChecklistResolutionRequest,
|
|
7
9
|
scout_checklistexecution_api_BatchValidateChecklistResolutionResponse as BatchValidateChecklistResolutionResponse,
|
|
8
10
|
scout_checklistexecution_api_ChannelLocatorWithStatus as ChannelLocatorWithStatus,
|
|
9
11
|
scout_checklistexecution_api_ChannelResolutionStatus as ChannelResolutionStatus,
|
|
10
12
|
scout_checklistexecution_api_CheckLiveStatusResponse as CheckLiveStatusResponse,
|
|
11
|
-
scout_checklistexecution_api_CheckLiveStatusResult as CheckLiveStatusResult,
|
|
12
|
-
scout_checklistexecution_api_CheckLiveStatusResultVisitor as CheckLiveStatusResultVisitor,
|
|
13
13
|
scout_checklistexecution_api_CheckStatus as CheckStatus,
|
|
14
14
|
scout_checklistexecution_api_CheckStatusVisitor as CheckStatusVisitor,
|
|
15
15
|
scout_checklistexecution_api_ChecklistExecutionService as ChecklistExecutionService,
|
|
16
|
+
scout_checklistexecution_api_ChecklistLiveStatus as ChecklistLiveStatus,
|
|
16
17
|
scout_checklistexecution_api_ChecklistLiveStatusRequest as ChecklistLiveStatusRequest,
|
|
17
18
|
scout_checklistexecution_api_ChecklistLiveStatusResponse as ChecklistLiveStatusResponse,
|
|
18
|
-
|
|
19
|
-
scout_checklistexecution_api_ComputedResult as ComputedResult,
|
|
19
|
+
scout_checklistexecution_api_ChecklistLiveStatusVisitor as ChecklistLiveStatusVisitor,
|
|
20
20
|
scout_checklistexecution_api_Computing as Computing,
|
|
21
21
|
scout_checklistexecution_api_ExecuteChecklistForAssetsRequest as ExecuteChecklistForAssetsRequest,
|
|
22
22
|
scout_checklistexecution_api_Fail as Fail,
|
|
23
|
-
scout_checklistexecution_api_FailedToResolve as FailedToResolve,
|
|
24
23
|
scout_checklistexecution_api_Failure as Failure,
|
|
24
|
+
scout_checklistexecution_api_Invalid as Invalid,
|
|
25
25
|
scout_checklistexecution_api_InvalidStreamingComputeNode as InvalidStreamingComputeNode,
|
|
26
26
|
scout_checklistexecution_api_LastFailure as LastFailure,
|
|
27
27
|
scout_checklistexecution_api_LastFailureVisitor as LastFailureVisitor,
|
|
@@ -30,12 +30,15 @@ from .._impl import (
|
|
|
30
30
|
scout_checklistexecution_api_ListStreamingChecklistRequest as ListStreamingChecklistRequest,
|
|
31
31
|
scout_checklistexecution_api_ListStreamingChecklistResponse as ListStreamingChecklistResponse,
|
|
32
32
|
scout_checklistexecution_api_NoPreviousFailure as NoPreviousFailure,
|
|
33
|
-
scout_checklistexecution_api_NotComputable as NotComputable,
|
|
34
33
|
scout_checklistexecution_api_NotComputed as NotComputed,
|
|
35
34
|
scout_checklistexecution_api_Pass as Pass,
|
|
36
35
|
scout_checklistexecution_api_ResolvedCheckStatus as ResolvedCheckStatus,
|
|
36
|
+
scout_checklistexecution_api_Skipped as Skipped,
|
|
37
37
|
scout_checklistexecution_api_StopStreamingChecklistForAssetsRequest as StopStreamingChecklistForAssetsRequest,
|
|
38
|
+
scout_checklistexecution_api_StreamingChecklistFailed as StreamingChecklistFailed,
|
|
38
39
|
scout_checklistexecution_api_StreamingChecklistInfo as StreamingChecklistInfo,
|
|
40
|
+
scout_checklistexecution_api_StreamingChecklistInitializing as StreamingChecklistInitializing,
|
|
41
|
+
scout_checklistexecution_api_StreamingChecklistRunning as StreamingChecklistRunning,
|
|
39
42
|
scout_checklistexecution_api_ValidateChecklistResolutionRequest as ValidateChecklistResolutionRequest,
|
|
40
43
|
scout_checklistexecution_api_ValidateChecklistResolutionResponse as ValidateChecklistResolutionResponse,
|
|
41
44
|
)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=KHJDIyibxuSy5qn5THJqs1ukbFKshe7Fr2nCQICCFR4,1968
|
|
2
|
+
nominal_api/_impl.py,sha256=Wp_eJzHp5nSlc-pwBdiwcwumVefiBA-2BZkRpT081m8,2913421
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=kJBEE_HLVpKYdLH12KyO-cSAVzwxYpBwaaDutCtT-LM,1236
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=CAtt44XgNZEEUDv-BbEbYtuxQ8y1wqSZU-STjBYdZv8,80
|
|
@@ -15,7 +15,7 @@ nominal_api/datasource_logset/__init__.py,sha256=H3fNxqyYC490MwvdWbt5BwhgWQUev7u
|
|
|
15
15
|
nominal_api/datasource_logset_api/__init__.py,sha256=JyjO1tQmG-HZ7kYMi8lSfeaaYddBZdCMIyqc0IUJfWo,1006
|
|
16
16
|
nominal_api/datasource_pagination_api/__init__.py,sha256=3GO8TAUavOe6dUEitOhje74aSZHjTKVI5N1MNuct1lI,212
|
|
17
17
|
nominal_api/event/__init__.py,sha256=YUhvDFXtyAn08WNd7Xwnybz3PtflvtTcIOaunRS5-1I,836
|
|
18
|
-
nominal_api/ingest_api/__init__.py,sha256=
|
|
18
|
+
nominal_api/ingest_api/__init__.py,sha256=R0c6aMKwtqya4icx6Ffd31jgfQCwrr-yntkg9vOde_0,5673
|
|
19
19
|
nominal_api/persistent_compute_api/__init__.py,sha256=5qZTTfN4X9u_qunFnWbLrPpG_FO5h7YBX68-_F6gYyQ,1031
|
|
20
20
|
nominal_api/scout/__init__.py,sha256=ip3XK_9jJKAoFiCifUVMTpDMiUE4mWIdGzMDu7LASus,324
|
|
21
21
|
nominal_api/scout_api/__init__.py,sha256=biO4DEygbGcLwM6Dg2VuvMra3A5EW6NBjukbIemXoG8,178
|
|
@@ -25,7 +25,7 @@ nominal_api/scout_catalog/__init__.py,sha256=ZGm4w1YKd4B-3CNxijTpB-1B653nctA_R0u
|
|
|
25
25
|
nominal_api/scout_channelvariables_api/__init__.py,sha256=4OQV1O-M2MQE36yCGlyYftnqaXSddYTYTyGce_WC4JQ,466
|
|
26
26
|
nominal_api/scout_chart_api/__init__.py,sha256=sw7WSYs6SarSW7x-3IBkSIrVea1cVFnQnpYiNKbCWnQ,184
|
|
27
27
|
nominal_api/scout_chartdefinition_api/__init__.py,sha256=pXGFjL1eYAJXOxYXzRF6FvI6-uwRcscbF52uR1UqG_A,9486
|
|
28
|
-
nominal_api/scout_checklistexecution_api/__init__.py,sha256=
|
|
28
|
+
nominal_api/scout_checklistexecution_api/__init__.py,sha256=1_nOnCSWn7bniSvTfskQ9LSJq5U2SRAKICZY9qipOJc,3579
|
|
29
29
|
nominal_api/scout_checks_api/__init__.py,sha256=RJH7HsXjUhItC11V9C-hfv6lkIfiSXyxnB8slUpaT2g,5203
|
|
30
30
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=8BL5jE9NDxqCj9DyvZWSPhq6zw2J7xp6aLsl3x9rpyw,4530
|
|
31
31
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=1LCXQe64tDqqeMQixW8PI-R_edSz7F5X0x2_ufEuC8M,480
|
|
@@ -72,7 +72,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=Q9iZHurmyDsJIFbUg-Eb
|
|
|
72
72
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
73
73
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
74
74
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
75
|
-
nominal_api-0.
|
|
76
|
-
nominal_api-0.
|
|
77
|
-
nominal_api-0.
|
|
78
|
-
nominal_api-0.
|
|
75
|
+
nominal_api-0.608.0.dist-info/METADATA,sha256=oN7fE7_RlXLBED9IjmlHUq1c5S_ey-OJpzWqb65Q4CA,199
|
|
76
|
+
nominal_api-0.608.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
77
|
+
nominal_api-0.608.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
78
|
+
nominal_api-0.608.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|