nominal-api 0.684.0__py3-none-any.whl → 0.684.1__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 +8 -8
- {nominal_api-0.684.0.dist-info → nominal_api-0.684.1.dist-info}/METADATA +1 -1
- {nominal_api-0.684.0.dist-info → nominal_api-0.684.1.dist-info}/RECORD +6 -6
- {nominal_api-0.684.0.dist-info → nominal_api-0.684.1.dist-info}/WHEEL +0 -0
- {nominal_api-0.684.0.dist-info → nominal_api-0.684.1.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -25212,7 +25212,7 @@ class scout_chartdefinition_api_TimeSeriesChartDefinitionV1(ConjureBeanType):
|
|
|
25212
25212
|
return {
|
|
25213
25213
|
'rows': ConjureFieldDefinition('rows', List[scout_chartdefinition_api_TimeSeriesRow]),
|
|
25214
25214
|
'comparison_run_groups': ConjureFieldDefinition('comparisonRunGroups', List[scout_comparisonrun_api_ComparisonRunGroup]),
|
|
25215
|
-
'events': ConjureFieldDefinition('events', List[scout_chartdefinition_api_Event]),
|
|
25215
|
+
'events': ConjureFieldDefinition('events', OptionalTypeWrapper[List[scout_chartdefinition_api_Event]]),
|
|
25216
25216
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
25217
25217
|
'value_axes': ConjureFieldDefinition('valueAxes', List[scout_chartdefinition_api_ValueAxis]),
|
|
25218
25218
|
'thresholds': ConjureFieldDefinition('thresholds', OptionalTypeWrapper[List[scout_chartdefinition_api_AxisThresholdVisualization]])
|
|
@@ -25220,7 +25220,7 @@ class scout_chartdefinition_api_TimeSeriesChartDefinitionV1(ConjureBeanType):
|
|
|
25220
25220
|
|
|
25221
25221
|
__slots__: List[str] = ['_rows', '_comparison_run_groups', '_events', '_title', '_value_axes', '_thresholds']
|
|
25222
25222
|
|
|
25223
|
-
def __init__(self, comparison_run_groups: List["scout_comparisonrun_api_ComparisonRunGroup"],
|
|
25223
|
+
def __init__(self, comparison_run_groups: List["scout_comparisonrun_api_ComparisonRunGroup"], rows: List["scout_chartdefinition_api_TimeSeriesRow"], value_axes: List["scout_chartdefinition_api_ValueAxis"], events: Optional[List["scout_chartdefinition_api_Event"]] = None, thresholds: Optional[List["scout_chartdefinition_api_AxisThresholdVisualization"]] = None, title: Optional[str] = None) -> None:
|
|
25224
25224
|
self._rows = rows
|
|
25225
25225
|
self._comparison_run_groups = comparison_run_groups
|
|
25226
25226
|
self._events = events
|
|
@@ -25237,7 +25237,7 @@ class scout_chartdefinition_api_TimeSeriesChartDefinitionV1(ConjureBeanType):
|
|
|
25237
25237
|
return self._comparison_run_groups
|
|
25238
25238
|
|
|
25239
25239
|
@builtins.property
|
|
25240
|
-
def events(self) -> List["scout_chartdefinition_api_Event"]:
|
|
25240
|
+
def events(self) -> Optional[List["scout_chartdefinition_api_Event"]]:
|
|
25241
25241
|
return self._events
|
|
25242
25242
|
|
|
25243
25243
|
@builtins.property
|
|
@@ -74242,22 +74242,22 @@ class scout_workbookcommon_api_EventReference(ConjureBeanType):
|
|
|
74242
74242
|
@builtins.classmethod
|
|
74243
74243
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
74244
74244
|
return {
|
|
74245
|
-
'event_uuid': ConjureFieldDefinition('eventUuid',
|
|
74246
|
-
'rid': ConjureFieldDefinition('rid', api_rids_EventRid)
|
|
74245
|
+
'event_uuid': ConjureFieldDefinition('eventUuid', str),
|
|
74246
|
+
'rid': ConjureFieldDefinition('rid', OptionalTypeWrapper[api_rids_EventRid])
|
|
74247
74247
|
}
|
|
74248
74248
|
|
|
74249
74249
|
__slots__: List[str] = ['_event_uuid', '_rid']
|
|
74250
74250
|
|
|
74251
|
-
def __init__(self,
|
|
74251
|
+
def __init__(self, event_uuid: str, rid: Optional[str] = None) -> None:
|
|
74252
74252
|
self._event_uuid = event_uuid
|
|
74253
74253
|
self._rid = rid
|
|
74254
74254
|
|
|
74255
74255
|
@builtins.property
|
|
74256
|
-
def event_uuid(self) ->
|
|
74256
|
+
def event_uuid(self) -> str:
|
|
74257
74257
|
return self._event_uuid
|
|
74258
74258
|
|
|
74259
74259
|
@builtins.property
|
|
74260
|
-
def rid(self) -> str:
|
|
74260
|
+
def rid(self) -> Optional[str]:
|
|
74261
74261
|
"""
|
|
74262
74262
|
The event's unique identifier. This will soon be a required field.
|
|
74263
74263
|
"""
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=Pdgbvp13lQ0rRDRUlSbASjsWOs1FF7Z9xRuph7DCR60,1955
|
|
2
|
+
nominal_api/_impl.py,sha256=z4-8UE6UGd2gXIakGfXkPW3yIan3igkUtaSuiOolZzA,3165123
|
|
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
|
|
@@ -72,7 +72,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=Q9iZHurmyDsJIFbUg-Eb
|
|
|
72
72
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
73
73
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
74
74
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
75
|
-
nominal_api-0.684.
|
|
76
|
-
nominal_api-0.684.
|
|
77
|
-
nominal_api-0.684.
|
|
78
|
-
nominal_api-0.684.
|
|
75
|
+
nominal_api-0.684.1.dist-info/METADATA,sha256=kPES2dIJHcnMaHPmmqqW9gY3K4_k9augM894_e60enU,199
|
|
76
|
+
nominal_api-0.684.1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
77
|
+
nominal_api-0.684.1.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
78
|
+
nominal_api-0.684.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|