nominal-api 0.638.0__py3-none-any.whl → 0.640.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 +289 -51
- nominal_api/event/__init__.py +2 -0
- nominal_api/scout_api/__init__.py +6 -0
- nominal_api/scout_checks_api/__init__.py +0 -1
- {nominal_api-0.638.0.dist-info → nominal_api-0.640.0.dist-info}/METADATA +1 -1
- {nominal_api-0.638.0.dist-info → nominal_api-0.640.0.dist-info}/RECORD +9 -9
- {nominal_api-0.638.0.dist-info → nominal_api-0.640.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.638.0.dist-info → nominal_api-0.640.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -5541,12 +5541,13 @@ class event_CreateEvent(ConjureBeanType):
|
|
|
5541
5541
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
5542
5542
|
'type': ConjureFieldDefinition('type', event_EventType),
|
|
5543
5543
|
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
5544
|
-
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue])
|
|
5544
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
5545
|
+
'disposition': ConjureFieldDefinition('disposition', OptionalTypeWrapper[event_EventDisposition])
|
|
5545
5546
|
}
|
|
5546
5547
|
|
|
5547
|
-
__slots__: List[str] = ['_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties']
|
|
5548
|
+
__slots__: List[str] = ['_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties', '_disposition']
|
|
5548
5549
|
|
|
5549
|
-
def __init__(self, asset_rids: List[str], duration: "scout_run_api_Duration", labels: List[str], name: str, origins: List["event_EventOrigin"], properties: Dict[str, str], timestamp: "api_Timestamp", type: "event_EventType", description: Optional[str] = None) -> None:
|
|
5550
|
+
def __init__(self, asset_rids: List[str], duration: "scout_run_api_Duration", labels: List[str], name: str, origins: List["event_EventOrigin"], properties: Dict[str, str], timestamp: "api_Timestamp", type: "event_EventType", description: Optional[str] = None, disposition: Optional["event_EventDisposition"] = None) -> None:
|
|
5550
5551
|
self._asset_rids = asset_rids
|
|
5551
5552
|
self._origins = origins
|
|
5552
5553
|
self._timestamp = timestamp
|
|
@@ -5556,6 +5557,7 @@ class event_CreateEvent(ConjureBeanType):
|
|
|
5556
5557
|
self._type = type
|
|
5557
5558
|
self._labels = labels
|
|
5558
5559
|
self._properties = properties
|
|
5560
|
+
self._disposition = disposition
|
|
5559
5561
|
|
|
5560
5562
|
@builtins.property
|
|
5561
5563
|
def asset_rids(self) -> List[str]:
|
|
@@ -5602,6 +5604,10 @@ class event_CreateEvent(ConjureBeanType):
|
|
|
5602
5604
|
def properties(self) -> Dict[str, str]:
|
|
5603
5605
|
return self._properties
|
|
5604
5606
|
|
|
5607
|
+
@builtins.property
|
|
5608
|
+
def disposition(self) -> Optional["event_EventDisposition"]:
|
|
5609
|
+
return self._disposition
|
|
5610
|
+
|
|
5605
5611
|
|
|
5606
5612
|
event_CreateEvent.__name__ = "CreateEvent"
|
|
5607
5613
|
event_CreateEvent.__qualname__ = "CreateEvent"
|
|
@@ -5657,12 +5663,13 @@ class event_Event(ConjureBeanType):
|
|
|
5657
5663
|
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
5658
5664
|
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
5659
5665
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
5660
|
-
'created_by': ConjureFieldDefinition('createdBy', OptionalTypeWrapper[scout_rids_api_UserRid])
|
|
5666
|
+
'created_by': ConjureFieldDefinition('createdBy', OptionalTypeWrapper[scout_rids_api_UserRid]),
|
|
5667
|
+
'disposition': ConjureFieldDefinition('disposition', OptionalTypeWrapper[event_EventDisposition])
|
|
5661
5668
|
}
|
|
5662
5669
|
|
|
5663
|
-
__slots__: List[str] = ['_uuid', '_rid', '_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties', '_is_archived', '_created_by']
|
|
5670
|
+
__slots__: List[str] = ['_uuid', '_rid', '_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties', '_is_archived', '_created_by', '_disposition']
|
|
5664
5671
|
|
|
5665
|
-
def __init__(self, asset_rids: List[str], description: str, duration: "scout_run_api_Duration", is_archived: bool, labels: List[str], name: str, origins: List["event_EventOrigin"], properties: Dict[str, str], rid: str, timestamp: "api_Timestamp", type: "event_EventType", uuid: str, created_by: Optional[str] = None) -> None:
|
|
5672
|
+
def __init__(self, asset_rids: List[str], description: str, duration: "scout_run_api_Duration", is_archived: bool, labels: List[str], name: str, origins: List["event_EventOrigin"], properties: Dict[str, str], rid: str, timestamp: "api_Timestamp", type: "event_EventType", uuid: str, created_by: Optional[str] = None, disposition: Optional["event_EventDisposition"] = None) -> None:
|
|
5666
5673
|
self._uuid = uuid
|
|
5667
5674
|
self._rid = rid
|
|
5668
5675
|
self._asset_rids = asset_rids
|
|
@@ -5676,6 +5683,7 @@ class event_Event(ConjureBeanType):
|
|
|
5676
5683
|
self._properties = properties
|
|
5677
5684
|
self._is_archived = is_archived
|
|
5678
5685
|
self._created_by = created_by
|
|
5686
|
+
self._disposition = disposition
|
|
5679
5687
|
|
|
5680
5688
|
@builtins.property
|
|
5681
5689
|
def uuid(self) -> str:
|
|
@@ -5739,12 +5747,75 @@ This field may be missing for legacy events.
|
|
|
5739
5747
|
"""
|
|
5740
5748
|
return self._created_by
|
|
5741
5749
|
|
|
5750
|
+
@builtins.property
|
|
5751
|
+
def disposition(self) -> Optional["event_EventDisposition"]:
|
|
5752
|
+
return self._disposition
|
|
5753
|
+
|
|
5742
5754
|
|
|
5743
5755
|
event_Event.__name__ = "Event"
|
|
5744
5756
|
event_Event.__qualname__ = "Event"
|
|
5745
5757
|
event_Event.__module__ = "nominal_api.event"
|
|
5746
5758
|
|
|
5747
5759
|
|
|
5760
|
+
class event_EventDisposition(ConjureBeanType):
|
|
5761
|
+
"""
|
|
5762
|
+
Describes the review status for an event.
|
|
5763
|
+
This is used to track the disposition status of an event.
|
|
5764
|
+
"""
|
|
5765
|
+
|
|
5766
|
+
@builtins.classmethod
|
|
5767
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5768
|
+
return {
|
|
5769
|
+
'priority': ConjureFieldDefinition('priority', scout_api_Priority),
|
|
5770
|
+
'state': ConjureFieldDefinition('state', scout_api_DispositionState),
|
|
5771
|
+
'assignees': ConjureFieldDefinition('assignees', List[scout_rids_api_UserRid])
|
|
5772
|
+
}
|
|
5773
|
+
|
|
5774
|
+
__slots__: List[str] = ['_priority', '_state', '_assignees']
|
|
5775
|
+
|
|
5776
|
+
def __init__(self, assignees: List[str], priority: "scout_api_Priority", state: "scout_api_DispositionState") -> None:
|
|
5777
|
+
self._priority = priority
|
|
5778
|
+
self._state = state
|
|
5779
|
+
self._assignees = assignees
|
|
5780
|
+
|
|
5781
|
+
@builtins.property
|
|
5782
|
+
def priority(self) -> "scout_api_Priority":
|
|
5783
|
+
return self._priority
|
|
5784
|
+
|
|
5785
|
+
@builtins.property
|
|
5786
|
+
def state(self) -> "scout_api_DispositionState":
|
|
5787
|
+
return self._state
|
|
5788
|
+
|
|
5789
|
+
@builtins.property
|
|
5790
|
+
def assignees(self) -> List[str]:
|
|
5791
|
+
return self._assignees
|
|
5792
|
+
|
|
5793
|
+
|
|
5794
|
+
event_EventDisposition.__name__ = "EventDisposition"
|
|
5795
|
+
event_EventDisposition.__qualname__ = "EventDisposition"
|
|
5796
|
+
event_EventDisposition.__module__ = "nominal_api.event"
|
|
5797
|
+
|
|
5798
|
+
|
|
5799
|
+
class event_EventDispositionStatus(ConjureEnumType):
|
|
5800
|
+
|
|
5801
|
+
PENDING_REVIEW = 'PENDING_REVIEW'
|
|
5802
|
+
'''PENDING_REVIEW'''
|
|
5803
|
+
CLOSED_IGNORED = 'CLOSED_IGNORED'
|
|
5804
|
+
'''CLOSED_IGNORED'''
|
|
5805
|
+
CLOSED_REQUIRES_FURTHER_ACTION = 'CLOSED_REQUIRES_FURTHER_ACTION'
|
|
5806
|
+
'''CLOSED_REQUIRES_FURTHER_ACTION'''
|
|
5807
|
+
UNKNOWN = 'UNKNOWN'
|
|
5808
|
+
'''UNKNOWN'''
|
|
5809
|
+
|
|
5810
|
+
def __reduce_ex__(self, proto):
|
|
5811
|
+
return self.__class__, (self.name,)
|
|
5812
|
+
|
|
5813
|
+
|
|
5814
|
+
event_EventDispositionStatus.__name__ = "EventDispositionStatus"
|
|
5815
|
+
event_EventDispositionStatus.__qualname__ = "EventDispositionStatus"
|
|
5816
|
+
event_EventDispositionStatus.__module__ = "nominal_api.event"
|
|
5817
|
+
|
|
5818
|
+
|
|
5748
5819
|
class event_EventOrigin(ConjureUnionType):
|
|
5749
5820
|
"""Describes where an event came from."""
|
|
5750
5821
|
_workbook: Optional["event_WorkbookEventOrigin"] = None
|
|
@@ -15518,6 +15589,197 @@ scout_api_ChannelLocator.__qualname__ = "ChannelLocator"
|
|
|
15518
15589
|
scout_api_ChannelLocator.__module__ = "nominal_api.scout_api"
|
|
15519
15590
|
|
|
15520
15591
|
|
|
15592
|
+
class scout_api_ClosedWithFurtherActionDispositionState(ConjureBeanType):
|
|
15593
|
+
|
|
15594
|
+
@builtins.classmethod
|
|
15595
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15596
|
+
return {
|
|
15597
|
+
'closed_by': ConjureFieldDefinition('closedBy', scout_rids_api_UserRid)
|
|
15598
|
+
}
|
|
15599
|
+
|
|
15600
|
+
__slots__: List[str] = ['_closed_by']
|
|
15601
|
+
|
|
15602
|
+
def __init__(self, closed_by: str) -> None:
|
|
15603
|
+
self._closed_by = closed_by
|
|
15604
|
+
|
|
15605
|
+
@builtins.property
|
|
15606
|
+
def closed_by(self) -> str:
|
|
15607
|
+
return self._closed_by
|
|
15608
|
+
|
|
15609
|
+
|
|
15610
|
+
scout_api_ClosedWithFurtherActionDispositionState.__name__ = "ClosedWithFurtherActionDispositionState"
|
|
15611
|
+
scout_api_ClosedWithFurtherActionDispositionState.__qualname__ = "ClosedWithFurtherActionDispositionState"
|
|
15612
|
+
scout_api_ClosedWithFurtherActionDispositionState.__module__ = "nominal_api.scout_api"
|
|
15613
|
+
|
|
15614
|
+
|
|
15615
|
+
class scout_api_ClosedWithIgnoreDispositionState(ConjureBeanType):
|
|
15616
|
+
|
|
15617
|
+
@builtins.classmethod
|
|
15618
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15619
|
+
return {
|
|
15620
|
+
'closed_by': ConjureFieldDefinition('closedBy', scout_rids_api_UserRid)
|
|
15621
|
+
}
|
|
15622
|
+
|
|
15623
|
+
__slots__: List[str] = ['_closed_by']
|
|
15624
|
+
|
|
15625
|
+
def __init__(self, closed_by: str) -> None:
|
|
15626
|
+
self._closed_by = closed_by
|
|
15627
|
+
|
|
15628
|
+
@builtins.property
|
|
15629
|
+
def closed_by(self) -> str:
|
|
15630
|
+
return self._closed_by
|
|
15631
|
+
|
|
15632
|
+
|
|
15633
|
+
scout_api_ClosedWithIgnoreDispositionState.__name__ = "ClosedWithIgnoreDispositionState"
|
|
15634
|
+
scout_api_ClosedWithIgnoreDispositionState.__qualname__ = "ClosedWithIgnoreDispositionState"
|
|
15635
|
+
scout_api_ClosedWithIgnoreDispositionState.__module__ = "nominal_api.scout_api"
|
|
15636
|
+
|
|
15637
|
+
|
|
15638
|
+
class scout_api_DispositionState(ConjureUnionType):
|
|
15639
|
+
_pending_review: Optional["scout_api_PendingReviewDispositionState"] = None
|
|
15640
|
+
_closed_with_further_action: Optional["scout_api_ClosedWithFurtherActionDispositionState"] = None
|
|
15641
|
+
_closed_with_ignore: Optional["scout_api_ClosedWithIgnoreDispositionState"] = None
|
|
15642
|
+
|
|
15643
|
+
@builtins.classmethod
|
|
15644
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15645
|
+
return {
|
|
15646
|
+
'pending_review': ConjureFieldDefinition('pendingReview', scout_api_PendingReviewDispositionState),
|
|
15647
|
+
'closed_with_further_action': ConjureFieldDefinition('closedWithFurtherAction', scout_api_ClosedWithFurtherActionDispositionState),
|
|
15648
|
+
'closed_with_ignore': ConjureFieldDefinition('closedWithIgnore', scout_api_ClosedWithIgnoreDispositionState)
|
|
15649
|
+
}
|
|
15650
|
+
|
|
15651
|
+
def __init__(
|
|
15652
|
+
self,
|
|
15653
|
+
pending_review: Optional["scout_api_PendingReviewDispositionState"] = None,
|
|
15654
|
+
closed_with_further_action: Optional["scout_api_ClosedWithFurtherActionDispositionState"] = None,
|
|
15655
|
+
closed_with_ignore: Optional["scout_api_ClosedWithIgnoreDispositionState"] = None,
|
|
15656
|
+
type_of_union: Optional[str] = None
|
|
15657
|
+
) -> None:
|
|
15658
|
+
if type_of_union is None:
|
|
15659
|
+
if (pending_review is not None) + (closed_with_further_action is not None) + (closed_with_ignore is not None) != 1:
|
|
15660
|
+
raise ValueError('a union must contain a single member')
|
|
15661
|
+
|
|
15662
|
+
if pending_review is not None:
|
|
15663
|
+
self._pending_review = pending_review
|
|
15664
|
+
self._type = 'pendingReview'
|
|
15665
|
+
if closed_with_further_action is not None:
|
|
15666
|
+
self._closed_with_further_action = closed_with_further_action
|
|
15667
|
+
self._type = 'closedWithFurtherAction'
|
|
15668
|
+
if closed_with_ignore is not None:
|
|
15669
|
+
self._closed_with_ignore = closed_with_ignore
|
|
15670
|
+
self._type = 'closedWithIgnore'
|
|
15671
|
+
|
|
15672
|
+
elif type_of_union == 'pendingReview':
|
|
15673
|
+
if pending_review is None:
|
|
15674
|
+
raise ValueError('a union value must not be None')
|
|
15675
|
+
self._pending_review = pending_review
|
|
15676
|
+
self._type = 'pendingReview'
|
|
15677
|
+
elif type_of_union == 'closedWithFurtherAction':
|
|
15678
|
+
if closed_with_further_action is None:
|
|
15679
|
+
raise ValueError('a union value must not be None')
|
|
15680
|
+
self._closed_with_further_action = closed_with_further_action
|
|
15681
|
+
self._type = 'closedWithFurtherAction'
|
|
15682
|
+
elif type_of_union == 'closedWithIgnore':
|
|
15683
|
+
if closed_with_ignore is None:
|
|
15684
|
+
raise ValueError('a union value must not be None')
|
|
15685
|
+
self._closed_with_ignore = closed_with_ignore
|
|
15686
|
+
self._type = 'closedWithIgnore'
|
|
15687
|
+
|
|
15688
|
+
@builtins.property
|
|
15689
|
+
def pending_review(self) -> Optional["scout_api_PendingReviewDispositionState"]:
|
|
15690
|
+
return self._pending_review
|
|
15691
|
+
|
|
15692
|
+
@builtins.property
|
|
15693
|
+
def closed_with_further_action(self) -> Optional["scout_api_ClosedWithFurtherActionDispositionState"]:
|
|
15694
|
+
return self._closed_with_further_action
|
|
15695
|
+
|
|
15696
|
+
@builtins.property
|
|
15697
|
+
def closed_with_ignore(self) -> Optional["scout_api_ClosedWithIgnoreDispositionState"]:
|
|
15698
|
+
return self._closed_with_ignore
|
|
15699
|
+
|
|
15700
|
+
def accept(self, visitor) -> Any:
|
|
15701
|
+
if not isinstance(visitor, scout_api_DispositionStateVisitor):
|
|
15702
|
+
raise ValueError('{} is not an instance of scout_api_DispositionStateVisitor'.format(visitor.__class__.__name__))
|
|
15703
|
+
if self._type == 'pendingReview' and self.pending_review is not None:
|
|
15704
|
+
return visitor._pending_review(self.pending_review)
|
|
15705
|
+
if self._type == 'closedWithFurtherAction' and self.closed_with_further_action is not None:
|
|
15706
|
+
return visitor._closed_with_further_action(self.closed_with_further_action)
|
|
15707
|
+
if self._type == 'closedWithIgnore' and self.closed_with_ignore is not None:
|
|
15708
|
+
return visitor._closed_with_ignore(self.closed_with_ignore)
|
|
15709
|
+
|
|
15710
|
+
|
|
15711
|
+
scout_api_DispositionState.__name__ = "DispositionState"
|
|
15712
|
+
scout_api_DispositionState.__qualname__ = "DispositionState"
|
|
15713
|
+
scout_api_DispositionState.__module__ = "nominal_api.scout_api"
|
|
15714
|
+
|
|
15715
|
+
|
|
15716
|
+
class scout_api_DispositionStateVisitor:
|
|
15717
|
+
|
|
15718
|
+
@abstractmethod
|
|
15719
|
+
def _pending_review(self, pending_review: "scout_api_PendingReviewDispositionState") -> Any:
|
|
15720
|
+
pass
|
|
15721
|
+
|
|
15722
|
+
@abstractmethod
|
|
15723
|
+
def _closed_with_further_action(self, closed_with_further_action: "scout_api_ClosedWithFurtherActionDispositionState") -> Any:
|
|
15724
|
+
pass
|
|
15725
|
+
|
|
15726
|
+
@abstractmethod
|
|
15727
|
+
def _closed_with_ignore(self, closed_with_ignore: "scout_api_ClosedWithIgnoreDispositionState") -> Any:
|
|
15728
|
+
pass
|
|
15729
|
+
|
|
15730
|
+
|
|
15731
|
+
scout_api_DispositionStateVisitor.__name__ = "DispositionStateVisitor"
|
|
15732
|
+
scout_api_DispositionStateVisitor.__qualname__ = "DispositionStateVisitor"
|
|
15733
|
+
scout_api_DispositionStateVisitor.__module__ = "nominal_api.scout_api"
|
|
15734
|
+
|
|
15735
|
+
|
|
15736
|
+
class scout_api_PendingReviewDispositionState(ConjureBeanType):
|
|
15737
|
+
|
|
15738
|
+
@builtins.classmethod
|
|
15739
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15740
|
+
return {
|
|
15741
|
+
'opened_by': ConjureFieldDefinition('openedBy', scout_rids_api_UserRid)
|
|
15742
|
+
}
|
|
15743
|
+
|
|
15744
|
+
__slots__: List[str] = ['_opened_by']
|
|
15745
|
+
|
|
15746
|
+
def __init__(self, opened_by: str) -> None:
|
|
15747
|
+
self._opened_by = opened_by
|
|
15748
|
+
|
|
15749
|
+
@builtins.property
|
|
15750
|
+
def opened_by(self) -> str:
|
|
15751
|
+
return self._opened_by
|
|
15752
|
+
|
|
15753
|
+
|
|
15754
|
+
scout_api_PendingReviewDispositionState.__name__ = "PendingReviewDispositionState"
|
|
15755
|
+
scout_api_PendingReviewDispositionState.__qualname__ = "PendingReviewDispositionState"
|
|
15756
|
+
scout_api_PendingReviewDispositionState.__module__ = "nominal_api.scout_api"
|
|
15757
|
+
|
|
15758
|
+
|
|
15759
|
+
class scout_api_Priority(ConjureEnumType):
|
|
15760
|
+
|
|
15761
|
+
P0 = 'P0'
|
|
15762
|
+
'''P0'''
|
|
15763
|
+
P1 = 'P1'
|
|
15764
|
+
'''P1'''
|
|
15765
|
+
P2 = 'P2'
|
|
15766
|
+
'''P2'''
|
|
15767
|
+
P3 = 'P3'
|
|
15768
|
+
'''P3'''
|
|
15769
|
+
P4 = 'P4'
|
|
15770
|
+
'''P4'''
|
|
15771
|
+
UNKNOWN = 'UNKNOWN'
|
|
15772
|
+
'''UNKNOWN'''
|
|
15773
|
+
|
|
15774
|
+
def __reduce_ex__(self, proto):
|
|
15775
|
+
return self.__class__, (self.name,)
|
|
15776
|
+
|
|
15777
|
+
|
|
15778
|
+
scout_api_Priority.__name__ = "Priority"
|
|
15779
|
+
scout_api_Priority.__qualname__ = "Priority"
|
|
15780
|
+
scout_api_Priority.__module__ = "nominal_api.scout_api"
|
|
15781
|
+
|
|
15782
|
+
|
|
15521
15783
|
class scout_asset_api_AddDataScopesToAssetRequest(ConjureBeanType):
|
|
15522
15784
|
|
|
15523
15785
|
@builtins.classmethod
|
|
@@ -26413,14 +26675,14 @@ class scout_checks_api_Check(ConjureBeanType):
|
|
|
26413
26675
|
'description': ConjureFieldDefinition('description', str),
|
|
26414
26676
|
'auto_generated_title': ConjureFieldDefinition('autoGeneratedTitle', OptionalTypeWrapper[str]),
|
|
26415
26677
|
'auto_generated_description': ConjureFieldDefinition('autoGeneratedDescription', OptionalTypeWrapper[str]),
|
|
26416
|
-
'priority': ConjureFieldDefinition('priority',
|
|
26678
|
+
'priority': ConjureFieldDefinition('priority', scout_api_Priority),
|
|
26417
26679
|
'chart': ConjureFieldDefinition('chart', OptionalTypeWrapper[scout_rids_api_VersionedVizId]),
|
|
26418
26680
|
'condition': ConjureFieldDefinition('condition', OptionalTypeWrapper[scout_checks_api_CheckCondition])
|
|
26419
26681
|
}
|
|
26420
26682
|
|
|
26421
26683
|
__slots__: List[str] = ['_rid', '_check_lineage_rid', '_title', '_description', '_auto_generated_title', '_auto_generated_description', '_priority', '_chart', '_condition']
|
|
26422
26684
|
|
|
26423
|
-
def __init__(self, check_lineage_rid: str, description: str, priority: "
|
|
26685
|
+
def __init__(self, check_lineage_rid: str, description: str, priority: "scout_api_Priority", rid: str, title: str, auto_generated_description: Optional[str] = None, auto_generated_title: Optional[str] = None, chart: Optional["scout_rids_api_VersionedVizId"] = None, condition: Optional["scout_checks_api_CheckCondition"] = None) -> None:
|
|
26424
26686
|
self._rid = rid
|
|
26425
26687
|
self._check_lineage_rid = check_lineage_rid
|
|
26426
26688
|
self._title = title
|
|
@@ -26456,7 +26718,7 @@ class scout_checks_api_Check(ConjureBeanType):
|
|
|
26456
26718
|
return self._auto_generated_description
|
|
26457
26719
|
|
|
26458
26720
|
@builtins.property
|
|
26459
|
-
def priority(self) -> "
|
|
26721
|
+
def priority(self) -> "scout_api_Priority":
|
|
26460
26722
|
return self._priority
|
|
26461
26723
|
|
|
26462
26724
|
@builtins.property
|
|
@@ -27826,14 +28088,14 @@ class scout_checks_api_CreateCheckRequest(ConjureBeanType):
|
|
|
27826
28088
|
'description': ConjureFieldDefinition('description', str),
|
|
27827
28089
|
'auto_generated_title': ConjureFieldDefinition('autoGeneratedTitle', OptionalTypeWrapper[str]),
|
|
27828
28090
|
'auto_generated_description': ConjureFieldDefinition('autoGeneratedDescription', OptionalTypeWrapper[str]),
|
|
27829
|
-
'priority': ConjureFieldDefinition('priority',
|
|
28091
|
+
'priority': ConjureFieldDefinition('priority', scout_api_Priority),
|
|
27830
28092
|
'chart': ConjureFieldDefinition('chart', OptionalTypeWrapper[scout_rids_api_VersionedVizId]),
|
|
27831
28093
|
'condition': ConjureFieldDefinition('condition', OptionalTypeWrapper[scout_checks_api_UnresolvedCheckCondition])
|
|
27832
28094
|
}
|
|
27833
28095
|
|
|
27834
28096
|
__slots__: List[str] = ['_check_lineage_rid', '_title', '_description', '_auto_generated_title', '_auto_generated_description', '_priority', '_chart', '_condition']
|
|
27835
28097
|
|
|
27836
|
-
def __init__(self, description: str, priority: "
|
|
28098
|
+
def __init__(self, description: str, priority: "scout_api_Priority", title: str, auto_generated_description: Optional[str] = None, auto_generated_title: Optional[str] = None, chart: Optional["scout_rids_api_VersionedVizId"] = None, check_lineage_rid: Optional[str] = None, condition: Optional["scout_checks_api_UnresolvedCheckCondition"] = None) -> None:
|
|
27837
28099
|
self._check_lineage_rid = check_lineage_rid
|
|
27838
28100
|
self._title = title
|
|
27839
28101
|
self._description = description
|
|
@@ -27868,7 +28130,7 @@ This is named checkLineageRid for historical reasons but is actually a UUID.
|
|
|
27868
28130
|
return self._auto_generated_description
|
|
27869
28131
|
|
|
27870
28132
|
@builtins.property
|
|
27871
|
-
def priority(self) -> "
|
|
28133
|
+
def priority(self) -> "scout_api_Priority":
|
|
27872
28134
|
return self._priority
|
|
27873
28135
|
|
|
27874
28136
|
@builtins.property
|
|
@@ -28917,30 +29179,6 @@ scout_checks_api_PinnedChecklistRef.__qualname__ = "PinnedChecklistRef"
|
|
|
28917
29179
|
scout_checks_api_PinnedChecklistRef.__module__ = "nominal_api.scout_checks_api"
|
|
28918
29180
|
|
|
28919
29181
|
|
|
28920
|
-
class scout_checks_api_Priority(ConjureEnumType):
|
|
28921
|
-
|
|
28922
|
-
P0 = 'P0'
|
|
28923
|
-
'''P0'''
|
|
28924
|
-
P1 = 'P1'
|
|
28925
|
-
'''P1'''
|
|
28926
|
-
P2 = 'P2'
|
|
28927
|
-
'''P2'''
|
|
28928
|
-
P3 = 'P3'
|
|
28929
|
-
'''P3'''
|
|
28930
|
-
P4 = 'P4'
|
|
28931
|
-
'''P4'''
|
|
28932
|
-
UNKNOWN = 'UNKNOWN'
|
|
28933
|
-
'''UNKNOWN'''
|
|
28934
|
-
|
|
28935
|
-
def __reduce_ex__(self, proto):
|
|
28936
|
-
return self.__class__, (self.name,)
|
|
28937
|
-
|
|
28938
|
-
|
|
28939
|
-
scout_checks_api_Priority.__name__ = "Priority"
|
|
28940
|
-
scout_checks_api_Priority.__qualname__ = "Priority"
|
|
28941
|
-
scout_checks_api_Priority.__module__ = "nominal_api.scout_checks_api"
|
|
28942
|
-
|
|
28943
|
-
|
|
28944
29182
|
class scout_checks_api_SaveChecklistRequest(ConjureBeanType):
|
|
28945
29183
|
|
|
28946
29184
|
@builtins.classmethod
|
|
@@ -54699,7 +54937,7 @@ class scout_datareview_api_CheckAlert(ConjureBeanType):
|
|
|
54699
54937
|
'start': ConjureFieldDefinition('start', api_Timestamp),
|
|
54700
54938
|
'end': ConjureFieldDefinition('end', OptionalTypeWrapper[api_Timestamp]),
|
|
54701
54939
|
'state': ConjureFieldDefinition('state', scout_rids_api_CheckAlertState),
|
|
54702
|
-
'priority': ConjureFieldDefinition('priority',
|
|
54940
|
+
'priority': ConjureFieldDefinition('priority', scout_api_Priority),
|
|
54703
54941
|
'chart': ConjureFieldDefinition('chart', OptionalTypeWrapper[scout_rids_api_VersionedVizId]),
|
|
54704
54942
|
'notes': ConjureFieldDefinition('notes', OptionalTypeWrapper[str]),
|
|
54705
54943
|
'notebook': ConjureFieldDefinition('notebook', OptionalTypeWrapper[scout_rids_api_NotebookRid])
|
|
@@ -54707,7 +54945,7 @@ class scout_datareview_api_CheckAlert(ConjureBeanType):
|
|
|
54707
54945
|
|
|
54708
54946
|
__slots__: List[str] = ['_rid', '_check_rid', '_implementation_index', '_data_review_rid', '_check_evaluation_rid', '_name', '_autogenerated_check_title', '_autogenerated_check_description', '_assignee_rids', '_start', '_end', '_state', '_priority', '_chart', '_notes', '_notebook']
|
|
54709
54947
|
|
|
54710
|
-
def __init__(self, assignee_rids: List[str], check_evaluation_rid: str, check_rid: str, data_review_rid: str, name: str, priority: "
|
|
54948
|
+
def __init__(self, assignee_rids: List[str], check_evaluation_rid: str, check_rid: str, data_review_rid: str, name: str, priority: "scout_api_Priority", rid: str, start: "api_Timestamp", state: "scout_rids_api_CheckAlertState", autogenerated_check_description: Optional[str] = None, autogenerated_check_title: Optional[str] = None, chart: Optional["scout_rids_api_VersionedVizId"] = None, end: Optional["api_Timestamp"] = None, implementation_index: Optional[int] = None, notebook: Optional[str] = None, notes: Optional[str] = None) -> None:
|
|
54711
54949
|
self._rid = rid
|
|
54712
54950
|
self._check_rid = check_rid
|
|
54713
54951
|
self._implementation_index = implementation_index
|
|
@@ -54774,7 +55012,7 @@ class scout_datareview_api_CheckAlert(ConjureBeanType):
|
|
|
54774
55012
|
return self._state
|
|
54775
55013
|
|
|
54776
55014
|
@builtins.property
|
|
54777
|
-
def priority(self) -> "
|
|
55015
|
+
def priority(self) -> "scout_api_Priority":
|
|
54778
55016
|
return self._priority
|
|
54779
55017
|
|
|
54780
55018
|
@builtins.property
|
|
@@ -55210,7 +55448,7 @@ class scout_datareview_api_CheckAlertsHistogramRequest(ConjureBeanType):
|
|
|
55210
55448
|
'check_rids': ConjureFieldDefinition('checkRids', OptionalTypeWrapper[List[scout_rids_api_CheckRid]]),
|
|
55211
55449
|
'data_review_rids': ConjureFieldDefinition('dataReviewRids', OptionalTypeWrapper[List[scout_rids_api_DataReviewRid]]),
|
|
55212
55450
|
'assignee_rids': ConjureFieldDefinition('assigneeRids', OptionalTypeWrapper[List[scout_rids_api_UserRid]]),
|
|
55213
|
-
'priorities': ConjureFieldDefinition('priorities', OptionalTypeWrapper[List[
|
|
55451
|
+
'priorities': ConjureFieldDefinition('priorities', OptionalTypeWrapper[List[scout_api_Priority]]),
|
|
55214
55452
|
'run_rids': ConjureFieldDefinition('runRids', List[scout_run_api_RunRid]),
|
|
55215
55453
|
'asset_rids': ConjureFieldDefinition('assetRids', List[scout_rids_api_AssetRid]),
|
|
55216
55454
|
'pinned_checklist_refs': ConjureFieldDefinition('pinnedChecklistRefs', OptionalTypeWrapper[List[scout_checks_api_PinnedChecklistRef]]),
|
|
@@ -55222,7 +55460,7 @@ class scout_datareview_api_CheckAlertsHistogramRequest(ConjureBeanType):
|
|
|
55222
55460
|
|
|
55223
55461
|
__slots__: List[str] = ['_num_bins', '_search_text', '_distribution_variable', '_sub_group_variable', '_start_time_after', '_start_time_before', '_status', '_check_rids', '_data_review_rids', '_assignee_rids', '_priorities', '_run_rids', '_asset_rids', '_pinned_checklist_refs', '_chart_rids', '_notebook_rids', '_show_archived', '_archived_statuses']
|
|
55224
55462
|
|
|
55225
|
-
def __init__(self, asset_rids: List[str], distribution_variable: "scout_datareview_api_HistogramDistributionVariable", run_rids: List[str], start_time_after: "api_Timestamp", start_time_before: "api_Timestamp", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, assignee_rids: Optional[List[str]] = None, chart_rids: Optional[List["scout_rids_api_VersionedVizId"]] = None, check_rids: Optional[List[str]] = None, data_review_rids: Optional[List[str]] = None, notebook_rids: Optional[List[str]] = None, num_bins: Optional[int] = None, pinned_checklist_refs: Optional[List["scout_checks_api_PinnedChecklistRef"]] = None, priorities: Optional[List["
|
|
55463
|
+
def __init__(self, asset_rids: List[str], distribution_variable: "scout_datareview_api_HistogramDistributionVariable", run_rids: List[str], start_time_after: "api_Timestamp", start_time_before: "api_Timestamp", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, assignee_rids: Optional[List[str]] = None, chart_rids: Optional[List["scout_rids_api_VersionedVizId"]] = None, check_rids: Optional[List[str]] = None, data_review_rids: Optional[List[str]] = None, notebook_rids: Optional[List[str]] = None, num_bins: Optional[int] = None, pinned_checklist_refs: Optional[List["scout_checks_api_PinnedChecklistRef"]] = None, priorities: Optional[List["scout_api_Priority"]] = None, search_text: Optional[str] = None, show_archived: Optional[bool] = None, status: Optional[List["scout_datareview_api_CheckAlertStatus"]] = None, sub_group_variable: Optional["scout_datareview_api_HistogramSubGroupVariable"] = None) -> None:
|
|
55226
55464
|
self._num_bins = num_bins
|
|
55227
55465
|
self._search_text = search_text
|
|
55228
55466
|
self._distribution_variable = distribution_variable
|
|
@@ -55301,7 +55539,7 @@ class scout_datareview_api_CheckAlertsHistogramRequest(ConjureBeanType):
|
|
|
55301
55539
|
return self._assignee_rids
|
|
55302
55540
|
|
|
55303
55541
|
@builtins.property
|
|
55304
|
-
def priorities(self) -> Optional[List["
|
|
55542
|
+
def priorities(self) -> Optional[List["scout_api_Priority"]]:
|
|
55305
55543
|
return self._priorities
|
|
55306
55544
|
|
|
55307
55545
|
@builtins.property
|
|
@@ -57005,12 +57243,12 @@ class scout_datareview_api_HistogramPriorityBucket(ConjureBeanType):
|
|
|
57005
57243
|
return {
|
|
57006
57244
|
'start_inclusive': ConjureFieldDefinition('startInclusive', api_Timestamp),
|
|
57007
57245
|
'end_exclusive': ConjureFieldDefinition('endExclusive', api_Timestamp),
|
|
57008
|
-
'counts': ConjureFieldDefinition('counts', Dict[
|
|
57246
|
+
'counts': ConjureFieldDefinition('counts', Dict[scout_api_Priority, int])
|
|
57009
57247
|
}
|
|
57010
57248
|
|
|
57011
57249
|
__slots__: List[str] = ['_start_inclusive', '_end_exclusive', '_counts']
|
|
57012
57250
|
|
|
57013
|
-
def __init__(self, counts: Dict["
|
|
57251
|
+
def __init__(self, counts: Dict["scout_api_Priority", int], end_exclusive: "api_Timestamp", start_inclusive: "api_Timestamp") -> None:
|
|
57014
57252
|
self._start_inclusive = start_inclusive
|
|
57015
57253
|
self._end_exclusive = end_exclusive
|
|
57016
57254
|
self._counts = counts
|
|
@@ -57024,7 +57262,7 @@ class scout_datareview_api_HistogramPriorityBucket(ConjureBeanType):
|
|
|
57024
57262
|
return self._end_exclusive
|
|
57025
57263
|
|
|
57026
57264
|
@builtins.property
|
|
57027
|
-
def counts(self) -> Dict["
|
|
57265
|
+
def counts(self) -> Dict["scout_api_Priority", int]:
|
|
57028
57266
|
return self._counts
|
|
57029
57267
|
|
|
57030
57268
|
|
|
@@ -58091,7 +58329,7 @@ class scout_datareview_api_SearchCheckAlertsRequest(ConjureBeanType):
|
|
|
58091
58329
|
'check_rids': ConjureFieldDefinition('checkRids', OptionalTypeWrapper[List[scout_rids_api_CheckRid]]),
|
|
58092
58330
|
'data_review_rids': ConjureFieldDefinition('dataReviewRids', OptionalTypeWrapper[List[scout_rids_api_DataReviewRid]]),
|
|
58093
58331
|
'assignee_rids': ConjureFieldDefinition('assigneeRids', OptionalTypeWrapper[List[scout_rids_api_UserRid]]),
|
|
58094
|
-
'priorities': ConjureFieldDefinition('priorities', OptionalTypeWrapper[List[
|
|
58332
|
+
'priorities': ConjureFieldDefinition('priorities', OptionalTypeWrapper[List[scout_api_Priority]]),
|
|
58095
58333
|
'run_rids': ConjureFieldDefinition('runRids', List[scout_run_api_RunRid]),
|
|
58096
58334
|
'asset_rids': ConjureFieldDefinition('assetRids', List[scout_rids_api_AssetRid]),
|
|
58097
58335
|
'pinned_checklist_refs': ConjureFieldDefinition('pinnedChecklistRefs', OptionalTypeWrapper[List[scout_checks_api_PinnedChecklistRef]]),
|
|
@@ -58103,7 +58341,7 @@ class scout_datareview_api_SearchCheckAlertsRequest(ConjureBeanType):
|
|
|
58103
58341
|
|
|
58104
58342
|
__slots__: List[str] = ['_next_page_token', '_page_size', '_sort_by', '_search_text', '_after', '_before', '_status', '_check_rids', '_data_review_rids', '_assignee_rids', '_priorities', '_run_rids', '_asset_rids', '_pinned_checklist_refs', '_chart_rids', '_notebook_rids', '_show_archived', '_archived_statuses']
|
|
58105
58343
|
|
|
58106
|
-
def __init__(self, asset_rids: List[str], run_rids: List[str], after: Optional["api_Timestamp"] = None, archived_statuses: Optional[List["api_ArchivedStatus"]] = None, assignee_rids: Optional[List[str]] = None, before: Optional["api_Timestamp"] = None, chart_rids: Optional[List["scout_rids_api_VersionedVizId"]] = None, check_rids: Optional[List[str]] = None, data_review_rids: Optional[List[str]] = None, next_page_token: Optional[str] = None, notebook_rids: Optional[List[str]] = None, page_size: Optional[int] = None, pinned_checklist_refs: Optional[List["scout_checks_api_PinnedChecklistRef"]] = None, priorities: Optional[List["
|
|
58344
|
+
def __init__(self, asset_rids: List[str], run_rids: List[str], after: Optional["api_Timestamp"] = None, archived_statuses: Optional[List["api_ArchivedStatus"]] = None, assignee_rids: Optional[List[str]] = None, before: Optional["api_Timestamp"] = None, chart_rids: Optional[List["scout_rids_api_VersionedVizId"]] = None, check_rids: Optional[List[str]] = None, data_review_rids: Optional[List[str]] = None, next_page_token: Optional[str] = None, notebook_rids: Optional[List[str]] = None, page_size: Optional[int] = None, pinned_checklist_refs: Optional[List["scout_checks_api_PinnedChecklistRef"]] = None, priorities: Optional[List["scout_api_Priority"]] = None, search_text: Optional[str] = None, show_archived: Optional[bool] = None, sort_by: Optional["scout_datareview_api_SearchCheckAlertsSortOptions"] = None, status: Optional[List["scout_datareview_api_CheckAlertStatus"]] = None) -> None:
|
|
58107
58345
|
self._next_page_token = next_page_token
|
|
58108
58346
|
self._page_size = page_size
|
|
58109
58347
|
self._sort_by = sort_by
|
|
@@ -58179,7 +58417,7 @@ class scout_datareview_api_SearchCheckAlertsRequest(ConjureBeanType):
|
|
|
58179
58417
|
return self._assignee_rids
|
|
58180
58418
|
|
|
58181
58419
|
@builtins.property
|
|
58182
|
-
def priorities(self) -> Optional[List["
|
|
58420
|
+
def priorities(self) -> Optional[List["scout_api_Priority"]]:
|
|
58183
58421
|
return self._priorities
|
|
58184
58422
|
|
|
58185
58423
|
@builtins.property
|
|
@@ -62366,12 +62604,12 @@ class scout_integrations_api_SendMessageRequest(ConjureBeanType):
|
|
|
62366
62604
|
'tags': ConjureFieldDefinition('tags', List[str]),
|
|
62367
62605
|
'ops_genie_alias': ConjureFieldDefinition('opsGenieAlias', OptionalTypeWrapper[str]),
|
|
62368
62606
|
'integration_rid': ConjureFieldDefinition('integrationRid', scout_integrations_api_IntegrationRid),
|
|
62369
|
-
'priority': ConjureFieldDefinition('priority', OptionalTypeWrapper[
|
|
62607
|
+
'priority': ConjureFieldDefinition('priority', OptionalTypeWrapper[scout_api_Priority])
|
|
62370
62608
|
}
|
|
62371
62609
|
|
|
62372
62610
|
__slots__: List[str] = ['_title', '_message', '_tags', '_ops_genie_alias', '_integration_rid', '_priority']
|
|
62373
62611
|
|
|
62374
|
-
def __init__(self, integration_rid: str, message: str, tags: List[str], ops_genie_alias: Optional[str] = None, priority: Optional["
|
|
62612
|
+
def __init__(self, integration_rid: str, message: str, tags: List[str], ops_genie_alias: Optional[str] = None, priority: Optional["scout_api_Priority"] = None, title: Optional[str] = None) -> None:
|
|
62375
62613
|
self._title = title
|
|
62376
62614
|
self._message = message
|
|
62377
62615
|
self._tags = tags
|
|
@@ -62409,7 +62647,7 @@ class scout_integrations_api_SendMessageRequest(ConjureBeanType):
|
|
|
62409
62647
|
return self._integration_rid
|
|
62410
62648
|
|
|
62411
62649
|
@builtins.property
|
|
62412
|
-
def priority(self) -> Optional["
|
|
62650
|
+
def priority(self) -> Optional["scout_api_Priority"]:
|
|
62413
62651
|
return self._priority
|
|
62414
62652
|
|
|
62415
62653
|
|
nominal_api/event/__init__.py
CHANGED
|
@@ -6,6 +6,8 @@ from .._impl import (
|
|
|
6
6
|
event_CreateEvent as CreateEvent,
|
|
7
7
|
event_DataReviewEventOrigin as DataReviewEventOrigin,
|
|
8
8
|
event_Event as Event,
|
|
9
|
+
event_EventDisposition as EventDisposition,
|
|
10
|
+
event_EventDispositionStatus as EventDispositionStatus,
|
|
9
11
|
event_EventOrigin as EventOrigin,
|
|
10
12
|
event_EventOriginVisitor as EventOriginVisitor,
|
|
11
13
|
event_EventService as EventService,
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
3
|
scout_api_ChannelLocator as ChannelLocator,
|
|
4
|
+
scout_api_ClosedWithFurtherActionDispositionState as ClosedWithFurtherActionDispositionState,
|
|
5
|
+
scout_api_ClosedWithIgnoreDispositionState as ClosedWithIgnoreDispositionState,
|
|
4
6
|
scout_api_DataSourceRefName as DataSourceRefName,
|
|
7
|
+
scout_api_DispositionState as DispositionState,
|
|
8
|
+
scout_api_DispositionStateVisitor as DispositionStateVisitor,
|
|
5
9
|
scout_api_HexColor as HexColor,
|
|
10
|
+
scout_api_PendingReviewDispositionState as PendingReviewDispositionState,
|
|
11
|
+
scout_api_Priority as Priority,
|
|
6
12
|
)
|
|
7
13
|
|
|
@@ -48,7 +48,6 @@ from .._impl import (
|
|
|
48
48
|
scout_checks_api_NumRangesConditionV3 as NumRangesConditionV3,
|
|
49
49
|
scout_checks_api_ParameterizedNumRangesConditionV1 as ParameterizedNumRangesConditionV1,
|
|
50
50
|
scout_checks_api_PinnedChecklistRef as PinnedChecklistRef,
|
|
51
|
-
scout_checks_api_Priority as Priority,
|
|
52
51
|
scout_checks_api_SaveChecklistRequest as SaveChecklistRequest,
|
|
53
52
|
scout_checks_api_SearchChecklistsRequest as SearchChecklistsRequest,
|
|
54
53
|
scout_checks_api_SortField as SortField,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=RG1Ed3BzPF0IAdmxf0GVNmQW0rueEFGnzr9apCkvsvM,1995
|
|
2
|
+
nominal_api/_impl.py,sha256=lbYbHwnIEg_ABVbHl87fuSpUBSvo7Cd_ALW8BJFvdTY,3087663
|
|
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
|
|
@@ -14,12 +14,12 @@ 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=I6GasoAKx2MLe72oaGDjnB_GWsGOnf6Ow_li3bi4eY8,1024
|
|
18
18
|
nominal_api/ingest_api/__init__.py,sha256=o-JBX6tm7Tfwkll1eqiiOzqZYvIyajtgqGkPjmYjrrQ,7014
|
|
19
19
|
nominal_api/ingest_workflow_api/__init__.py,sha256=fbjGpZ-UK2dTfdpzKIurwLB5m24afqsD81WT84kYFs4,1628
|
|
20
20
|
nominal_api/persistent_compute_api/__init__.py,sha256=OTn2mzP57Bq4MOItkXMockPrDZmHvp6wisuZHcy2K90,1973
|
|
21
21
|
nominal_api/scout/__init__.py,sha256=ip3XK_9jJKAoFiCifUVMTpDMiUE4mWIdGzMDu7LASus,324
|
|
22
|
-
nominal_api/scout_api/__init__.py,sha256=
|
|
22
|
+
nominal_api/scout_api/__init__.py,sha256=_yhqikk4r2QptjyRGhmcs8z3Ocjpw8rzvxqkc48HS5s,592
|
|
23
23
|
nominal_api/scout_asset_api/__init__.py,sha256=Ph-KlW-ki0JRejYQZDvbZ2jRzNAttVBux27lcEj7--Q,1910
|
|
24
24
|
nominal_api/scout_assets/__init__.py,sha256=dT-b9HnbwVbI-fEalfskKSMGzhGRwZDZ2cdzWul1daY,87
|
|
25
25
|
nominal_api/scout_catalog/__init__.py,sha256=dZeiBEaLbhHAYaOuwhheUsLPZVJuJrh7XCX8vVIgSJQ,3110
|
|
@@ -27,7 +27,7 @@ nominal_api/scout_channelvariables_api/__init__.py,sha256=39HhqONasq2MWrbEXvYwap
|
|
|
27
27
|
nominal_api/scout_chart_api/__init__.py,sha256=sw7WSYs6SarSW7x-3IBkSIrVea1cVFnQnpYiNKbCWnQ,184
|
|
28
28
|
nominal_api/scout_chartdefinition_api/__init__.py,sha256=55HVZFUPhZv4llzU5LyKw2jBtW7u1HExKpqITNutMe8,9604
|
|
29
29
|
nominal_api/scout_checklistexecution_api/__init__.py,sha256=1_nOnCSWn7bniSvTfskQ9LSJq5U2SRAKICZY9qipOJc,3579
|
|
30
|
-
nominal_api/scout_checks_api/__init__.py,sha256=
|
|
30
|
+
nominal_api/scout_checks_api/__init__.py,sha256=cNCQHBX38YqQv2qJMXwqUhjpCbayA3R9FqMmtKwzA3U,5160
|
|
31
31
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=8BL5jE9NDxqCj9DyvZWSPhq6zw2J7xp6aLsl3x9rpyw,4530
|
|
32
32
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=1LCXQe64tDqqeMQixW8PI-R_edSz7F5X0x2_ufEuC8M,480
|
|
33
33
|
nominal_api/scout_compute_api/__init__.py,sha256=m6in8f0svzf9c0VE4lUgKXCY-xiQ3vHfU-9moubq0p0,19498
|
|
@@ -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.640.0.dist-info/METADATA,sha256=Uuc1wJ3N42YE-7Zscn4yl4JEcvpfnL_R89D9y_rtJnI,199
|
|
77
|
+
nominal_api-0.640.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
78
|
+
nominal_api-0.640.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
79
|
+
nominal_api-0.640.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|