nominal-api 0.795.3__py3-none-any.whl → 0.797.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 +126 -18
- nominal_api/event/__init__.py +2 -0
- {nominal_api-0.795.3.dist-info → nominal_api-0.797.0.dist-info}/METADATA +1 -1
- {nominal_api-0.795.3.dist-info → nominal_api-0.797.0.dist-info}/RECORD +7 -7
- {nominal_api-0.795.3.dist-info → nominal_api-0.797.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.795.3.dist-info → nominal_api-0.797.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -5876,6 +5876,7 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5876
5876
|
_template: Optional["event_TemplateEventOrigin"] = None
|
|
5877
5877
|
_api: Optional["event_ApiEventOrigin"] = None
|
|
5878
5878
|
_data_review: Optional["event_DataReviewEventOrigin"] = None
|
|
5879
|
+
_procedure: Optional["event_ProcedureEventOrigin"] = None
|
|
5879
5880
|
|
|
5880
5881
|
@builtins.classmethod
|
|
5881
5882
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -5883,7 +5884,8 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5883
5884
|
'workbook': ConjureFieldDefinition('workbook', event_WorkbookEventOrigin),
|
|
5884
5885
|
'template': ConjureFieldDefinition('template', event_TemplateEventOrigin),
|
|
5885
5886
|
'api': ConjureFieldDefinition('api', event_ApiEventOrigin),
|
|
5886
|
-
'data_review': ConjureFieldDefinition('dataReview', event_DataReviewEventOrigin)
|
|
5887
|
+
'data_review': ConjureFieldDefinition('dataReview', event_DataReviewEventOrigin),
|
|
5888
|
+
'procedure': ConjureFieldDefinition('procedure', event_ProcedureEventOrigin)
|
|
5887
5889
|
}
|
|
5888
5890
|
|
|
5889
5891
|
def __init__(
|
|
@@ -5892,10 +5894,11 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5892
5894
|
template: Optional["event_TemplateEventOrigin"] = None,
|
|
5893
5895
|
api: Optional["event_ApiEventOrigin"] = None,
|
|
5894
5896
|
data_review: Optional["event_DataReviewEventOrigin"] = None,
|
|
5897
|
+
procedure: Optional["event_ProcedureEventOrigin"] = None,
|
|
5895
5898
|
type_of_union: Optional[str] = None
|
|
5896
5899
|
) -> None:
|
|
5897
5900
|
if type_of_union is None:
|
|
5898
|
-
if (workbook is not None) + (template is not None) + (api is not None) + (data_review is not None) != 1:
|
|
5901
|
+
if (workbook is not None) + (template is not None) + (api is not None) + (data_review is not None) + (procedure is not None) != 1:
|
|
5899
5902
|
raise ValueError('a union must contain a single member')
|
|
5900
5903
|
|
|
5901
5904
|
if workbook is not None:
|
|
@@ -5910,6 +5913,9 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5910
5913
|
if data_review is not None:
|
|
5911
5914
|
self._data_review = data_review
|
|
5912
5915
|
self._type = 'dataReview'
|
|
5916
|
+
if procedure is not None:
|
|
5917
|
+
self._procedure = procedure
|
|
5918
|
+
self._type = 'procedure'
|
|
5913
5919
|
|
|
5914
5920
|
elif type_of_union == 'workbook':
|
|
5915
5921
|
if workbook is None:
|
|
@@ -5931,6 +5937,11 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5931
5937
|
raise ValueError('a union value must not be None')
|
|
5932
5938
|
self._data_review = data_review
|
|
5933
5939
|
self._type = 'dataReview'
|
|
5940
|
+
elif type_of_union == 'procedure':
|
|
5941
|
+
if procedure is None:
|
|
5942
|
+
raise ValueError('a union value must not be None')
|
|
5943
|
+
self._procedure = procedure
|
|
5944
|
+
self._type = 'procedure'
|
|
5934
5945
|
|
|
5935
5946
|
@builtins.property
|
|
5936
5947
|
def workbook(self) -> Optional["event_WorkbookEventOrigin"]:
|
|
@@ -5956,6 +5967,12 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5956
5967
|
"""
|
|
5957
5968
|
return self._data_review
|
|
5958
5969
|
|
|
5970
|
+
@builtins.property
|
|
5971
|
+
def procedure(self) -> Optional["event_ProcedureEventOrigin"]:
|
|
5972
|
+
"""This event was created automatically from a procedure execution.
|
|
5973
|
+
"""
|
|
5974
|
+
return self._procedure
|
|
5975
|
+
|
|
5959
5976
|
def accept(self, visitor) -> Any:
|
|
5960
5977
|
if not isinstance(visitor, event_EventOriginVisitor):
|
|
5961
5978
|
raise ValueError('{} is not an instance of event_EventOriginVisitor'.format(visitor.__class__.__name__))
|
|
@@ -5967,6 +5984,8 @@ class event_EventOrigin(ConjureUnionType):
|
|
|
5967
5984
|
return visitor._api(self.api)
|
|
5968
5985
|
if self._type == 'dataReview' and self.data_review is not None:
|
|
5969
5986
|
return visitor._data_review(self.data_review)
|
|
5987
|
+
if self._type == 'procedure' and self.procedure is not None:
|
|
5988
|
+
return visitor._procedure(self.procedure)
|
|
5970
5989
|
|
|
5971
5990
|
|
|
5972
5991
|
event_EventOrigin.__name__ = "EventOrigin"
|
|
@@ -5992,6 +6011,10 @@ class event_EventOriginVisitor:
|
|
|
5992
6011
|
def _data_review(self, data_review: "event_DataReviewEventOrigin") -> Any:
|
|
5993
6012
|
pass
|
|
5994
6013
|
|
|
6014
|
+
@abstractmethod
|
|
6015
|
+
def _procedure(self, procedure: "event_ProcedureEventOrigin") -> Any:
|
|
6016
|
+
pass
|
|
6017
|
+
|
|
5995
6018
|
|
|
5996
6019
|
event_EventOriginVisitor.__name__ = "EventOriginVisitor"
|
|
5997
6020
|
event_EventOriginVisitor.__qualname__ = "EventOriginVisitor"
|
|
@@ -7001,6 +7024,35 @@ event_HistogramFilterQueryVisitor.__qualname__ = "HistogramFilterQueryVisitor"
|
|
|
7001
7024
|
event_HistogramFilterQueryVisitor.__module__ = "nominal_api.event"
|
|
7002
7025
|
|
|
7003
7026
|
|
|
7027
|
+
class event_ProcedureEventOrigin(ConjureBeanType):
|
|
7028
|
+
|
|
7029
|
+
@builtins.classmethod
|
|
7030
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
7031
|
+
return {
|
|
7032
|
+
'procedure_execution_rid': ConjureFieldDefinition('procedureExecutionRid', api_rids_ProcedureExecutionRid),
|
|
7033
|
+
'step_node_id': ConjureFieldDefinition('stepNodeId', str)
|
|
7034
|
+
}
|
|
7035
|
+
|
|
7036
|
+
__slots__: List[str] = ['_procedure_execution_rid', '_step_node_id']
|
|
7037
|
+
|
|
7038
|
+
def __init__(self, procedure_execution_rid: str, step_node_id: str) -> None:
|
|
7039
|
+
self._procedure_execution_rid = procedure_execution_rid
|
|
7040
|
+
self._step_node_id = step_node_id
|
|
7041
|
+
|
|
7042
|
+
@builtins.property
|
|
7043
|
+
def procedure_execution_rid(self) -> str:
|
|
7044
|
+
return self._procedure_execution_rid
|
|
7045
|
+
|
|
7046
|
+
@builtins.property
|
|
7047
|
+
def step_node_id(self) -> str:
|
|
7048
|
+
return self._step_node_id
|
|
7049
|
+
|
|
7050
|
+
|
|
7051
|
+
event_ProcedureEventOrigin.__name__ = "ProcedureEventOrigin"
|
|
7052
|
+
event_ProcedureEventOrigin.__qualname__ = "ProcedureEventOrigin"
|
|
7053
|
+
event_ProcedureEventOrigin.__module__ = "nominal_api.event"
|
|
7054
|
+
|
|
7055
|
+
|
|
7004
7056
|
class event_SearchEventOriginType(ConjureEnumType):
|
|
7005
7057
|
|
|
7006
7058
|
WORKBOOK = 'WORKBOOK'
|
|
@@ -7011,6 +7063,8 @@ class event_SearchEventOriginType(ConjureEnumType):
|
|
|
7011
7063
|
'''API'''
|
|
7012
7064
|
DATA_REVIEW = 'DATA_REVIEW'
|
|
7013
7065
|
'''DATA_REVIEW'''
|
|
7066
|
+
PROCEDURE = 'PROCEDURE'
|
|
7067
|
+
'''PROCEDURE'''
|
|
7014
7068
|
UNKNOWN = 'UNKNOWN'
|
|
7015
7069
|
'''UNKNOWN'''
|
|
7016
7070
|
|
|
@@ -38275,13 +38329,15 @@ class scout_compute_api_ArrowBucketedEnumPlot(ConjureBeanType):
|
|
|
38275
38329
|
@builtins.classmethod
|
|
38276
38330
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
38277
38331
|
return {
|
|
38278
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
38332
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
38333
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
|
38279
38334
|
}
|
|
38280
38335
|
|
|
38281
|
-
__slots__: List[str] = ['_arrow_binary']
|
|
38336
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
|
38282
38337
|
|
|
38283
|
-
def __init__(self, arrow_binary: Any) -> None:
|
|
38338
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
|
38284
38339
|
self._arrow_binary = arrow_binary
|
|
38340
|
+
self._group_by_keys = group_by_keys
|
|
38285
38341
|
|
|
38286
38342
|
@builtins.property
|
|
38287
38343
|
def arrow_binary(self) -> Any:
|
|
@@ -38289,6 +38345,13 @@ class scout_compute_api_ArrowBucketedEnumPlot(ConjureBeanType):
|
|
|
38289
38345
|
"""
|
|
38290
38346
|
return self._arrow_binary
|
|
38291
38347
|
|
|
38348
|
+
@builtins.property
|
|
38349
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
|
38350
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
|
38351
|
+
this list represents the superset of all group by keys used across every individual channel.
|
|
38352
|
+
"""
|
|
38353
|
+
return self._group_by_keys
|
|
38354
|
+
|
|
38292
38355
|
|
|
38293
38356
|
scout_compute_api_ArrowBucketedEnumPlot.__name__ = "ArrowBucketedEnumPlot"
|
|
38294
38357
|
scout_compute_api_ArrowBucketedEnumPlot.__qualname__ = "ArrowBucketedEnumPlot"
|
|
@@ -38300,13 +38363,15 @@ class scout_compute_api_ArrowBucketedNumericPlot(ConjureBeanType):
|
|
|
38300
38363
|
@builtins.classmethod
|
|
38301
38364
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
38302
38365
|
return {
|
|
38303
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
38366
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
38367
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
|
38304
38368
|
}
|
|
38305
38369
|
|
|
38306
|
-
__slots__: List[str] = ['_arrow_binary']
|
|
38370
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
|
38307
38371
|
|
|
38308
|
-
def __init__(self, arrow_binary: Any) -> None:
|
|
38372
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
|
38309
38373
|
self._arrow_binary = arrow_binary
|
|
38374
|
+
self._group_by_keys = group_by_keys
|
|
38310
38375
|
|
|
38311
38376
|
@builtins.property
|
|
38312
38377
|
def arrow_binary(self) -> Any:
|
|
@@ -38314,6 +38379,13 @@ class scout_compute_api_ArrowBucketedNumericPlot(ConjureBeanType):
|
|
|
38314
38379
|
"""
|
|
38315
38380
|
return self._arrow_binary
|
|
38316
38381
|
|
|
38382
|
+
@builtins.property
|
|
38383
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
|
38384
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
|
38385
|
+
this list represents the superset of all group by keys used across every individual channel.
|
|
38386
|
+
"""
|
|
38387
|
+
return self._group_by_keys
|
|
38388
|
+
|
|
38317
38389
|
|
|
38318
38390
|
scout_compute_api_ArrowBucketedNumericPlot.__name__ = "ArrowBucketedNumericPlot"
|
|
38319
38391
|
scout_compute_api_ArrowBucketedNumericPlot.__qualname__ = "ArrowBucketedNumericPlot"
|
|
@@ -39057,13 +39129,15 @@ indicate the index of the array that the bucket corresponds to.
|
|
|
39057
39129
|
@builtins.classmethod
|
|
39058
39130
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
39059
39131
|
return {
|
|
39060
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
39132
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
39133
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
|
39061
39134
|
}
|
|
39062
39135
|
|
|
39063
|
-
__slots__: List[str] = ['_arrow_binary']
|
|
39136
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
|
39064
39137
|
|
|
39065
|
-
def __init__(self, arrow_binary: Any) -> None:
|
|
39138
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
|
39066
39139
|
self._arrow_binary = arrow_binary
|
|
39140
|
+
self._group_by_keys = group_by_keys
|
|
39067
39141
|
|
|
39068
39142
|
@builtins.property
|
|
39069
39143
|
def arrow_binary(self) -> Any:
|
|
@@ -39071,6 +39145,13 @@ indicate the index of the array that the bucket corresponds to.
|
|
|
39071
39145
|
"""
|
|
39072
39146
|
return self._arrow_binary
|
|
39073
39147
|
|
|
39148
|
+
@builtins.property
|
|
39149
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
|
39150
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
|
39151
|
+
this list represents the superset of all group by keys used across every individual channel.
|
|
39152
|
+
"""
|
|
39153
|
+
return self._group_by_keys
|
|
39154
|
+
|
|
39074
39155
|
|
|
39075
39156
|
scout_compute_api_BucketedEnumArrayPlot.__name__ = "BucketedEnumArrayPlot"
|
|
39076
39157
|
scout_compute_api_BucketedEnumArrayPlot.__qualname__ = "BucketedEnumArrayPlot"
|
|
@@ -39178,13 +39259,15 @@ indicate the index of the array that the bucket corresponds to.
|
|
|
39178
39259
|
@builtins.classmethod
|
|
39179
39260
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
39180
39261
|
return {
|
|
39181
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType)
|
|
39262
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
39263
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
|
39182
39264
|
}
|
|
39183
39265
|
|
|
39184
|
-
__slots__: List[str] = ['_arrow_binary']
|
|
39266
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
|
39185
39267
|
|
|
39186
|
-
def __init__(self, arrow_binary: Any) -> None:
|
|
39268
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
|
39187
39269
|
self._arrow_binary = arrow_binary
|
|
39270
|
+
self._group_by_keys = group_by_keys
|
|
39188
39271
|
|
|
39189
39272
|
@builtins.property
|
|
39190
39273
|
def arrow_binary(self) -> Any:
|
|
@@ -39192,6 +39275,13 @@ indicate the index of the array that the bucket corresponds to.
|
|
|
39192
39275
|
"""
|
|
39193
39276
|
return self._arrow_binary
|
|
39194
39277
|
|
|
39278
|
+
@builtins.property
|
|
39279
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
|
39280
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
|
39281
|
+
this list represents the superset of all group by keys used across every individual channel.
|
|
39282
|
+
"""
|
|
39283
|
+
return self._group_by_keys
|
|
39284
|
+
|
|
39195
39285
|
|
|
39196
39286
|
scout_compute_api_BucketedNumericArrayPlot.__name__ = "BucketedNumericArrayPlot"
|
|
39197
39287
|
scout_compute_api_BucketedNumericArrayPlot.__qualname__ = "BucketedNumericArrayPlot"
|
|
@@ -47264,13 +47354,15 @@ class scout_compute_api_PagedEnumArrayPlot(ConjureBeanType):
|
|
|
47264
47354
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
47265
47355
|
return {
|
|
47266
47356
|
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
47357
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]]),
|
|
47267
47358
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_compute_api_PageToken])
|
|
47268
47359
|
}
|
|
47269
47360
|
|
|
47270
|
-
__slots__: List[str] = ['_arrow_binary', '_next_page_token']
|
|
47361
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys', '_next_page_token']
|
|
47271
47362
|
|
|
47272
|
-
def __init__(self, arrow_binary: Any, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
|
47363
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
|
47273
47364
|
self._arrow_binary = arrow_binary
|
|
47365
|
+
self._group_by_keys = group_by_keys
|
|
47274
47366
|
self._next_page_token = next_page_token
|
|
47275
47367
|
|
|
47276
47368
|
@builtins.property
|
|
@@ -47279,6 +47371,13 @@ class scout_compute_api_PagedEnumArrayPlot(ConjureBeanType):
|
|
|
47279
47371
|
"""
|
|
47280
47372
|
return self._arrow_binary
|
|
47281
47373
|
|
|
47374
|
+
@builtins.property
|
|
47375
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
|
47376
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
|
47377
|
+
this list represents the superset of all group by keys used across every individual channel.
|
|
47378
|
+
"""
|
|
47379
|
+
return self._group_by_keys
|
|
47380
|
+
|
|
47282
47381
|
@builtins.property
|
|
47283
47382
|
def next_page_token(self) -> Optional["scout_compute_api_PageToken"]:
|
|
47284
47383
|
"""The token to retrieve the next page of arrays in the direction originally requested (exclusive - not
|
|
@@ -47338,13 +47437,15 @@ class scout_compute_api_PagedNumericArrayPlot(ConjureBeanType):
|
|
|
47338
47437
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
47339
47438
|
return {
|
|
47340
47439
|
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
|
47440
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]]),
|
|
47341
47441
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_compute_api_PageToken])
|
|
47342
47442
|
}
|
|
47343
47443
|
|
|
47344
|
-
__slots__: List[str] = ['_arrow_binary', '_next_page_token']
|
|
47444
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys', '_next_page_token']
|
|
47345
47445
|
|
|
47346
|
-
def __init__(self, arrow_binary: Any, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
|
47446
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
|
47347
47447
|
self._arrow_binary = arrow_binary
|
|
47448
|
+
self._group_by_keys = group_by_keys
|
|
47348
47449
|
self._next_page_token = next_page_token
|
|
47349
47450
|
|
|
47350
47451
|
@builtins.property
|
|
@@ -47353,6 +47454,13 @@ class scout_compute_api_PagedNumericArrayPlot(ConjureBeanType):
|
|
|
47353
47454
|
"""
|
|
47354
47455
|
return self._arrow_binary
|
|
47355
47456
|
|
|
47457
|
+
@builtins.property
|
|
47458
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
|
47459
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
|
47460
|
+
this list represents the superset of all group by keys used across every individual channel.
|
|
47461
|
+
"""
|
|
47462
|
+
return self._group_by_keys
|
|
47463
|
+
|
|
47356
47464
|
@builtins.property
|
|
47357
47465
|
def next_page_token(self) -> Optional["scout_compute_api_PageToken"]:
|
|
47358
47466
|
"""The token to retrieve the next page of arrays in the direction originally requested (exclusive - not
|
nominal_api/event/__init__.py
CHANGED
|
@@ -24,6 +24,7 @@ from .._impl import (
|
|
|
24
24
|
event_GetEvents as GetEvents,
|
|
25
25
|
event_HistogramFilterQuery as HistogramFilterQuery,
|
|
26
26
|
event_HistogramFilterQueryVisitor as HistogramFilterQueryVisitor,
|
|
27
|
+
event_ProcedureEventOrigin as ProcedureEventOrigin,
|
|
27
28
|
event_SearchEventOriginType as SearchEventOriginType,
|
|
28
29
|
event_SearchEventsRequest as SearchEventsRequest,
|
|
29
30
|
event_SearchEventsResponse as SearchEventsResponse,
|
|
@@ -62,6 +63,7 @@ __all__ = [
|
|
|
62
63
|
'GetEvents',
|
|
63
64
|
'HistogramFilterQuery',
|
|
64
65
|
'HistogramFilterQueryVisitor',
|
|
66
|
+
'ProcedureEventOrigin',
|
|
65
67
|
'SearchEventOriginType',
|
|
66
68
|
'SearchEventsRequest',
|
|
67
69
|
'SearchEventsResponse',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=na80ax1mFjKvc24LnT6vQLmy4Qmr0A82hqLVtZxHKPE,2012
|
|
2
|
+
nominal_api/_impl.py,sha256=iQye5X0dZD-FObQmoENgGEK5fHaXWyIMTQmX-VswTuw,3471817
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=PMREKP7UhxJ1_gHkrlJET46qlDHksKMm6-woR1p6WnU,1970
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
|
@@ -14,7 +14,7 @@ nominal_api/datasource_api/__init__.py,sha256=-Py2STiLyAzvX6RntC9niTX2BVVLeLlXY1
|
|
|
14
14
|
nominal_api/datasource_logset/__init__.py,sha256=SGt5PmLgYpLfhcoESk69aVufuZugg8dp6XBHOZ480IA,130
|
|
15
15
|
nominal_api/datasource_logset_api/__init__.py,sha256=QydoWxNXCVgIV8HWnZAKA77N5G6mTSqSzGkj36tPe4U,1376
|
|
16
16
|
nominal_api/datasource_pagination_api/__init__.py,sha256=WeENj6yqi2XfInU8YgjFwqwiR8L0jDHCBZfucJ0ahyY,283
|
|
17
|
-
nominal_api/event/__init__.py,sha256=
|
|
17
|
+
nominal_api/event/__init__.py,sha256=f2EQvcnc2nZCLGG5v-By9d947pChT-z4a9GDnqIk2Fs,2914
|
|
18
18
|
nominal_api/ingest_api/__init__.py,sha256=vkOFk6X2S4jpv0FBwsT9JpaK7Hb7lk9nkMNwcTi4zTw,11266
|
|
19
19
|
nominal_api/ingest_workflow_api/__init__.py,sha256=lTCb7s4VCrpur0TDpTy_EDvUdHJ4UKqcTv8MYiEeeko,2954
|
|
20
20
|
nominal_api/module/__init__.py,sha256=qSLilufNw_f-VDID-ZU5QJyTSuMp38wQ9wDAjDab0Dg,4021
|
|
@@ -75,7 +75,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
|
75
75
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
76
76
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
|
77
77
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
78
|
-
nominal_api-0.
|
|
79
|
-
nominal_api-0.
|
|
80
|
-
nominal_api-0.
|
|
81
|
-
nominal_api-0.
|
|
78
|
+
nominal_api-0.797.0.dist-info/METADATA,sha256=H_cjpad0hFE_qclpywJ5hnE0Spmoriegd2WQCDg_6kY,199
|
|
79
|
+
nominal_api-0.797.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
80
|
+
nominal_api-0.797.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
81
|
+
nominal_api-0.797.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|