nominal-api 0.629.0__py3-none-any.whl → 0.630.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 +153 -15
- nominal_api/api_rids/__init__.py +1 -0
- nominal_api/event/__init__.py +2 -0
- nominal_api/ingest_workflow_api/__init__.py +1 -0
- nominal_api/scout_datareview_api/__init__.py +0 -1
- {nominal_api-0.629.0.dist-info → nominal_api-0.630.0.dist-info}/METADATA +1 -1
- {nominal_api-0.629.0.dist-info → nominal_api-0.630.0.dist-info}/RECORD +10 -10
- {nominal_api-0.629.0.dist-info → nominal_api-0.630.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.629.0.dist-info → nominal_api-0.630.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -5552,6 +5552,47 @@ event_ArchiveEvent.__qualname__ = "ArchiveEvent"
|
|
|
5552
5552
|
event_ArchiveEvent.__module__ = "nominal_api.event"
|
|
5553
5553
|
|
|
5554
5554
|
|
|
5555
|
+
class event_CheckOriginMetadata(ConjureBeanType):
|
|
5556
|
+
|
|
5557
|
+
@builtins.classmethod
|
|
5558
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5559
|
+
return {
|
|
5560
|
+
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
|
5561
|
+
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
5562
|
+
'check_lineage_rid': ConjureFieldDefinition('checkLineageRid', scout_rids_api_CheckLineageRid),
|
|
5563
|
+
'implementation_index': ConjureFieldDefinition('implementationIndex', OptionalTypeWrapper[int])
|
|
5564
|
+
}
|
|
5565
|
+
|
|
5566
|
+
__slots__: List[str] = ['_check_evaluation_rid', '_check_rid', '_check_lineage_rid', '_implementation_index']
|
|
5567
|
+
|
|
5568
|
+
def __init__(self, check_evaluation_rid: str, check_lineage_rid: str, check_rid: str, implementation_index: Optional[int] = None) -> None:
|
|
5569
|
+
self._check_evaluation_rid = check_evaluation_rid
|
|
5570
|
+
self._check_rid = check_rid
|
|
5571
|
+
self._check_lineage_rid = check_lineage_rid
|
|
5572
|
+
self._implementation_index = implementation_index
|
|
5573
|
+
|
|
5574
|
+
@builtins.property
|
|
5575
|
+
def check_evaluation_rid(self) -> str:
|
|
5576
|
+
return self._check_evaluation_rid
|
|
5577
|
+
|
|
5578
|
+
@builtins.property
|
|
5579
|
+
def check_rid(self) -> str:
|
|
5580
|
+
return self._check_rid
|
|
5581
|
+
|
|
5582
|
+
@builtins.property
|
|
5583
|
+
def check_lineage_rid(self) -> str:
|
|
5584
|
+
return self._check_lineage_rid
|
|
5585
|
+
|
|
5586
|
+
@builtins.property
|
|
5587
|
+
def implementation_index(self) -> Optional[int]:
|
|
5588
|
+
return self._implementation_index
|
|
5589
|
+
|
|
5590
|
+
|
|
5591
|
+
event_CheckOriginMetadata.__name__ = "CheckOriginMetadata"
|
|
5592
|
+
event_CheckOriginMetadata.__qualname__ = "CheckOriginMetadata"
|
|
5593
|
+
event_CheckOriginMetadata.__module__ = "nominal_api.event"
|
|
5594
|
+
|
|
5595
|
+
|
|
5555
5596
|
class event_CreateEvent(ConjureBeanType):
|
|
5556
5597
|
|
|
5557
5598
|
@builtins.classmethod
|
|
@@ -5632,6 +5673,38 @@ event_CreateEvent.__qualname__ = "CreateEvent"
|
|
|
5632
5673
|
event_CreateEvent.__module__ = "nominal_api.event"
|
|
5633
5674
|
|
|
5634
5675
|
|
|
5676
|
+
class event_DataReviewEventOrigin(ConjureBeanType):
|
|
5677
|
+
|
|
5678
|
+
@builtins.classmethod
|
|
5679
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5680
|
+
return {
|
|
5681
|
+
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
|
5682
|
+
'check_metadata': ConjureFieldDefinition('checkMetadata', event_CheckOriginMetadata)
|
|
5683
|
+
}
|
|
5684
|
+
|
|
5685
|
+
__slots__: List[str] = ['_data_review_rid', '_check_metadata']
|
|
5686
|
+
|
|
5687
|
+
def __init__(self, check_metadata: "event_CheckOriginMetadata", data_review_rid: str) -> None:
|
|
5688
|
+
self._data_review_rid = data_review_rid
|
|
5689
|
+
self._check_metadata = check_metadata
|
|
5690
|
+
|
|
5691
|
+
@builtins.property
|
|
5692
|
+
def data_review_rid(self) -> str:
|
|
5693
|
+
return self._data_review_rid
|
|
5694
|
+
|
|
5695
|
+
@builtins.property
|
|
5696
|
+
def check_metadata(self) -> "event_CheckOriginMetadata":
|
|
5697
|
+
"""
|
|
5698
|
+
Metadata about the check that created this event.
|
|
5699
|
+
"""
|
|
5700
|
+
return self._check_metadata
|
|
5701
|
+
|
|
5702
|
+
|
|
5703
|
+
event_DataReviewEventOrigin.__name__ = "DataReviewEventOrigin"
|
|
5704
|
+
event_DataReviewEventOrigin.__qualname__ = "DataReviewEventOrigin"
|
|
5705
|
+
event_DataReviewEventOrigin.__module__ = "nominal_api.event"
|
|
5706
|
+
|
|
5707
|
+
|
|
5635
5708
|
class event_Event(ConjureBeanType):
|
|
5636
5709
|
|
|
5637
5710
|
@builtins.classmethod
|
|
@@ -5742,13 +5815,15 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5742
5815
|
_workbook: Optional["event_WorkbookEventOrigin"] = None
|
|
5743
5816
|
_template: Optional["event_TemplateEventOrigin"] = None
|
|
5744
5817
|
_api: Optional["event_ApiEventOrigin"] = None
|
|
5818
|
+
_data_review: Optional["event_DataReviewEventOrigin"] = None
|
|
5745
5819
|
|
|
5746
5820
|
@builtins.classmethod
|
|
5747
5821
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5748
5822
|
return {
|
|
5749
5823
|
'workbook': ConjureFieldDefinition('workbook', event_WorkbookEventOrigin),
|
|
5750
5824
|
'template': ConjureFieldDefinition('template', event_TemplateEventOrigin),
|
|
5751
|
-
'api': ConjureFieldDefinition('api', event_ApiEventOrigin)
|
|
5825
|
+
'api': ConjureFieldDefinition('api', event_ApiEventOrigin),
|
|
5826
|
+
'data_review': ConjureFieldDefinition('dataReview', event_DataReviewEventOrigin)
|
|
5752
5827
|
}
|
|
5753
5828
|
|
|
5754
5829
|
def __init__(
|
|
@@ -5756,10 +5831,11 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5756
5831
|
workbook: Optional["event_WorkbookEventOrigin"] = None,
|
|
5757
5832
|
template: Optional["event_TemplateEventOrigin"] = None,
|
|
5758
5833
|
api: Optional["event_ApiEventOrigin"] = None,
|
|
5834
|
+
data_review: Optional["event_DataReviewEventOrigin"] = None,
|
|
5759
5835
|
type_of_union: Optional[str] = None
|
|
5760
5836
|
) -> None:
|
|
5761
5837
|
if type_of_union is None:
|
|
5762
|
-
if (workbook is not None) + (template is not None) + (api is not None) != 1:
|
|
5838
|
+
if (workbook is not None) + (template is not None) + (api is not None) + (data_review is not None) != 1:
|
|
5763
5839
|
raise ValueError('a union must contain a single member')
|
|
5764
5840
|
|
|
5765
5841
|
if workbook is not None:
|
|
@@ -5771,6 +5847,9 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5771
5847
|
if api is not None:
|
|
5772
5848
|
self._api = api
|
|
5773
5849
|
self._type = 'api'
|
|
5850
|
+
if data_review is not None:
|
|
5851
|
+
self._data_review = data_review
|
|
5852
|
+
self._type = 'dataReview'
|
|
5774
5853
|
|
|
5775
5854
|
elif type_of_union == 'workbook':
|
|
5776
5855
|
if workbook is None:
|
|
@@ -5787,6 +5866,11 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5787
5866
|
raise ValueError('a union value must not be None')
|
|
5788
5867
|
self._api = api
|
|
5789
5868
|
self._type = 'api'
|
|
5869
|
+
elif type_of_union == 'dataReview':
|
|
5870
|
+
if data_review is None:
|
|
5871
|
+
raise ValueError('a union value must not be None')
|
|
5872
|
+
self._data_review = data_review
|
|
5873
|
+
self._type = 'dataReview'
|
|
5790
5874
|
|
|
5791
5875
|
@builtins.property
|
|
5792
5876
|
def workbook(self) -> Optional["event_WorkbookEventOrigin"]:
|
|
@@ -5809,6 +5893,13 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5809
5893
|
"""
|
|
5810
5894
|
return self._api
|
|
5811
5895
|
|
|
5896
|
+
@builtins.property
|
|
5897
|
+
def data_review(self) -> Optional["event_DataReviewEventOrigin"]:
|
|
5898
|
+
"""
|
|
5899
|
+
This event was created automatically from a checklist execution.
|
|
5900
|
+
"""
|
|
5901
|
+
return self._data_review
|
|
5902
|
+
|
|
5812
5903
|
def accept(self, visitor) -> Any:
|
|
5813
5904
|
if not isinstance(visitor, event_EventOriginVisitor):
|
|
5814
5905
|
raise ValueError('{} is not an instance of event_EventOriginVisitor'.format(visitor.__class__.__name__))
|
|
@@ -5818,6 +5909,8 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5818
5909
|
return visitor._template(self.template)
|
|
5819
5910
|
if self._type == 'api' and self.api is not None:
|
|
5820
5911
|
return visitor._api(self.api)
|
|
5912
|
+
if self._type == 'dataReview' and self.data_review is not None:
|
|
5913
|
+
return visitor._data_review(self.data_review)
|
|
5821
5914
|
|
|
5822
5915
|
|
|
5823
5916
|
event_EventOrigin.__name__ = "EventOrigin"
|
|
@@ -5839,6 +5932,10 @@ class event_EventOriginVisitor:
|
|
|
5839
5932
|
def _api(self, api: "event_ApiEventOrigin") -> Any:
|
|
5840
5933
|
pass
|
|
5841
5934
|
|
|
5935
|
+
@abstractmethod
|
|
5936
|
+
def _data_review(self, data_review: "event_DataReviewEventOrigin") -> Any:
|
|
5937
|
+
pass
|
|
5938
|
+
|
|
5842
5939
|
|
|
5843
5940
|
event_EventOriginVisitor.__name__ = "EventOriginVisitor"
|
|
5844
5941
|
event_EventOriginVisitor.__qualname__ = "EventOriginVisitor"
|
|
@@ -9217,14 +9314,16 @@ class ingest_api_InitiateMultipartUploadResponse(ConjureBeanType):
|
|
|
9217
9314
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
9218
9315
|
return {
|
|
9219
9316
|
'upload_id': ConjureFieldDefinition('uploadId', str),
|
|
9220
|
-
'key': ConjureFieldDefinition('key', str)
|
|
9317
|
+
'key': ConjureFieldDefinition('key', str),
|
|
9318
|
+
'bucket': ConjureFieldDefinition('bucket', str)
|
|
9221
9319
|
}
|
|
9222
9320
|
|
|
9223
|
-
__slots__: List[str] = ['_upload_id', '_key']
|
|
9321
|
+
__slots__: List[str] = ['_upload_id', '_key', '_bucket']
|
|
9224
9322
|
|
|
9225
|
-
def __init__(self, key: str, upload_id: str) -> None:
|
|
9323
|
+
def __init__(self, bucket: str, key: str, upload_id: str) -> None:
|
|
9226
9324
|
self._upload_id = upload_id
|
|
9227
9325
|
self._key = key
|
|
9326
|
+
self._bucket = bucket
|
|
9228
9327
|
|
|
9229
9328
|
@builtins.property
|
|
9230
9329
|
def upload_id(self) -> str:
|
|
@@ -9234,6 +9333,10 @@ class ingest_api_InitiateMultipartUploadResponse(ConjureBeanType):
|
|
|
9234
9333
|
def key(self) -> str:
|
|
9235
9334
|
return self._key
|
|
9236
9335
|
|
|
9336
|
+
@builtins.property
|
|
9337
|
+
def bucket(self) -> str:
|
|
9338
|
+
return self._bucket
|
|
9339
|
+
|
|
9237
9340
|
|
|
9238
9341
|
ingest_api_InitiateMultipartUploadResponse.__name__ = "InitiateMultipartUploadResponse"
|
|
9239
9342
|
ingest_api_InitiateMultipartUploadResponse.__qualname__ = "InitiateMultipartUploadResponse"
|
|
@@ -11400,16 +11503,18 @@ class ingest_workflow_api_EnsureExtractorJobCreatedRequest(ConjureBeanType):
|
|
|
11400
11503
|
'workspace_rid': ConjureFieldDefinition('workspaceRid', api_rids_WorkspaceRid),
|
|
11401
11504
|
'ingest_job_uuid': ConjureFieldDefinition('ingestJobUuid', str),
|
|
11402
11505
|
'containerized_extractor': ConjureFieldDefinition('containerizedExtractor', ingest_api_ContainerizedExtractor),
|
|
11403
|
-
'source_handles': ConjureFieldDefinition('sourceHandles', Dict[str, scout_catalog_S3Handle])
|
|
11506
|
+
'source_handles': ConjureFieldDefinition('sourceHandles', Dict[str, scout_catalog_S3Handle]),
|
|
11507
|
+
'multipart_upload_details': ConjureFieldDefinition('multipartUploadDetails', ingest_workflow_api_MultipartUploadDetails)
|
|
11404
11508
|
}
|
|
11405
11509
|
|
|
11406
|
-
__slots__: List[str] = ['_workspace_rid', '_ingest_job_uuid', '_containerized_extractor', '_source_handles']
|
|
11510
|
+
__slots__: List[str] = ['_workspace_rid', '_ingest_job_uuid', '_containerized_extractor', '_source_handles', '_multipart_upload_details']
|
|
11407
11511
|
|
|
11408
|
-
def __init__(self, containerized_extractor: "ingest_api_ContainerizedExtractor", ingest_job_uuid: str, source_handles: Dict[str, "scout_catalog_S3Handle"], workspace_rid: str) -> None:
|
|
11512
|
+
def __init__(self, containerized_extractor: "ingest_api_ContainerizedExtractor", ingest_job_uuid: str, multipart_upload_details: "ingest_workflow_api_MultipartUploadDetails", source_handles: Dict[str, "scout_catalog_S3Handle"], workspace_rid: str) -> None:
|
|
11409
11513
|
self._workspace_rid = workspace_rid
|
|
11410
11514
|
self._ingest_job_uuid = ingest_job_uuid
|
|
11411
11515
|
self._containerized_extractor = containerized_extractor
|
|
11412
11516
|
self._source_handles = source_handles
|
|
11517
|
+
self._multipart_upload_details = multipart_upload_details
|
|
11413
11518
|
|
|
11414
11519
|
@builtins.property
|
|
11415
11520
|
def workspace_rid(self) -> str:
|
|
@@ -11427,6 +11532,10 @@ class ingest_workflow_api_EnsureExtractorJobCreatedRequest(ConjureBeanType):
|
|
|
11427
11532
|
def source_handles(self) -> Dict[str, "scout_catalog_S3Handle"]:
|
|
11428
11533
|
return self._source_handles
|
|
11429
11534
|
|
|
11535
|
+
@builtins.property
|
|
11536
|
+
def multipart_upload_details(self) -> "ingest_workflow_api_MultipartUploadDetails":
|
|
11537
|
+
return self._multipart_upload_details
|
|
11538
|
+
|
|
11430
11539
|
|
|
11431
11540
|
ingest_workflow_api_EnsureExtractorJobCreatedRequest.__name__ = "EnsureExtractorJobCreatedRequest"
|
|
11432
11541
|
ingest_workflow_api_EnsureExtractorJobCreatedRequest.__qualname__ = "EnsureExtractorJobCreatedRequest"
|
|
@@ -11809,6 +11918,35 @@ ingest_workflow_api_McapProtoChannelsVisitor.__qualname__ = "McapProtoChannelsVi
|
|
|
11809
11918
|
ingest_workflow_api_McapProtoChannelsVisitor.__module__ = "nominal_api.ingest_workflow_api"
|
|
11810
11919
|
|
|
11811
11920
|
|
|
11921
|
+
class ingest_workflow_api_MultipartUploadDetails(ConjureBeanType):
|
|
11922
|
+
|
|
11923
|
+
@builtins.classmethod
|
|
11924
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
11925
|
+
return {
|
|
11926
|
+
'upload_id': ConjureFieldDefinition('uploadId', str),
|
|
11927
|
+
's3_handle': ConjureFieldDefinition('s3Handle', scout_catalog_S3Handle)
|
|
11928
|
+
}
|
|
11929
|
+
|
|
11930
|
+
__slots__: List[str] = ['_upload_id', '_s3_handle']
|
|
11931
|
+
|
|
11932
|
+
def __init__(self, s3_handle: "scout_catalog_S3Handle", upload_id: str) -> None:
|
|
11933
|
+
self._upload_id = upload_id
|
|
11934
|
+
self._s3_handle = s3_handle
|
|
11935
|
+
|
|
11936
|
+
@builtins.property
|
|
11937
|
+
def upload_id(self) -> str:
|
|
11938
|
+
return self._upload_id
|
|
11939
|
+
|
|
11940
|
+
@builtins.property
|
|
11941
|
+
def s3_handle(self) -> "scout_catalog_S3Handle":
|
|
11942
|
+
return self._s3_handle
|
|
11943
|
+
|
|
11944
|
+
|
|
11945
|
+
ingest_workflow_api_MultipartUploadDetails.__name__ = "MultipartUploadDetails"
|
|
11946
|
+
ingest_workflow_api_MultipartUploadDetails.__qualname__ = "MultipartUploadDetails"
|
|
11947
|
+
ingest_workflow_api_MultipartUploadDetails.__module__ = "nominal_api.ingest_workflow_api"
|
|
11948
|
+
|
|
11949
|
+
|
|
11812
11950
|
class ingest_workflow_api_ObjectLocator(ConjureBeanType):
|
|
11813
11951
|
"""
|
|
11814
11952
|
Locator for files in an object store.
|
|
@@ -26437,7 +26575,7 @@ class scout_checks_api_CheckJobSpec(ConjureBeanType):
|
|
|
26437
26575
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
26438
26576
|
'run_rid': ConjureFieldDefinition('runRid', OptionalTypeWrapper[scout_run_api_RunRid]),
|
|
26439
26577
|
'check_implementation_index': ConjureFieldDefinition('checkImplementationIndex', OptionalTypeWrapper[int]),
|
|
26440
|
-
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid',
|
|
26578
|
+
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
|
26441
26579
|
'check_condition': ConjureFieldDefinition('checkCondition', scout_checks_api_CheckCondition),
|
|
26442
26580
|
'start': ConjureFieldDefinition('start', api_Timestamp),
|
|
26443
26581
|
'end': ConjureFieldDefinition('end', api_Timestamp),
|
|
@@ -27873,7 +28011,7 @@ class scout_checks_api_DeprecatedCheckJobSpec(ConjureBeanType):
|
|
|
27873
28011
|
return {
|
|
27874
28012
|
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
|
27875
28013
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
27876
|
-
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid',
|
|
28014
|
+
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
|
27877
28015
|
'check_condition': ConjureFieldDefinition('checkCondition', scout_checks_api_CheckCondition),
|
|
27878
28016
|
'start': ConjureFieldDefinition('start', api_Timestamp),
|
|
27879
28017
|
'end': ConjureFieldDefinition('end', api_Timestamp),
|
|
@@ -52113,7 +52251,7 @@ class scout_datareview_api_AutomaticCheckEvaluation(ConjureBeanType):
|
|
|
52113
52251
|
@builtins.classmethod
|
|
52114
52252
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52115
52253
|
return {
|
|
52116
|
-
'rid': ConjureFieldDefinition('rid',
|
|
52254
|
+
'rid': ConjureFieldDefinition('rid', api_rids_AutomaticCheckEvaluationRid),
|
|
52117
52255
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
52118
52256
|
'check_implementation_index': ConjureFieldDefinition('checkImplementationIndex', OptionalTypeWrapper[int]),
|
|
52119
52257
|
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
|
@@ -52770,7 +52908,7 @@ class scout_datareview_api_BatchAutomaticCheckEvaluationActionRequest(ConjureBea
|
|
|
52770
52908
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52771
52909
|
return {
|
|
52772
52910
|
'check_evaluation_action': ConjureFieldDefinition('checkEvaluationAction', scout_datareview_api_AutomaticCheckEvaluationReviewAction),
|
|
52773
|
-
'check_evaluation_rids': ConjureFieldDefinition('checkEvaluationRids', List[
|
|
52911
|
+
'check_evaluation_rids': ConjureFieldDefinition('checkEvaluationRids', List[api_rids_AutomaticCheckEvaluationRid])
|
|
52774
52912
|
}
|
|
52775
52913
|
|
|
52776
52914
|
__slots__: List[str] = ['_check_evaluation_action', '_check_evaluation_rids']
|
|
@@ -52964,7 +53102,7 @@ class scout_datareview_api_CheckAlert(ConjureBeanType):
|
|
|
52964
53102
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
52965
53103
|
'implementation_index': ConjureFieldDefinition('implementationIndex', OptionalTypeWrapper[int]),
|
|
52966
53104
|
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
|
52967
|
-
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid',
|
|
53105
|
+
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
|
52968
53106
|
'name': ConjureFieldDefinition('name', str),
|
|
52969
53107
|
'autogenerated_check_title': ConjureFieldDefinition('autogeneratedCheckTitle', OptionalTypeWrapper[str]),
|
|
52970
53108
|
'autogenerated_check_description': ConjureFieldDefinition('autogeneratedCheckDescription', OptionalTypeWrapper[str]),
|
|
@@ -77629,6 +77767,8 @@ scout_channelvariables_api_WorkbookChannelVariableMap = Dict[scout_channelvariab
|
|
|
77629
77767
|
|
|
77630
77768
|
scout_rids_api_TypeRid = str
|
|
77631
77769
|
|
|
77770
|
+
api_rids_AutomaticCheckEvaluationRid = str
|
|
77771
|
+
|
|
77632
77772
|
scout_rids_api_TemplateRid = str
|
|
77633
77773
|
|
|
77634
77774
|
timeseries_logicalseries_api_BucketName = str
|
|
@@ -77655,8 +77795,6 @@ api_rids_EventRid = str
|
|
|
77655
77795
|
|
|
77656
77796
|
persistent_compute_api_Milliseconds = int
|
|
77657
77797
|
|
|
77658
|
-
scout_datareview_api_AutomaticCheckEvaluationRid = str
|
|
77659
|
-
|
|
77660
77798
|
scout_compute_api_ErrorType = str
|
|
77661
77799
|
|
|
77662
77800
|
comments_api_ResourceRid = str
|
nominal_api/api_rids/__init__.py
CHANGED
nominal_api/event/__init__.py
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
from .._impl import (
|
|
3
3
|
event_ApiEventOrigin as ApiEventOrigin,
|
|
4
4
|
event_ArchiveEvent as ArchiveEvent,
|
|
5
|
+
event_CheckOriginMetadata as CheckOriginMetadata,
|
|
5
6
|
event_CreateEvent as CreateEvent,
|
|
7
|
+
event_DataReviewEventOrigin as DataReviewEventOrigin,
|
|
6
8
|
event_Event as Event,
|
|
7
9
|
event_EventOrigin as EventOrigin,
|
|
8
10
|
event_EventOriginVisitor as EventOriginVisitor,
|
|
@@ -15,6 +15,7 @@ from .._impl import (
|
|
|
15
15
|
ingest_workflow_api_McapProtoChannels as McapProtoChannels,
|
|
16
16
|
ingest_workflow_api_McapProtoChannelsVisitor as McapProtoChannelsVisitor,
|
|
17
17
|
ingest_workflow_api_McapTopicName as McapTopicName,
|
|
18
|
+
ingest_workflow_api_MultipartUploadDetails as MultipartUploadDetails,
|
|
18
19
|
ingest_workflow_api_ObjectLocator as ObjectLocator,
|
|
19
20
|
ingest_workflow_api_TimeUnitSeconds as TimeUnitSeconds,
|
|
20
21
|
)
|
|
@@ -10,7 +10,6 @@ from .._impl import (
|
|
|
10
10
|
scout_datareview_api_AutomaticCheckEvaluationReviewActionLog as AutomaticCheckEvaluationReviewActionLog,
|
|
11
11
|
scout_datareview_api_AutomaticCheckEvaluationReviewActionLogEntry as AutomaticCheckEvaluationReviewActionLogEntry,
|
|
12
12
|
scout_datareview_api_AutomaticCheckEvaluationReviewActionVisitor as AutomaticCheckEvaluationReviewActionVisitor,
|
|
13
|
-
scout_datareview_api_AutomaticCheckEvaluationRid as AutomaticCheckEvaluationRid,
|
|
14
13
|
scout_datareview_api_AutomaticCheckEvaluationState as AutomaticCheckEvaluationState,
|
|
15
14
|
scout_datareview_api_AutomaticCheckEvaluationStateVisitor as AutomaticCheckEvaluationStateVisitor,
|
|
16
15
|
scout_datareview_api_AutomaticCheckExecutionFailedToRun as AutomaticCheckExecutionFailedToRun,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=o1to-qLuTDVlk4NzXMuykGoN-S5GqUf7jGTiyppSrRU,1995
|
|
2
|
+
nominal_api/_impl.py,sha256=7vZVXgGY5wZA2_Wx-2PUQvk2pOxMhaXbRMfyK8L853c,3015247
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=1oJPOuAMfV2uClPUW8Ie1nj2Y6j81TDpedcc3yUFTe0,1294
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=CAtt44XgNZEEUDv-BbEbYtuxQ8y1wqSZU-STjBYdZv8,80
|
|
6
|
-
nominal_api/api_rids/__init__.py,sha256=
|
|
6
|
+
nominal_api/api_rids/__init__.py,sha256=8A7KLHxUyUzrx9Gss8zB2i08qf2QjtJgaMvcLfk-P2g,608
|
|
7
7
|
nominal_api/attachments_api/__init__.py,sha256=eQBE8xVTFDaTItCZv-WJSZqSStpgdai192n23pmVeeQ,634
|
|
8
8
|
nominal_api/authentication_api/__init__.py,sha256=HBQrldagoqcvYES_kjB1Eh8oZTZ8SJdX85UZySJB9z0,986
|
|
9
9
|
nominal_api/authorization/__init__.py,sha256=F6JRzi_O0vr5jgwPbDlQMHLLKpCzyc9u5DYHfycnhYU,1130
|
|
@@ -14,9 +14,9 @@ nominal_api/datasource_api/__init__.py,sha256=-0v4FGK22kyCALrJ-LRcwJ-QHDUnFCBqj_
|
|
|
14
14
|
nominal_api/datasource_logset/__init__.py,sha256=H3fNxqyYC490MwvdWbt5BwhgWQUev7uieaLz5hUbZDc,94
|
|
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
|
-
nominal_api/event/__init__.py,sha256=
|
|
17
|
+
nominal_api/event/__init__.py,sha256=7PFDYCfwSm4AfVtWkHIUrLv1qo1LD-Ed09hTpMGjaFA,916
|
|
18
18
|
nominal_api/ingest_api/__init__.py,sha256=jpxmJO0dzcCEIv5iM7xvziQEs1x92XLTm-LmbHxtii4,6953
|
|
19
|
-
nominal_api/ingest_workflow_api/__init__.py,sha256=
|
|
19
|
+
nominal_api/ingest_workflow_api/__init__.py,sha256=Ni-u6N4Ixbp4z1WIymYa1-28UQmDsyQsBgf9HYpunSU,1426
|
|
20
20
|
nominal_api/persistent_compute_api/__init__.py,sha256=OTn2mzP57Bq4MOItkXMockPrDZmHvp6wisuZHcy2K90,1973
|
|
21
21
|
nominal_api/scout/__init__.py,sha256=ip3XK_9jJKAoFiCifUVMTpDMiUE4mWIdGzMDu7LASus,324
|
|
22
22
|
nominal_api/scout_api/__init__.py,sha256=biO4DEygbGcLwM6Dg2VuvMra3A5EW6NBjukbIemXoG8,178
|
|
@@ -35,7 +35,7 @@ nominal_api/scout_compute_api_deprecated/__init__.py,sha256=RggSfc6C1VR1-kNXPWyb
|
|
|
35
35
|
nominal_api/scout_compute_representation_api/__init__.py,sha256=FezODo7sI8m6tDhPPK_gZX1qXImi4O3TUprDoNUuWpk,1672
|
|
36
36
|
nominal_api/scout_compute_resolved_api/__init__.py,sha256=7XGuAyFdGFKQcq4xmmFgEXBuxfvdxjR3J7LSXdGpfXk,9533
|
|
37
37
|
nominal_api/scout_dataexport_api/__init__.py,sha256=pWRQdQJOObD0jITRYLw3AxeDJSrJQqAdFZACxULqA4o,1487
|
|
38
|
-
nominal_api/scout_datareview_api/__init__.py,sha256=
|
|
38
|
+
nominal_api/scout_datareview_api/__init__.py,sha256=sdD3rdI65ZlVWXHRwk2sAranMypVdStq090U0UOOwuY,8320
|
|
39
39
|
nominal_api/scout_datasource/__init__.py,sha256=1NWMrEx-JOEb4Pmd2oAqcpSmQB3g3lxgxFenWEtcF2M,101
|
|
40
40
|
nominal_api/scout_datasource_connection/__init__.py,sha256=he1CCSqMBwRWnzovWCeYP8Q4m7HwAR2Ou-AeQCAhEqQ,208
|
|
41
41
|
nominal_api/scout_datasource_connection_api/__init__.py,sha256=uZDDTsvvsr_7LfkHwEIfPnV9MsHoxmoTL95e37bZ_nE,4984
|
|
@@ -73,7 +73,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=Q9iZHurmyDsJIFbUg-Eb
|
|
|
73
73
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
74
74
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
75
75
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
76
|
-
nominal_api-0.
|
|
77
|
-
nominal_api-0.
|
|
78
|
-
nominal_api-0.
|
|
79
|
-
nominal_api-0.
|
|
76
|
+
nominal_api-0.630.0.dist-info/METADATA,sha256=wSDr_qOclpJTcebxxtUomNRYQQAmVrjZW2fESsTkF90,199
|
|
77
|
+
nominal_api-0.630.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
78
|
+
nominal_api-0.630.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
79
|
+
nominal_api-0.630.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|