nominal-api 0.625.0__py3-none-any.whl → 0.627.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 +135 -38
- nominal_api/api_rids/__init__.py +1 -0
- nominal_api/event/__init__.py +0 -1
- nominal_api/scout_chartdefinition_api/__init__.py +2 -0
- {nominal_api-0.625.0.dist-info → nominal_api-0.627.0.dist-info}/METADATA +1 -1
- {nominal_api-0.625.0.dist-info → nominal_api-0.627.0.dist-info}/RECORD +9 -9
- {nominal_api-0.625.0.dist-info → nominal_api-0.627.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.625.0.dist-info → nominal_api-0.627.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -4784,10 +4784,6 @@ class datasource_logset_LogSetService(Service):
|
|
|
4784
4784
|
"""
|
|
4785
4785
|
|
|
4786
4786
|
def create(self, auth_header: str, request: "datasource_logset_api_CreateLogSetRequest") -> "datasource_logset_api_LogSetMetadata":
|
|
4787
|
-
"""
|
|
4788
|
-
Creates a log set, to which logs can be attached using `attach-and-finalize`. The logs within a logset are
|
|
4789
|
-
not searchable until the logset is finalized.
|
|
4790
|
-
"""
|
|
4791
4787
|
|
|
4792
4788
|
_headers: Dict[str, Any] = {
|
|
4793
4789
|
'Accept': 'application/json',
|
|
@@ -4817,9 +4813,6 @@ not searchable until the logset is finalized.
|
|
|
4817
4813
|
return _decoder.decode(_response.json(), datasource_logset_api_LogSetMetadata, self._return_none_for_unknown_union_types)
|
|
4818
4814
|
|
|
4819
4815
|
def attach_logs_and_finalize(self, auth_header: str, log_set_rid: str, request: "datasource_logset_api_AttachLogsAndFinalizeRequest") -> "datasource_logset_api_LogSetMetadata":
|
|
4820
|
-
"""
|
|
4821
|
-
A logset is not considered readable until it has been finalized. Once finalized, the logset is immutable.
|
|
4822
|
-
"""
|
|
4823
4816
|
|
|
4824
4817
|
_headers: Dict[str, Any] = {
|
|
4825
4818
|
'Accept': 'application/json',
|
|
@@ -4850,9 +4843,6 @@ not searchable until the logset is finalized.
|
|
|
4850
4843
|
return _decoder.decode(_response.json(), datasource_logset_api_LogSetMetadata, self._return_none_for_unknown_union_types)
|
|
4851
4844
|
|
|
4852
4845
|
def get_log_set_metadata(self, auth_header: str, log_set_rid: str) -> "datasource_logset_api_LogSetMetadata":
|
|
4853
|
-
"""
|
|
4854
|
-
Returns metadata about a log set.
|
|
4855
|
-
"""
|
|
4856
4846
|
|
|
4857
4847
|
_headers: Dict[str, Any] = {
|
|
4858
4848
|
'Accept': 'application/json',
|
|
@@ -4882,9 +4872,6 @@ not searchable until the logset is finalized.
|
|
|
4882
4872
|
return _decoder.decode(_response.json(), datasource_logset_api_LogSetMetadata, self._return_none_for_unknown_union_types)
|
|
4883
4873
|
|
|
4884
4874
|
def batch_get_log_set_metadata(self, auth_header: str, request: List[str] = None) -> List["datasource_logset_api_LogSetMetadata"]:
|
|
4885
|
-
"""
|
|
4886
|
-
Returns metadata about a set of log sets.
|
|
4887
|
-
"""
|
|
4888
4875
|
request = request if request is not None else []
|
|
4889
4876
|
|
|
4890
4877
|
_headers: Dict[str, Any] = {
|
|
@@ -4915,9 +4902,6 @@ not searchable until the logset is finalized.
|
|
|
4915
4902
|
return _decoder.decode(_response.json(), List[datasource_logset_api_LogSetMetadata], self._return_none_for_unknown_union_types)
|
|
4916
4903
|
|
|
4917
4904
|
def search_log_sets(self, auth_header: str, request: "datasource_logset_api_SearchLogSetsRequest") -> "datasource_logset_api_SearchLogSetsResponse":
|
|
4918
|
-
"""
|
|
4919
|
-
Searches all visible log sets based on log set metadata.
|
|
4920
|
-
"""
|
|
4921
4905
|
|
|
4922
4906
|
_headers: Dict[str, Any] = {
|
|
4923
4907
|
'Accept': 'application/json',
|
|
@@ -4947,9 +4931,6 @@ not searchable until the logset is finalized.
|
|
|
4947
4931
|
return _decoder.decode(_response.json(), datasource_logset_api_SearchLogSetsResponse, self._return_none_for_unknown_union_types)
|
|
4948
4932
|
|
|
4949
4933
|
def search_logs(self, auth_header: str, log_set_rid: str, request: "datasource_logset_api_SearchLogsRequest") -> "datasource_logset_api_SearchLogsResponse":
|
|
4950
|
-
"""
|
|
4951
|
-
Searches logs within a single log set.
|
|
4952
|
-
"""
|
|
4953
4934
|
|
|
4954
4935
|
_headers: Dict[str, Any] = {
|
|
4955
4936
|
'Accept': 'application/json',
|
|
@@ -5656,7 +5637,8 @@ class event_Event(ConjureBeanType):
|
|
|
5656
5637
|
@builtins.classmethod
|
|
5657
5638
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5658
5639
|
return {
|
|
5659
|
-
'uuid': ConjureFieldDefinition('uuid', str),
|
|
5640
|
+
'uuid': ConjureFieldDefinition('uuid', OptionalTypeWrapper[str]),
|
|
5641
|
+
'rid': ConjureFieldDefinition('rid', api_rids_EventRid),
|
|
5660
5642
|
'asset_rids': ConjureFieldDefinition('assetRids', List[scout_rids_api_AssetRid]),
|
|
5661
5643
|
'origins': ConjureFieldDefinition('origins', List[event_EventOrigin]),
|
|
5662
5644
|
'timestamp': ConjureFieldDefinition('timestamp', api_Timestamp),
|
|
@@ -5670,10 +5652,11 @@ class event_Event(ConjureBeanType):
|
|
|
5670
5652
|
'created_by': ConjureFieldDefinition('createdBy', OptionalTypeWrapper[scout_rids_api_UserRid])
|
|
5671
5653
|
}
|
|
5672
5654
|
|
|
5673
|
-
__slots__: List[str] = ['_uuid', '_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties', '_is_archived', '_created_by']
|
|
5655
|
+
__slots__: List[str] = ['_uuid', '_rid', '_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties', '_is_archived', '_created_by']
|
|
5674
5656
|
|
|
5675
|
-
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], timestamp: "api_Timestamp", type: "event_EventType",
|
|
5657
|
+
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", created_by: Optional[str] = None, uuid: Optional[str] = None) -> None:
|
|
5676
5658
|
self._uuid = uuid
|
|
5659
|
+
self._rid = rid
|
|
5677
5660
|
self._asset_rids = asset_rids
|
|
5678
5661
|
self._origins = origins
|
|
5679
5662
|
self._timestamp = timestamp
|
|
@@ -5687,14 +5670,13 @@ class event_Event(ConjureBeanType):
|
|
|
5687
5670
|
self._created_by = created_by
|
|
5688
5671
|
|
|
5689
5672
|
@builtins.property
|
|
5690
|
-
def uuid(self) -> str:
|
|
5691
|
-
"""
|
|
5692
|
-
The unique identifier for the event. Events are identified by their UUID, rather than RID, because
|
|
5693
|
-
events are not directly authorized resources, but are instead authorized indirectly through their
|
|
5694
|
-
associated assets. Thus an event RID would not identify a valid authorized resource.
|
|
5695
|
-
"""
|
|
5673
|
+
def uuid(self) -> Optional[str]:
|
|
5696
5674
|
return self._uuid
|
|
5697
5675
|
|
|
5676
|
+
@builtins.property
|
|
5677
|
+
def rid(self) -> str:
|
|
5678
|
+
return self._rid
|
|
5679
|
+
|
|
5698
5680
|
@builtins.property
|
|
5699
5681
|
def asset_rids(self) -> List[str]:
|
|
5700
5682
|
"""
|
|
@@ -5933,9 +5915,42 @@ The Event Service is responsible for creating and retrieving events for a partic
|
|
|
5933
5915
|
_decoder = ConjureDecoder()
|
|
5934
5916
|
return _decoder.decode(_response.json(), List[event_Event], self._return_none_for_unknown_union_types)
|
|
5935
5917
|
|
|
5918
|
+
def batch_get_events(self, auth_header: str, request: List[str] = None) -> List["event_Event"]:
|
|
5919
|
+
"""
|
|
5920
|
+
Gets a set of events by RID.
|
|
5921
|
+
"""
|
|
5922
|
+
request = request if request is not None else []
|
|
5923
|
+
|
|
5924
|
+
_headers: Dict[str, Any] = {
|
|
5925
|
+
'Accept': 'application/json',
|
|
5926
|
+
'Content-Type': 'application/json',
|
|
5927
|
+
'Authorization': auth_header,
|
|
5928
|
+
}
|
|
5929
|
+
|
|
5930
|
+
_params: Dict[str, Any] = {
|
|
5931
|
+
}
|
|
5932
|
+
|
|
5933
|
+
_path_params: Dict[str, Any] = {
|
|
5934
|
+
}
|
|
5935
|
+
|
|
5936
|
+
_json: Any = ConjureEncoder().default(request)
|
|
5937
|
+
|
|
5938
|
+
_path = '/event/v1/events/batch-get'
|
|
5939
|
+
_path = _path.format(**_path_params)
|
|
5940
|
+
|
|
5941
|
+
_response: Response = self._request(
|
|
5942
|
+
'POST',
|
|
5943
|
+
self._uri + _path,
|
|
5944
|
+
params=_params,
|
|
5945
|
+
headers=_headers,
|
|
5946
|
+
json=_json)
|
|
5947
|
+
|
|
5948
|
+
_decoder = ConjureDecoder()
|
|
5949
|
+
return _decoder.decode(_response.json(), List[event_Event], self._return_none_for_unknown_union_types)
|
|
5950
|
+
|
|
5936
5951
|
def update_event(self, auth_header: str, request: "event_UpdateEvent") -> "event_Event":
|
|
5937
5952
|
"""
|
|
5938
|
-
Updates the fields of an event. Empty fields are left unchanged
|
|
5953
|
+
Updates the fields of an event. Empty fields are left unchanged.
|
|
5939
5954
|
"""
|
|
5940
5955
|
|
|
5941
5956
|
_headers: Dict[str, Any] = {
|
|
@@ -5996,6 +6011,38 @@ The Event Service is responsible for creating and retrieving events for a partic
|
|
|
5996
6011
|
|
|
5997
6012
|
return
|
|
5998
6013
|
|
|
6014
|
+
def batch_archive_event(self, auth_header: str, request: List[str] = None) -> None:
|
|
6015
|
+
"""
|
|
6016
|
+
Archives a set of events
|
|
6017
|
+
"""
|
|
6018
|
+
request = request if request is not None else []
|
|
6019
|
+
|
|
6020
|
+
_headers: Dict[str, Any] = {
|
|
6021
|
+
'Accept': 'application/json',
|
|
6022
|
+
'Content-Type': 'application/json',
|
|
6023
|
+
'Authorization': auth_header,
|
|
6024
|
+
}
|
|
6025
|
+
|
|
6026
|
+
_params: Dict[str, Any] = {
|
|
6027
|
+
}
|
|
6028
|
+
|
|
6029
|
+
_path_params: Dict[str, Any] = {
|
|
6030
|
+
}
|
|
6031
|
+
|
|
6032
|
+
_json: Any = ConjureEncoder().default(request)
|
|
6033
|
+
|
|
6034
|
+
_path = '/event/v1/batch-archive-events'
|
|
6035
|
+
_path = _path.format(**_path_params)
|
|
6036
|
+
|
|
6037
|
+
_response: Response = self._request(
|
|
6038
|
+
'POST',
|
|
6039
|
+
self._uri + _path,
|
|
6040
|
+
params=_params,
|
|
6041
|
+
headers=_headers,
|
|
6042
|
+
json=_json)
|
|
6043
|
+
|
|
6044
|
+
return
|
|
6045
|
+
|
|
5999
6046
|
def search_events(self, auth_header: str, request: "event_SearchEventsRequest") -> "event_SearchEventsResponse":
|
|
6000
6047
|
"""
|
|
6001
6048
|
Searches for events that match the given filters.
|
|
@@ -6464,7 +6511,8 @@ class event_UpdateEvent(ConjureBeanType):
|
|
|
6464
6511
|
@builtins.classmethod
|
|
6465
6512
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
6466
6513
|
return {
|
|
6467
|
-
'uuid': ConjureFieldDefinition('uuid', str),
|
|
6514
|
+
'uuid': ConjureFieldDefinition('uuid', OptionalTypeWrapper[str]),
|
|
6515
|
+
'rid': ConjureFieldDefinition('rid', OptionalTypeWrapper[api_rids_EventRid]),
|
|
6468
6516
|
'asset_rids': ConjureFieldDefinition('assetRids', OptionalTypeWrapper[List[scout_rids_api_AssetRid]]),
|
|
6469
6517
|
'timestamp': ConjureFieldDefinition('timestamp', OptionalTypeWrapper[api_Timestamp]),
|
|
6470
6518
|
'duration': ConjureFieldDefinition('duration', OptionalTypeWrapper[scout_run_api_Duration]),
|
|
@@ -6475,10 +6523,11 @@ class event_UpdateEvent(ConjureBeanType):
|
|
|
6475
6523
|
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]])
|
|
6476
6524
|
}
|
|
6477
6525
|
|
|
6478
|
-
__slots__: List[str] = ['_uuid', '_asset_rids', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties']
|
|
6526
|
+
__slots__: List[str] = ['_uuid', '_rid', '_asset_rids', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties']
|
|
6479
6527
|
|
|
6480
|
-
def __init__(self,
|
|
6528
|
+
def __init__(self, asset_rids: Optional[List[str]] = None, description: Optional[str] = None, duration: Optional["scout_run_api_Duration"] = None, labels: Optional[List[str]] = None, name: Optional[str] = None, properties: Optional[Dict[str, str]] = None, rid: Optional[str] = None, timestamp: Optional["api_Timestamp"] = None, type: Optional["event_EventType"] = None, uuid: Optional[str] = None) -> None:
|
|
6481
6529
|
self._uuid = uuid
|
|
6530
|
+
self._rid = rid
|
|
6482
6531
|
self._asset_rids = asset_rids
|
|
6483
6532
|
self._timestamp = timestamp
|
|
6484
6533
|
self._duration = duration
|
|
@@ -6489,9 +6538,17 @@ class event_UpdateEvent(ConjureBeanType):
|
|
|
6489
6538
|
self._properties = properties
|
|
6490
6539
|
|
|
6491
6540
|
@builtins.property
|
|
6492
|
-
def uuid(self) -> str:
|
|
6541
|
+
def uuid(self) -> Optional[str]:
|
|
6493
6542
|
return self._uuid
|
|
6494
6543
|
|
|
6544
|
+
@builtins.property
|
|
6545
|
+
def rid(self) -> Optional[str]:
|
|
6546
|
+
"""
|
|
6547
|
+
The unique identifier for the event.
|
|
6548
|
+
This field is required if the uuid field is not provided.
|
|
6549
|
+
"""
|
|
6550
|
+
return self._rid
|
|
6551
|
+
|
|
6495
6552
|
@builtins.property
|
|
6496
6553
|
def asset_rids(self) -> Optional[List[str]]:
|
|
6497
6554
|
"""
|
|
@@ -21976,6 +22033,38 @@ scout_chartdefinition_api_LineThresholdGroup.__qualname__ = "LineThresholdGroup"
|
|
|
21976
22033
|
scout_chartdefinition_api_LineThresholdGroup.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
21977
22034
|
|
|
21978
22035
|
|
|
22036
|
+
class scout_chartdefinition_api_LogChannel(ConjureBeanType):
|
|
22037
|
+
"""
|
|
22038
|
+
A field to save additional column names on log panels with support for multiple variables
|
|
22039
|
+
"""
|
|
22040
|
+
|
|
22041
|
+
@builtins.classmethod
|
|
22042
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22043
|
+
return {
|
|
22044
|
+
'log_channel_variable_name': ConjureFieldDefinition('logChannelVariableName', scout_channelvariables_api_ChannelVariableName),
|
|
22045
|
+
'visible_log_column_names': ConjureFieldDefinition('visibleLogColumnNames', List[scout_chartdefinition_api_LogColumnName])
|
|
22046
|
+
}
|
|
22047
|
+
|
|
22048
|
+
__slots__: List[str] = ['_log_channel_variable_name', '_visible_log_column_names']
|
|
22049
|
+
|
|
22050
|
+
def __init__(self, log_channel_variable_name: str, visible_log_column_names: List[str]) -> None:
|
|
22051
|
+
self._log_channel_variable_name = log_channel_variable_name
|
|
22052
|
+
self._visible_log_column_names = visible_log_column_names
|
|
22053
|
+
|
|
22054
|
+
@builtins.property
|
|
22055
|
+
def log_channel_variable_name(self) -> str:
|
|
22056
|
+
return self._log_channel_variable_name
|
|
22057
|
+
|
|
22058
|
+
@builtins.property
|
|
22059
|
+
def visible_log_column_names(self) -> List[str]:
|
|
22060
|
+
return self._visible_log_column_names
|
|
22061
|
+
|
|
22062
|
+
|
|
22063
|
+
scout_chartdefinition_api_LogChannel.__name__ = "LogChannel"
|
|
22064
|
+
scout_chartdefinition_api_LogChannel.__qualname__ = "LogChannel"
|
|
22065
|
+
scout_chartdefinition_api_LogChannel.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
22066
|
+
|
|
22067
|
+
|
|
21979
22068
|
class scout_chartdefinition_api_LogPanelDefinition(ConjureUnionType):
|
|
21980
22069
|
_v1: Optional["scout_chartdefinition_api_LogPanelDefinitionV1"] = None
|
|
21981
22070
|
|
|
@@ -22038,14 +22127,16 @@ class scout_chartdefinition_api_LogPanelDefinitionV1(ConjureBeanType):
|
|
|
22038
22127
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
22039
22128
|
return {
|
|
22040
22129
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
22041
|
-
'log_channels': ConjureFieldDefinition('logChannels', List[scout_channelvariables_api_ChannelVariableName])
|
|
22130
|
+
'log_channels': ConjureFieldDefinition('logChannels', List[scout_channelvariables_api_ChannelVariableName]),
|
|
22131
|
+
'log_channels_v2': ConjureFieldDefinition('logChannelsV2', OptionalTypeWrapper[List[scout_chartdefinition_api_LogChannel]])
|
|
22042
22132
|
}
|
|
22043
22133
|
|
|
22044
|
-
__slots__: List[str] = ['_title', '_log_channels']
|
|
22134
|
+
__slots__: List[str] = ['_title', '_log_channels', '_log_channels_v2']
|
|
22045
22135
|
|
|
22046
|
-
def __init__(self, log_channels: List[str], title: Optional[str] = None) -> None:
|
|
22136
|
+
def __init__(self, log_channels: List[str], log_channels_v2: Optional[List["scout_chartdefinition_api_LogChannel"]] = None, title: Optional[str] = None) -> None:
|
|
22047
22137
|
self._title = title
|
|
22048
22138
|
self._log_channels = log_channels
|
|
22139
|
+
self._log_channels_v2 = log_channels_v2
|
|
22049
22140
|
|
|
22050
22141
|
@builtins.property
|
|
22051
22142
|
def title(self) -> Optional[str]:
|
|
@@ -22055,6 +22146,10 @@ class scout_chartdefinition_api_LogPanelDefinitionV1(ConjureBeanType):
|
|
|
22055
22146
|
def log_channels(self) -> List[str]:
|
|
22056
22147
|
return self._log_channels
|
|
22057
22148
|
|
|
22149
|
+
@builtins.property
|
|
22150
|
+
def log_channels_v2(self) -> Optional[List["scout_chartdefinition_api_LogChannel"]]:
|
|
22151
|
+
return self._log_channels_v2
|
|
22152
|
+
|
|
22058
22153
|
|
|
22059
22154
|
scout_chartdefinition_api_LogPanelDefinitionV1.__name__ = "LogPanelDefinitionV1"
|
|
22060
22155
|
scout_chartdefinition_api_LogPanelDefinitionV1.__qualname__ = "LogPanelDefinitionV1"
|
|
@@ -77428,8 +77523,6 @@ scout_units_api_UnitProperty = str
|
|
|
77428
77523
|
|
|
77429
77524
|
timeseries_logicalseries_api_MeasurementName = str
|
|
77430
77525
|
|
|
77431
|
-
event_EventRid = str
|
|
77432
|
-
|
|
77433
77526
|
themes_api_HexColor = str
|
|
77434
77527
|
|
|
77435
77528
|
scout_compute_representation_api_ComputeExpression = str
|
|
@@ -77502,6 +77595,8 @@ storage_writer_api_MeasurementName = str
|
|
|
77502
77595
|
|
|
77503
77596
|
storage_datasource_api_NominalDataSourceId = str
|
|
77504
77597
|
|
|
77598
|
+
api_rids_EventRid = str
|
|
77599
|
+
|
|
77505
77600
|
persistent_compute_api_Milliseconds = int
|
|
77506
77601
|
|
|
77507
77602
|
scout_datareview_api_AutomaticCheckEvaluationRid = str
|
|
@@ -77550,6 +77645,8 @@ scout_rids_api_ApiKeyRid = str
|
|
|
77550
77645
|
|
|
77551
77646
|
ingest_api_ChannelPrefix = OptionalTypeWrapper[str]
|
|
77552
77647
|
|
|
77648
|
+
scout_chartdefinition_api_LogColumnName = str
|
|
77649
|
+
|
|
77553
77650
|
scout_rids_api_AssetRid = str
|
|
77554
77651
|
|
|
77555
77652
|
comments_api_CommentRid = str
|
nominal_api/api_rids/__init__.py
CHANGED
|
@@ -4,6 +4,7 @@ from .._impl import (
|
|
|
4
4
|
api_rids_ChunkRid as ChunkRid,
|
|
5
5
|
api_rids_DataSourceRid as DataSourceRid,
|
|
6
6
|
api_rids_DatasetRid as DatasetRid,
|
|
7
|
+
api_rids_EventRid as EventRid,
|
|
7
8
|
api_rids_NominalDataSourceOrDatasetRid as NominalDataSourceOrDatasetRid,
|
|
8
9
|
api_rids_NominalDataSourceRid as NominalDataSourceRid,
|
|
9
10
|
api_rids_SegmentRid as SegmentRid,
|
nominal_api/event/__init__.py
CHANGED
|
@@ -61,6 +61,8 @@ from .._impl import (
|
|
|
61
61
|
scout_chartdefinition_api_LineStyleVisitor as LineStyleVisitor,
|
|
62
62
|
scout_chartdefinition_api_LineThreshold as LineThreshold,
|
|
63
63
|
scout_chartdefinition_api_LineThresholdGroup as LineThresholdGroup,
|
|
64
|
+
scout_chartdefinition_api_LogChannel as LogChannel,
|
|
65
|
+
scout_chartdefinition_api_LogColumnName as LogColumnName,
|
|
64
66
|
scout_chartdefinition_api_LogPanelDefinition as LogPanelDefinition,
|
|
65
67
|
scout_chartdefinition_api_LogPanelDefinitionV1 as LogPanelDefinitionV1,
|
|
66
68
|
scout_chartdefinition_api_LogPanelDefinitionVisitor as LogPanelDefinitionVisitor,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=P76isY4LphNTprmhBkwjeEJs0a38I0GCo3ADBMLhXUk,1995
|
|
2
|
+
nominal_api/_impl.py,sha256=lDNolI5SxKtRXc8MtLXOz_PVWCDH6S5ZbUDtJfnRnGI,3006835
|
|
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=N-7XHbrCq2m4GmZKr7CtcqQEy_gEBfThVehN5CKmcT8,535
|
|
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,7 +14,7 @@ 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=pim-mIINXhntq9ZtLbCeunLUPhK7sonqI3fCRQalhRA,804
|
|
18
18
|
nominal_api/ingest_api/__init__.py,sha256=jpxmJO0dzcCEIv5iM7xvziQEs1x92XLTm-LmbHxtii4,6953
|
|
19
19
|
nominal_api/ingest_workflow_api/__init__.py,sha256=1oJO78YCmXFkfN5LY7x0gOJwtijrOcXD8Sl0GJCOyrk,1352
|
|
20
20
|
nominal_api/persistent_compute_api/__init__.py,sha256=9X56Ar01aw8PUC7rVVZ2A9Vny0QIXaJPWJtjjCY4IWg,1912
|
|
@@ -25,7 +25,7 @@ nominal_api/scout_assets/__init__.py,sha256=dT-b9HnbwVbI-fEalfskKSMGzhGRwZDZ2cdz
|
|
|
25
25
|
nominal_api/scout_catalog/__init__.py,sha256=dZeiBEaLbhHAYaOuwhheUsLPZVJuJrh7XCX8vVIgSJQ,3110
|
|
26
26
|
nominal_api/scout_channelvariables_api/__init__.py,sha256=39HhqONasq2MWrbEXvYwap4BqpOP9Q0Mg07-J2Zenqs,762
|
|
27
27
|
nominal_api/scout_chart_api/__init__.py,sha256=sw7WSYs6SarSW7x-3IBkSIrVea1cVFnQnpYiNKbCWnQ,184
|
|
28
|
-
nominal_api/scout_chartdefinition_api/__init__.py,sha256=
|
|
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
30
|
nominal_api/scout_checks_api/__init__.py,sha256=RJH7HsXjUhItC11V9C-hfv6lkIfiSXyxnB8slUpaT2g,5203
|
|
31
31
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=8BL5jE9NDxqCj9DyvZWSPhq6zw2J7xp6aLsl3x9rpyw,4530
|
|
@@ -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.627.0.dist-info/METADATA,sha256=6nzCaB0qCgjq-famIqm8i1200wQmA2MrLAc4vGNaBpg,199
|
|
77
|
+
nominal_api-0.627.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
78
|
+
nominal_api-0.627.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
79
|
+
nominal_api-0.627.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|