nominal-api 0.628.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 +215 -21
- 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/persistent_compute_api/__init__.py +1 -0
- nominal_api/scout_datareview_api/__init__.py +0 -1
- {nominal_api-0.628.0.dist-info → nominal_api-0.630.0.dist-info}/METADATA +1 -1
- {nominal_api-0.628.0.dist-info → nominal_api-0.630.0.dist-info}/RECORD +11 -11
- {nominal_api-0.628.0.dist-info → nominal_api-0.630.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.628.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.
|
|
@@ -12271,22 +12409,25 @@ persistent_compute_api_FullResult.__module__ = "nominal_api.persistent_compute_a
|
|
|
12271
12409
|
class persistent_compute_api_HealthMessage(ConjureUnionType):
|
|
12272
12410
|
_ping: Optional["persistent_compute_api_Ping"] = None
|
|
12273
12411
|
_pong: Optional["persistent_compute_api_Pong"] = None
|
|
12412
|
+
_shutdown_notice: Optional["persistent_compute_api_ShutdownNotice"] = None
|
|
12274
12413
|
|
|
12275
12414
|
@builtins.classmethod
|
|
12276
12415
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12277
12416
|
return {
|
|
12278
12417
|
'ping': ConjureFieldDefinition('ping', persistent_compute_api_Ping),
|
|
12279
|
-
'pong': ConjureFieldDefinition('pong', persistent_compute_api_Pong)
|
|
12418
|
+
'pong': ConjureFieldDefinition('pong', persistent_compute_api_Pong),
|
|
12419
|
+
'shutdown_notice': ConjureFieldDefinition('shutdownNotice', persistent_compute_api_ShutdownNotice)
|
|
12280
12420
|
}
|
|
12281
12421
|
|
|
12282
12422
|
def __init__(
|
|
12283
12423
|
self,
|
|
12284
12424
|
ping: Optional["persistent_compute_api_Ping"] = None,
|
|
12285
12425
|
pong: Optional["persistent_compute_api_Pong"] = None,
|
|
12426
|
+
shutdown_notice: Optional["persistent_compute_api_ShutdownNotice"] = None,
|
|
12286
12427
|
type_of_union: Optional[str] = None
|
|
12287
12428
|
) -> None:
|
|
12288
12429
|
if type_of_union is None:
|
|
12289
|
-
if (ping is not None) + (pong is not None) != 1:
|
|
12430
|
+
if (ping is not None) + (pong is not None) + (shutdown_notice is not None) != 1:
|
|
12290
12431
|
raise ValueError('a union must contain a single member')
|
|
12291
12432
|
|
|
12292
12433
|
if ping is not None:
|
|
@@ -12295,6 +12436,9 @@ class persistent_compute_api_HealthMessage(ConjureUnionType):
|
|
|
12295
12436
|
if pong is not None:
|
|
12296
12437
|
self._pong = pong
|
|
12297
12438
|
self._type = 'pong'
|
|
12439
|
+
if shutdown_notice is not None:
|
|
12440
|
+
self._shutdown_notice = shutdown_notice
|
|
12441
|
+
self._type = 'shutdownNotice'
|
|
12298
12442
|
|
|
12299
12443
|
elif type_of_union == 'ping':
|
|
12300
12444
|
if ping is None:
|
|
@@ -12306,6 +12450,11 @@ class persistent_compute_api_HealthMessage(ConjureUnionType):
|
|
|
12306
12450
|
raise ValueError('a union value must not be None')
|
|
12307
12451
|
self._pong = pong
|
|
12308
12452
|
self._type = 'pong'
|
|
12453
|
+
elif type_of_union == 'shutdownNotice':
|
|
12454
|
+
if shutdown_notice is None:
|
|
12455
|
+
raise ValueError('a union value must not be None')
|
|
12456
|
+
self._shutdown_notice = shutdown_notice
|
|
12457
|
+
self._type = 'shutdownNotice'
|
|
12309
12458
|
|
|
12310
12459
|
@builtins.property
|
|
12311
12460
|
def ping(self) -> Optional["persistent_compute_api_Ping"]:
|
|
@@ -12315,6 +12464,10 @@ class persistent_compute_api_HealthMessage(ConjureUnionType):
|
|
|
12315
12464
|
def pong(self) -> Optional["persistent_compute_api_Pong"]:
|
|
12316
12465
|
return self._pong
|
|
12317
12466
|
|
|
12467
|
+
@builtins.property
|
|
12468
|
+
def shutdown_notice(self) -> Optional["persistent_compute_api_ShutdownNotice"]:
|
|
12469
|
+
return self._shutdown_notice
|
|
12470
|
+
|
|
12318
12471
|
def accept(self, visitor) -> Any:
|
|
12319
12472
|
if not isinstance(visitor, persistent_compute_api_HealthMessageVisitor):
|
|
12320
12473
|
raise ValueError('{} is not an instance of persistent_compute_api_HealthMessageVisitor'.format(visitor.__class__.__name__))
|
|
@@ -12322,6 +12475,8 @@ class persistent_compute_api_HealthMessage(ConjureUnionType):
|
|
|
12322
12475
|
return visitor._ping(self.ping)
|
|
12323
12476
|
if self._type == 'pong' and self.pong is not None:
|
|
12324
12477
|
return visitor._pong(self.pong)
|
|
12478
|
+
if self._type == 'shutdownNotice' and self.shutdown_notice is not None:
|
|
12479
|
+
return visitor._shutdown_notice(self.shutdown_notice)
|
|
12325
12480
|
|
|
12326
12481
|
|
|
12327
12482
|
persistent_compute_api_HealthMessage.__name__ = "HealthMessage"
|
|
@@ -12339,6 +12494,10 @@ class persistent_compute_api_HealthMessageVisitor:
|
|
|
12339
12494
|
def _pong(self, pong: "persistent_compute_api_Pong") -> Any:
|
|
12340
12495
|
pass
|
|
12341
12496
|
|
|
12497
|
+
@abstractmethod
|
|
12498
|
+
def _shutdown_notice(self, shutdown_notice: "persistent_compute_api_ShutdownNotice") -> Any:
|
|
12499
|
+
pass
|
|
12500
|
+
|
|
12342
12501
|
|
|
12343
12502
|
persistent_compute_api_HealthMessageVisitor.__name__ = "HealthMessageVisitor"
|
|
12344
12503
|
persistent_compute_api_HealthMessageVisitor.__qualname__ = "HealthMessageVisitor"
|
|
@@ -12501,6 +12660,28 @@ persistent_compute_api_ServerMessageVisitor.__qualname__ = "ServerMessageVisitor
|
|
|
12501
12660
|
persistent_compute_api_ServerMessageVisitor.__module__ = "nominal_api.persistent_compute_api"
|
|
12502
12661
|
|
|
12503
12662
|
|
|
12663
|
+
class persistent_compute_api_ShutdownNotice(ConjureBeanType):
|
|
12664
|
+
"""
|
|
12665
|
+
Indicates that the websocket will shut down in the near future. Until it is, SubscriptionUpdates will
|
|
12666
|
+
still be sent to the client. Clients that want to avoid downtime or latency spikes should initiate a new
|
|
12667
|
+
websocket and recreate all their subscriptions there but still keep this websocket open until the new
|
|
12668
|
+
websockets starts sending SubscriptionUpdates.
|
|
12669
|
+
"""
|
|
12670
|
+
|
|
12671
|
+
@builtins.classmethod
|
|
12672
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12673
|
+
return {
|
|
12674
|
+
}
|
|
12675
|
+
|
|
12676
|
+
__slots__: List[str] = []
|
|
12677
|
+
|
|
12678
|
+
|
|
12679
|
+
|
|
12680
|
+
persistent_compute_api_ShutdownNotice.__name__ = "ShutdownNotice"
|
|
12681
|
+
persistent_compute_api_ShutdownNotice.__qualname__ = "ShutdownNotice"
|
|
12682
|
+
persistent_compute_api_ShutdownNotice.__module__ = "nominal_api.persistent_compute_api"
|
|
12683
|
+
|
|
12684
|
+
|
|
12504
12685
|
class persistent_compute_api_StreamingComputeNodeRequest(ConjureBeanType):
|
|
12505
12686
|
"""
|
|
12506
12687
|
A templatized version of `ComputeNodeRequest` where the end of the range will track the current time and
|
|
@@ -26394,7 +26575,7 @@ class scout_checks_api_CheckJobSpec(ConjureBeanType):
|
|
|
26394
26575
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
26395
26576
|
'run_rid': ConjureFieldDefinition('runRid', OptionalTypeWrapper[scout_run_api_RunRid]),
|
|
26396
26577
|
'check_implementation_index': ConjureFieldDefinition('checkImplementationIndex', OptionalTypeWrapper[int]),
|
|
26397
|
-
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid',
|
|
26578
|
+
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
|
26398
26579
|
'check_condition': ConjureFieldDefinition('checkCondition', scout_checks_api_CheckCondition),
|
|
26399
26580
|
'start': ConjureFieldDefinition('start', api_Timestamp),
|
|
26400
26581
|
'end': ConjureFieldDefinition('end', api_Timestamp),
|
|
@@ -27830,7 +28011,7 @@ class scout_checks_api_DeprecatedCheckJobSpec(ConjureBeanType):
|
|
|
27830
28011
|
return {
|
|
27831
28012
|
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
|
27832
28013
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
27833
|
-
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid',
|
|
28014
|
+
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
|
27834
28015
|
'check_condition': ConjureFieldDefinition('checkCondition', scout_checks_api_CheckCondition),
|
|
27835
28016
|
'start': ConjureFieldDefinition('start', api_Timestamp),
|
|
27836
28017
|
'end': ConjureFieldDefinition('end', api_Timestamp),
|
|
@@ -52070,7 +52251,7 @@ class scout_datareview_api_AutomaticCheckEvaluation(ConjureBeanType):
|
|
|
52070
52251
|
@builtins.classmethod
|
|
52071
52252
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52072
52253
|
return {
|
|
52073
|
-
'rid': ConjureFieldDefinition('rid',
|
|
52254
|
+
'rid': ConjureFieldDefinition('rid', api_rids_AutomaticCheckEvaluationRid),
|
|
52074
52255
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
52075
52256
|
'check_implementation_index': ConjureFieldDefinition('checkImplementationIndex', OptionalTypeWrapper[int]),
|
|
52076
52257
|
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
|
@@ -52727,7 +52908,7 @@ class scout_datareview_api_BatchAutomaticCheckEvaluationActionRequest(ConjureBea
|
|
|
52727
52908
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52728
52909
|
return {
|
|
52729
52910
|
'check_evaluation_action': ConjureFieldDefinition('checkEvaluationAction', scout_datareview_api_AutomaticCheckEvaluationReviewAction),
|
|
52730
|
-
'check_evaluation_rids': ConjureFieldDefinition('checkEvaluationRids', List[
|
|
52911
|
+
'check_evaluation_rids': ConjureFieldDefinition('checkEvaluationRids', List[api_rids_AutomaticCheckEvaluationRid])
|
|
52731
52912
|
}
|
|
52732
52913
|
|
|
52733
52914
|
__slots__: List[str] = ['_check_evaluation_action', '_check_evaluation_rids']
|
|
@@ -52921,7 +53102,7 @@ class scout_datareview_api_CheckAlert(ConjureBeanType):
|
|
|
52921
53102
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
|
52922
53103
|
'implementation_index': ConjureFieldDefinition('implementationIndex', OptionalTypeWrapper[int]),
|
|
52923
53104
|
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
|
52924
|
-
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid',
|
|
53105
|
+
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
|
52925
53106
|
'name': ConjureFieldDefinition('name', str),
|
|
52926
53107
|
'autogenerated_check_title': ConjureFieldDefinition('autogeneratedCheckTitle', OptionalTypeWrapper[str]),
|
|
52927
53108
|
'autogenerated_check_description': ConjureFieldDefinition('autogeneratedCheckDescription', OptionalTypeWrapper[str]),
|
|
@@ -57063,6 +57244,9 @@ The Connection Service is responsible for creating, updating, and retrieving dat
|
|
|
57063
57244
|
def add_available_tags(self, auth_header: str, rid: str, tags: Dict[str, List[str]]) -> "scout_datasource_connection_api_Connection":
|
|
57064
57245
|
"""
|
|
57065
57246
|
Adds available tag key/value pairs to the connection. If a tag name already exists, the values will be merged.
|
|
57247
|
+
This is primarily an internal endpoint to update tags for external connections as they are periodically
|
|
57248
|
+
scraped. This endpoint should only be called by clients for Visual crossing connections. Throws if called for
|
|
57249
|
+
Nominal connections which have their tags automatically indexed in the underlying Database.
|
|
57066
57250
|
"""
|
|
57067
57251
|
|
|
57068
57252
|
_headers: Dict[str, Any] = {
|
|
@@ -57487,7 +57671,7 @@ rather than strictly required.
|
|
|
57487
57671
|
@builtins.property
|
|
57488
57672
|
def available_tag_values(self) -> Optional[Dict[str, List[str]]]:
|
|
57489
57673
|
"""
|
|
57490
|
-
Deprecated, use the getAvailableTagsForConnection endpoint instead
|
|
57674
|
+
Deprecated, use the DataSourceService#getAvailableTagsForConnection endpoint instead
|
|
57491
57675
|
"""
|
|
57492
57676
|
return self._available_tag_values
|
|
57493
57677
|
|
|
@@ -57804,7 +57988,7 @@ class scout_datasource_connection_api_CreateConnection(ConjureBeanType):
|
|
|
57804
57988
|
'connection_details': ConjureFieldDefinition('connectionDetails', scout_datasource_connection_api_ConnectionDetails),
|
|
57805
57989
|
'metadata': ConjureFieldDefinition('metadata', Dict[str, str]),
|
|
57806
57990
|
'required_tag_names': ConjureFieldDefinition('requiredTagNames', List[api_TagName]),
|
|
57807
|
-
'available_tag_values': ConjureFieldDefinition('availableTagValues', Dict[api_TagName, List[api_TagValue]]),
|
|
57991
|
+
'available_tag_values': ConjureFieldDefinition('availableTagValues', OptionalTypeWrapper[Dict[api_TagName, List[api_TagValue]]]),
|
|
57808
57992
|
'scraping': ConjureFieldDefinition('scraping', OptionalTypeWrapper[scout_datasource_connection_api_ScrapingConfig]),
|
|
57809
57993
|
'should_scrape': ConjureFieldDefinition('shouldScrape', bool),
|
|
57810
57994
|
'limits': ConjureFieldDefinition('limits', OptionalTypeWrapper[scout_datasource_connection_api_LimitsConfig]),
|
|
@@ -57813,7 +57997,7 @@ class scout_datasource_connection_api_CreateConnection(ConjureBeanType):
|
|
|
57813
57997
|
|
|
57814
57998
|
__slots__: List[str] = ['_name', '_description', '_connection_details', '_metadata', '_required_tag_names', '_available_tag_values', '_scraping', '_should_scrape', '_limits', '_workspace']
|
|
57815
57999
|
|
|
57816
|
-
def __init__(self,
|
|
58000
|
+
def __init__(self, connection_details: "scout_datasource_connection_api_ConnectionDetails", metadata: Dict[str, str], name: str, required_tag_names: List[str], should_scrape: bool, available_tag_values: Optional[Dict[str, List[str]]] = None, description: Optional[str] = None, limits: Optional["scout_datasource_connection_api_LimitsConfig"] = None, scraping: Optional["scout_datasource_connection_api_ScrapingConfig"] = None, workspace: Optional[str] = None) -> None:
|
|
57817
58001
|
self._name = name
|
|
57818
58002
|
self._description = description
|
|
57819
58003
|
self._connection_details = connection_details
|
|
@@ -57852,7 +58036,12 @@ class scout_datasource_connection_api_CreateConnection(ConjureBeanType):
|
|
|
57852
58036
|
return self._required_tag_names
|
|
57853
58037
|
|
|
57854
58038
|
@builtins.property
|
|
57855
|
-
def available_tag_values(self) -> Dict[str, List[str]]:
|
|
58039
|
+
def available_tag_values(self) -> Optional[Dict[str, List[str]]]:
|
|
58040
|
+
"""
|
|
58041
|
+
In most cases, this does not to be set by the user. Throws if populated for Nominal connections, which
|
|
58042
|
+
have their tags automatically indexed in the underlying database. Tags for external connections are
|
|
58043
|
+
periodically scraped. Tags should only be updated manually for Visual crossing connections.
|
|
58044
|
+
"""
|
|
57856
58045
|
return self._available_tag_values
|
|
57857
58046
|
|
|
57858
58047
|
@builtins.property
|
|
@@ -59449,6 +59638,11 @@ class scout_datasource_connection_api_UpdateConnectionRequest(ConjureBeanType):
|
|
|
59449
59638
|
|
|
59450
59639
|
@builtins.property
|
|
59451
59640
|
def available_tag_values(self) -> Optional[Dict[str, List[str]]]:
|
|
59641
|
+
"""
|
|
59642
|
+
In most cases, this does not to be set by the user. Throws if populated for Nominal connections, which
|
|
59643
|
+
have their tags automatically indexed in the underlying database. Tags for external connections are
|
|
59644
|
+
periodically scraped. Tags should only be updated manually for Visual crossing connections.
|
|
59645
|
+
"""
|
|
59452
59646
|
return self._available_tag_values
|
|
59453
59647
|
|
|
59454
59648
|
@builtins.property
|
|
@@ -77573,6 +77767,8 @@ scout_channelvariables_api_WorkbookChannelVariableMap = Dict[scout_channelvariab
|
|
|
77573
77767
|
|
|
77574
77768
|
scout_rids_api_TypeRid = str
|
|
77575
77769
|
|
|
77770
|
+
api_rids_AutomaticCheckEvaluationRid = str
|
|
77771
|
+
|
|
77576
77772
|
scout_rids_api_TemplateRid = str
|
|
77577
77773
|
|
|
77578
77774
|
timeseries_logicalseries_api_BucketName = str
|
|
@@ -77599,8 +77795,6 @@ api_rids_EventRid = str
|
|
|
77599
77795
|
|
|
77600
77796
|
persistent_compute_api_Milliseconds = int
|
|
77601
77797
|
|
|
77602
|
-
scout_datareview_api_AutomaticCheckEvaluationRid = str
|
|
77603
|
-
|
|
77604
77798
|
scout_compute_api_ErrorType = str
|
|
77605
77799
|
|
|
77606
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
|
)
|
|
@@ -13,6 +13,7 @@ from .._impl import (
|
|
|
13
13
|
persistent_compute_api_Pong as Pong,
|
|
14
14
|
persistent_compute_api_ServerMessage as ServerMessage,
|
|
15
15
|
persistent_compute_api_ServerMessageVisitor as ServerMessageVisitor,
|
|
16
|
+
persistent_compute_api_ShutdownNotice as ShutdownNotice,
|
|
16
17
|
persistent_compute_api_StreamingComputeNodeRequest as StreamingComputeNodeRequest,
|
|
17
18
|
persistent_compute_api_StreamingComputeNodeSubscription as StreamingComputeNodeSubscription,
|
|
18
19
|
persistent_compute_api_SubscriptionCreation as SubscriptionCreation,
|
|
@@ -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,10 +14,10 @@ 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=
|
|
20
|
-
nominal_api/persistent_compute_api/__init__.py,sha256=
|
|
19
|
+
nominal_api/ingest_workflow_api/__init__.py,sha256=Ni-u6N4Ixbp4z1WIymYa1-28UQmDsyQsBgf9HYpunSU,1426
|
|
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
|
|
23
23
|
nominal_api/scout_asset_api/__init__.py,sha256=Ph-KlW-ki0JRejYQZDvbZ2jRzNAttVBux27lcEj7--Q,1910
|
|
@@ -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
|