nominal-api 0.555.0__py3-none-any.whl → 0.557.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 +175 -69
- nominal_api/scout_chartdefinition_api/__init__.py +3 -0
- {nominal_api-0.555.0.dist-info → nominal_api-0.557.0.dist-info}/METADATA +1 -1
- {nominal_api-0.555.0.dist-info → nominal_api-0.557.0.dist-info}/RECORD +7 -7
- {nominal_api-0.555.0.dist-info → nominal_api-0.557.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.555.0.dist-info → nominal_api-0.557.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -18467,6 +18467,91 @@ scout_chartdefinition_api_LineThresholdGroup.__qualname__ = "LineThresholdGroup"
|
|
|
18467
18467
|
scout_chartdefinition_api_LineThresholdGroup.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
18468
18468
|
|
|
18469
18469
|
|
|
18470
|
+
class scout_chartdefinition_api_LogPanelDefinition(ConjureUnionType):
|
|
18471
|
+
_v1: Optional["scout_chartdefinition_api_LogPanelDefinitionV1"] = None
|
|
18472
|
+
|
|
18473
|
+
@builtins.classmethod
|
|
18474
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
18475
|
+
return {
|
|
18476
|
+
'v1': ConjureFieldDefinition('v1', scout_chartdefinition_api_LogPanelDefinitionV1)
|
|
18477
|
+
}
|
|
18478
|
+
|
|
18479
|
+
def __init__(
|
|
18480
|
+
self,
|
|
18481
|
+
v1: Optional["scout_chartdefinition_api_LogPanelDefinitionV1"] = None,
|
|
18482
|
+
type_of_union: Optional[str] = None
|
|
18483
|
+
) -> None:
|
|
18484
|
+
if type_of_union is None:
|
|
18485
|
+
if (v1 is not None) != 1:
|
|
18486
|
+
raise ValueError('a union must contain a single member')
|
|
18487
|
+
|
|
18488
|
+
if v1 is not None:
|
|
18489
|
+
self._v1 = v1
|
|
18490
|
+
self._type = 'v1'
|
|
18491
|
+
|
|
18492
|
+
elif type_of_union == 'v1':
|
|
18493
|
+
if v1 is None:
|
|
18494
|
+
raise ValueError('a union value must not be None')
|
|
18495
|
+
self._v1 = v1
|
|
18496
|
+
self._type = 'v1'
|
|
18497
|
+
|
|
18498
|
+
@builtins.property
|
|
18499
|
+
def v1(self) -> Optional["scout_chartdefinition_api_LogPanelDefinitionV1"]:
|
|
18500
|
+
return self._v1
|
|
18501
|
+
|
|
18502
|
+
def accept(self, visitor) -> Any:
|
|
18503
|
+
if not isinstance(visitor, scout_chartdefinition_api_LogPanelDefinitionVisitor):
|
|
18504
|
+
raise ValueError('{} is not an instance of scout_chartdefinition_api_LogPanelDefinitionVisitor'.format(visitor.__class__.__name__))
|
|
18505
|
+
if self._type == 'v1' and self.v1 is not None:
|
|
18506
|
+
return visitor._v1(self.v1)
|
|
18507
|
+
|
|
18508
|
+
|
|
18509
|
+
scout_chartdefinition_api_LogPanelDefinition.__name__ = "LogPanelDefinition"
|
|
18510
|
+
scout_chartdefinition_api_LogPanelDefinition.__qualname__ = "LogPanelDefinition"
|
|
18511
|
+
scout_chartdefinition_api_LogPanelDefinition.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
18512
|
+
|
|
18513
|
+
|
|
18514
|
+
class scout_chartdefinition_api_LogPanelDefinitionVisitor:
|
|
18515
|
+
|
|
18516
|
+
@abstractmethod
|
|
18517
|
+
def _v1(self, v1: "scout_chartdefinition_api_LogPanelDefinitionV1") -> Any:
|
|
18518
|
+
pass
|
|
18519
|
+
|
|
18520
|
+
|
|
18521
|
+
scout_chartdefinition_api_LogPanelDefinitionVisitor.__name__ = "LogPanelDefinitionVisitor"
|
|
18522
|
+
scout_chartdefinition_api_LogPanelDefinitionVisitor.__qualname__ = "LogPanelDefinitionVisitor"
|
|
18523
|
+
scout_chartdefinition_api_LogPanelDefinitionVisitor.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
18524
|
+
|
|
18525
|
+
|
|
18526
|
+
class scout_chartdefinition_api_LogPanelDefinitionV1(ConjureBeanType):
|
|
18527
|
+
|
|
18528
|
+
@builtins.classmethod
|
|
18529
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
18530
|
+
return {
|
|
18531
|
+
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
18532
|
+
'log_channels': ConjureFieldDefinition('logChannels', List[scout_channelvariables_api_ChannelVariableName])
|
|
18533
|
+
}
|
|
18534
|
+
|
|
18535
|
+
__slots__: List[str] = ['_title', '_log_channels']
|
|
18536
|
+
|
|
18537
|
+
def __init__(self, log_channels: List[str], title: Optional[str] = None) -> None:
|
|
18538
|
+
self._title = title
|
|
18539
|
+
self._log_channels = log_channels
|
|
18540
|
+
|
|
18541
|
+
@builtins.property
|
|
18542
|
+
def title(self) -> Optional[str]:
|
|
18543
|
+
return self._title
|
|
18544
|
+
|
|
18545
|
+
@builtins.property
|
|
18546
|
+
def log_channels(self) -> List[str]:
|
|
18547
|
+
return self._log_channels
|
|
18548
|
+
|
|
18549
|
+
|
|
18550
|
+
scout_chartdefinition_api_LogPanelDefinitionV1.__name__ = "LogPanelDefinitionV1"
|
|
18551
|
+
scout_chartdefinition_api_LogPanelDefinitionV1.__qualname__ = "LogPanelDefinitionV1"
|
|
18552
|
+
scout_chartdefinition_api_LogPanelDefinitionV1.__module__ = "nominal_api.scout_chartdefinition_api"
|
|
18553
|
+
|
|
18554
|
+
|
|
18470
18555
|
class scout_chartdefinition_api_NumberFormat(ConjureBeanType):
|
|
18471
18556
|
"""
|
|
18472
18557
|
Number format for numeric cells, eg 1e4 | 10000 | 10,000.
|
|
@@ -20141,161 +20226,178 @@ scout_chartdefinition_api_VideoVizDefinitionV1.__module__ = "nominal_api.scout_c
|
|
|
20141
20226
|
|
|
20142
20227
|
|
|
20143
20228
|
class scout_chartdefinition_api_VizDefinition(ConjureUnionType):
|
|
20144
|
-
_time_series: Optional["scout_chartdefinition_api_TimeSeriesChartDefinition"] = None
|
|
20145
20229
|
_cartesian: Optional["scout_chartdefinition_api_CartesianChartDefinition"] = None
|
|
20230
|
+
_checklist: Optional["scout_chartdefinition_api_ChecklistChartDefinition"] = None
|
|
20146
20231
|
_frequency: Optional["scout_chartdefinition_api_FrequencyChartDefinition"] = None
|
|
20232
|
+
_geo: Optional["scout_chartdefinition_api_GeoVizDefinition"] = None
|
|
20147
20233
|
_histogram: Optional["scout_chartdefinition_api_HistogramChartDefinition"] = None
|
|
20148
|
-
|
|
20234
|
+
_log: Optional["scout_chartdefinition_api_LogPanelDefinition"] = None
|
|
20235
|
+
_time_series: Optional["scout_chartdefinition_api_TimeSeriesChartDefinition"] = None
|
|
20149
20236
|
_value_table: Optional["scout_chartdefinition_api_ValueTableDefinition"] = None
|
|
20150
|
-
|
|
20151
|
-
_checklist: Optional["scout_chartdefinition_api_ChecklistChartDefinition"] = None
|
|
20237
|
+
_video: Optional["scout_chartdefinition_api_VideoVizDefinition"] = None
|
|
20152
20238
|
|
|
20153
20239
|
@builtins.classmethod
|
|
20154
20240
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
20155
20241
|
return {
|
|
20156
|
-
'time_series': ConjureFieldDefinition('timeSeries', scout_chartdefinition_api_TimeSeriesChartDefinition),
|
|
20157
20242
|
'cartesian': ConjureFieldDefinition('cartesian', scout_chartdefinition_api_CartesianChartDefinition),
|
|
20243
|
+
'checklist': ConjureFieldDefinition('checklist', scout_chartdefinition_api_ChecklistChartDefinition),
|
|
20158
20244
|
'frequency': ConjureFieldDefinition('frequency', scout_chartdefinition_api_FrequencyChartDefinition),
|
|
20245
|
+
'geo': ConjureFieldDefinition('geo', scout_chartdefinition_api_GeoVizDefinition),
|
|
20159
20246
|
'histogram': ConjureFieldDefinition('histogram', scout_chartdefinition_api_HistogramChartDefinition),
|
|
20160
|
-
'
|
|
20247
|
+
'log': ConjureFieldDefinition('log', scout_chartdefinition_api_LogPanelDefinition),
|
|
20248
|
+
'time_series': ConjureFieldDefinition('timeSeries', scout_chartdefinition_api_TimeSeriesChartDefinition),
|
|
20161
20249
|
'value_table': ConjureFieldDefinition('valueTable', scout_chartdefinition_api_ValueTableDefinition),
|
|
20162
|
-
'
|
|
20163
|
-
'checklist': ConjureFieldDefinition('checklist', scout_chartdefinition_api_ChecklistChartDefinition)
|
|
20250
|
+
'video': ConjureFieldDefinition('video', scout_chartdefinition_api_VideoVizDefinition)
|
|
20164
20251
|
}
|
|
20165
20252
|
|
|
20166
20253
|
def __init__(
|
|
20167
20254
|
self,
|
|
20168
|
-
time_series: Optional["scout_chartdefinition_api_TimeSeriesChartDefinition"] = None,
|
|
20169
20255
|
cartesian: Optional["scout_chartdefinition_api_CartesianChartDefinition"] = None,
|
|
20256
|
+
checklist: Optional["scout_chartdefinition_api_ChecklistChartDefinition"] = None,
|
|
20170
20257
|
frequency: Optional["scout_chartdefinition_api_FrequencyChartDefinition"] = None,
|
|
20258
|
+
geo: Optional["scout_chartdefinition_api_GeoVizDefinition"] = None,
|
|
20171
20259
|
histogram: Optional["scout_chartdefinition_api_HistogramChartDefinition"] = None,
|
|
20172
|
-
|
|
20260
|
+
log: Optional["scout_chartdefinition_api_LogPanelDefinition"] = None,
|
|
20261
|
+
time_series: Optional["scout_chartdefinition_api_TimeSeriesChartDefinition"] = None,
|
|
20173
20262
|
value_table: Optional["scout_chartdefinition_api_ValueTableDefinition"] = None,
|
|
20174
|
-
|
|
20175
|
-
checklist: Optional["scout_chartdefinition_api_ChecklistChartDefinition"] = None,
|
|
20263
|
+
video: Optional["scout_chartdefinition_api_VideoVizDefinition"] = None,
|
|
20176
20264
|
type_of_union: Optional[str] = None
|
|
20177
20265
|
) -> None:
|
|
20178
20266
|
if type_of_union is None:
|
|
20179
|
-
if (
|
|
20267
|
+
if (cartesian is not None) + (checklist is not None) + (frequency is not None) + (geo is not None) + (histogram is not None) + (log is not None) + (time_series is not None) + (value_table is not None) + (video is not None) != 1:
|
|
20180
20268
|
raise ValueError('a union must contain a single member')
|
|
20181
20269
|
|
|
20182
|
-
if time_series is not None:
|
|
20183
|
-
self._time_series = time_series
|
|
20184
|
-
self._type = 'timeSeries'
|
|
20185
20270
|
if cartesian is not None:
|
|
20186
20271
|
self._cartesian = cartesian
|
|
20187
20272
|
self._type = 'cartesian'
|
|
20273
|
+
if checklist is not None:
|
|
20274
|
+
self._checklist = checklist
|
|
20275
|
+
self._type = 'checklist'
|
|
20188
20276
|
if frequency is not None:
|
|
20189
20277
|
self._frequency = frequency
|
|
20190
20278
|
self._type = 'frequency'
|
|
20279
|
+
if geo is not None:
|
|
20280
|
+
self._geo = geo
|
|
20281
|
+
self._type = 'geo'
|
|
20191
20282
|
if histogram is not None:
|
|
20192
20283
|
self._histogram = histogram
|
|
20193
20284
|
self._type = 'histogram'
|
|
20194
|
-
if
|
|
20195
|
-
self.
|
|
20196
|
-
self._type = '
|
|
20285
|
+
if log is not None:
|
|
20286
|
+
self._log = log
|
|
20287
|
+
self._type = 'log'
|
|
20288
|
+
if time_series is not None:
|
|
20289
|
+
self._time_series = time_series
|
|
20290
|
+
self._type = 'timeSeries'
|
|
20197
20291
|
if value_table is not None:
|
|
20198
20292
|
self._value_table = value_table
|
|
20199
20293
|
self._type = 'valueTable'
|
|
20200
|
-
if
|
|
20201
|
-
self.
|
|
20202
|
-
self._type = '
|
|
20203
|
-
if checklist is not None:
|
|
20204
|
-
self._checklist = checklist
|
|
20205
|
-
self._type = 'checklist'
|
|
20294
|
+
if video is not None:
|
|
20295
|
+
self._video = video
|
|
20296
|
+
self._type = 'video'
|
|
20206
20297
|
|
|
20207
|
-
elif type_of_union == 'timeSeries':
|
|
20208
|
-
if time_series is None:
|
|
20209
|
-
raise ValueError('a union value must not be None')
|
|
20210
|
-
self._time_series = time_series
|
|
20211
|
-
self._type = 'timeSeries'
|
|
20212
20298
|
elif type_of_union == 'cartesian':
|
|
20213
20299
|
if cartesian is None:
|
|
20214
20300
|
raise ValueError('a union value must not be None')
|
|
20215
20301
|
self._cartesian = cartesian
|
|
20216
20302
|
self._type = 'cartesian'
|
|
20303
|
+
elif type_of_union == 'checklist':
|
|
20304
|
+
if checklist is None:
|
|
20305
|
+
raise ValueError('a union value must not be None')
|
|
20306
|
+
self._checklist = checklist
|
|
20307
|
+
self._type = 'checklist'
|
|
20217
20308
|
elif type_of_union == 'frequency':
|
|
20218
20309
|
if frequency is None:
|
|
20219
20310
|
raise ValueError('a union value must not be None')
|
|
20220
20311
|
self._frequency = frequency
|
|
20221
20312
|
self._type = 'frequency'
|
|
20313
|
+
elif type_of_union == 'geo':
|
|
20314
|
+
if geo is None:
|
|
20315
|
+
raise ValueError('a union value must not be None')
|
|
20316
|
+
self._geo = geo
|
|
20317
|
+
self._type = 'geo'
|
|
20222
20318
|
elif type_of_union == 'histogram':
|
|
20223
20319
|
if histogram is None:
|
|
20224
20320
|
raise ValueError('a union value must not be None')
|
|
20225
20321
|
self._histogram = histogram
|
|
20226
20322
|
self._type = 'histogram'
|
|
20227
|
-
elif type_of_union == '
|
|
20228
|
-
if
|
|
20323
|
+
elif type_of_union == 'log':
|
|
20324
|
+
if log is None:
|
|
20229
20325
|
raise ValueError('a union value must not be None')
|
|
20230
|
-
self.
|
|
20231
|
-
self._type = '
|
|
20326
|
+
self._log = log
|
|
20327
|
+
self._type = 'log'
|
|
20328
|
+
elif type_of_union == 'timeSeries':
|
|
20329
|
+
if time_series is None:
|
|
20330
|
+
raise ValueError('a union value must not be None')
|
|
20331
|
+
self._time_series = time_series
|
|
20332
|
+
self._type = 'timeSeries'
|
|
20232
20333
|
elif type_of_union == 'valueTable':
|
|
20233
20334
|
if value_table is None:
|
|
20234
20335
|
raise ValueError('a union value must not be None')
|
|
20235
20336
|
self._value_table = value_table
|
|
20236
20337
|
self._type = 'valueTable'
|
|
20237
|
-
elif type_of_union == '
|
|
20238
|
-
if
|
|
20239
|
-
raise ValueError('a union value must not be None')
|
|
20240
|
-
self._geo = geo
|
|
20241
|
-
self._type = 'geo'
|
|
20242
|
-
elif type_of_union == 'checklist':
|
|
20243
|
-
if checklist is None:
|
|
20338
|
+
elif type_of_union == 'video':
|
|
20339
|
+
if video is None:
|
|
20244
20340
|
raise ValueError('a union value must not be None')
|
|
20245
|
-
self.
|
|
20246
|
-
self._type = '
|
|
20247
|
-
|
|
20248
|
-
@builtins.property
|
|
20249
|
-
def time_series(self) -> Optional["scout_chartdefinition_api_TimeSeriesChartDefinition"]:
|
|
20250
|
-
return self._time_series
|
|
20341
|
+
self._video = video
|
|
20342
|
+
self._type = 'video'
|
|
20251
20343
|
|
|
20252
20344
|
@builtins.property
|
|
20253
20345
|
def cartesian(self) -> Optional["scout_chartdefinition_api_CartesianChartDefinition"]:
|
|
20254
20346
|
return self._cartesian
|
|
20255
20347
|
|
|
20348
|
+
@builtins.property
|
|
20349
|
+
def checklist(self) -> Optional["scout_chartdefinition_api_ChecklistChartDefinition"]:
|
|
20350
|
+
return self._checklist
|
|
20351
|
+
|
|
20256
20352
|
@builtins.property
|
|
20257
20353
|
def frequency(self) -> Optional["scout_chartdefinition_api_FrequencyChartDefinition"]:
|
|
20258
20354
|
return self._frequency
|
|
20259
20355
|
|
|
20356
|
+
@builtins.property
|
|
20357
|
+
def geo(self) -> Optional["scout_chartdefinition_api_GeoVizDefinition"]:
|
|
20358
|
+
return self._geo
|
|
20359
|
+
|
|
20260
20360
|
@builtins.property
|
|
20261
20361
|
def histogram(self) -> Optional["scout_chartdefinition_api_HistogramChartDefinition"]:
|
|
20262
20362
|
return self._histogram
|
|
20263
20363
|
|
|
20264
20364
|
@builtins.property
|
|
20265
|
-
def
|
|
20266
|
-
return self.
|
|
20365
|
+
def log(self) -> Optional["scout_chartdefinition_api_LogPanelDefinition"]:
|
|
20366
|
+
return self._log
|
|
20267
20367
|
|
|
20268
20368
|
@builtins.property
|
|
20269
|
-
def
|
|
20270
|
-
return self.
|
|
20369
|
+
def time_series(self) -> Optional["scout_chartdefinition_api_TimeSeriesChartDefinition"]:
|
|
20370
|
+
return self._time_series
|
|
20271
20371
|
|
|
20272
20372
|
@builtins.property
|
|
20273
|
-
def
|
|
20274
|
-
return self.
|
|
20373
|
+
def value_table(self) -> Optional["scout_chartdefinition_api_ValueTableDefinition"]:
|
|
20374
|
+
return self._value_table
|
|
20275
20375
|
|
|
20276
20376
|
@builtins.property
|
|
20277
|
-
def
|
|
20278
|
-
return self.
|
|
20377
|
+
def video(self) -> Optional["scout_chartdefinition_api_VideoVizDefinition"]:
|
|
20378
|
+
return self._video
|
|
20279
20379
|
|
|
20280
20380
|
def accept(self, visitor) -> Any:
|
|
20281
20381
|
if not isinstance(visitor, scout_chartdefinition_api_VizDefinitionVisitor):
|
|
20282
20382
|
raise ValueError('{} is not an instance of scout_chartdefinition_api_VizDefinitionVisitor'.format(visitor.__class__.__name__))
|
|
20283
|
-
if self._type == 'timeSeries' and self.time_series is not None:
|
|
20284
|
-
return visitor._time_series(self.time_series)
|
|
20285
20383
|
if self._type == 'cartesian' and self.cartesian is not None:
|
|
20286
20384
|
return visitor._cartesian(self.cartesian)
|
|
20385
|
+
if self._type == 'checklist' and self.checklist is not None:
|
|
20386
|
+
return visitor._checklist(self.checklist)
|
|
20287
20387
|
if self._type == 'frequency' and self.frequency is not None:
|
|
20288
20388
|
return visitor._frequency(self.frequency)
|
|
20389
|
+
if self._type == 'geo' and self.geo is not None:
|
|
20390
|
+
return visitor._geo(self.geo)
|
|
20289
20391
|
if self._type == 'histogram' and self.histogram is not None:
|
|
20290
20392
|
return visitor._histogram(self.histogram)
|
|
20291
|
-
if self._type == '
|
|
20292
|
-
return visitor.
|
|
20393
|
+
if self._type == 'log' and self.log is not None:
|
|
20394
|
+
return visitor._log(self.log)
|
|
20395
|
+
if self._type == 'timeSeries' and self.time_series is not None:
|
|
20396
|
+
return visitor._time_series(self.time_series)
|
|
20293
20397
|
if self._type == 'valueTable' and self.value_table is not None:
|
|
20294
20398
|
return visitor._value_table(self.value_table)
|
|
20295
|
-
if self._type == '
|
|
20296
|
-
return visitor.
|
|
20297
|
-
if self._type == 'checklist' and self.checklist is not None:
|
|
20298
|
-
return visitor._checklist(self.checklist)
|
|
20399
|
+
if self._type == 'video' and self.video is not None:
|
|
20400
|
+
return visitor._video(self.video)
|
|
20299
20401
|
|
|
20300
20402
|
|
|
20301
20403
|
scout_chartdefinition_api_VizDefinition.__name__ = "VizDefinition"
|
|
@@ -20306,35 +20408,39 @@ scout_chartdefinition_api_VizDefinition.__module__ = "nominal_api.scout_chartdef
|
|
|
20306
20408
|
class scout_chartdefinition_api_VizDefinitionVisitor:
|
|
20307
20409
|
|
|
20308
20410
|
@abstractmethod
|
|
20309
|
-
def
|
|
20411
|
+
def _cartesian(self, cartesian: "scout_chartdefinition_api_CartesianChartDefinition") -> Any:
|
|
20310
20412
|
pass
|
|
20311
20413
|
|
|
20312
20414
|
@abstractmethod
|
|
20313
|
-
def
|
|
20415
|
+
def _checklist(self, checklist: "scout_chartdefinition_api_ChecklistChartDefinition") -> Any:
|
|
20314
20416
|
pass
|
|
20315
20417
|
|
|
20316
20418
|
@abstractmethod
|
|
20317
20419
|
def _frequency(self, frequency: "scout_chartdefinition_api_FrequencyChartDefinition") -> Any:
|
|
20318
20420
|
pass
|
|
20319
20421
|
|
|
20422
|
+
@abstractmethod
|
|
20423
|
+
def _geo(self, geo: "scout_chartdefinition_api_GeoVizDefinition") -> Any:
|
|
20424
|
+
pass
|
|
20425
|
+
|
|
20320
20426
|
@abstractmethod
|
|
20321
20427
|
def _histogram(self, histogram: "scout_chartdefinition_api_HistogramChartDefinition") -> Any:
|
|
20322
20428
|
pass
|
|
20323
20429
|
|
|
20324
20430
|
@abstractmethod
|
|
20325
|
-
def
|
|
20431
|
+
def _log(self, log: "scout_chartdefinition_api_LogPanelDefinition") -> Any:
|
|
20326
20432
|
pass
|
|
20327
20433
|
|
|
20328
20434
|
@abstractmethod
|
|
20329
|
-
def
|
|
20435
|
+
def _time_series(self, time_series: "scout_chartdefinition_api_TimeSeriesChartDefinition") -> Any:
|
|
20330
20436
|
pass
|
|
20331
20437
|
|
|
20332
20438
|
@abstractmethod
|
|
20333
|
-
def
|
|
20439
|
+
def _value_table(self, value_table: "scout_chartdefinition_api_ValueTableDefinition") -> Any:
|
|
20334
20440
|
pass
|
|
20335
20441
|
|
|
20336
20442
|
@abstractmethod
|
|
20337
|
-
def
|
|
20443
|
+
def _video(self, video: "scout_chartdefinition_api_VideoVizDefinition") -> Any:
|
|
20338
20444
|
pass
|
|
20339
20445
|
|
|
20340
20446
|
|
|
@@ -52,6 +52,9 @@ from .._impl import (
|
|
|
52
52
|
scout_chartdefinition_api_LineStyleVisitor as LineStyleVisitor,
|
|
53
53
|
scout_chartdefinition_api_LineThreshold as LineThreshold,
|
|
54
54
|
scout_chartdefinition_api_LineThresholdGroup as LineThresholdGroup,
|
|
55
|
+
scout_chartdefinition_api_LogPanelDefinition as LogPanelDefinition,
|
|
56
|
+
scout_chartdefinition_api_LogPanelDefinitionV1 as LogPanelDefinitionV1,
|
|
57
|
+
scout_chartdefinition_api_LogPanelDefinitionVisitor as LogPanelDefinitionVisitor,
|
|
55
58
|
scout_chartdefinition_api_NumberFormat as NumberFormat,
|
|
56
59
|
scout_chartdefinition_api_NumberFormatDisplayOption as NumberFormatDisplayOption,
|
|
57
60
|
scout_chartdefinition_api_NumericBarGaugeVisualisation as NumericBarGaugeVisualisation,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=j5dafH4ToiJJmw4ms5q6TVou2ghJvnq1maqf_-DJFv4,1741
|
|
2
|
+
nominal_api/_impl.py,sha256=B3b7eIA5sDSPEuSh_PtjJ8dcZj30Ieofy9VTIl85xnM,2732041
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=kJBEE_HLVpKYdLH12KyO-cSAVzwxYpBwaaDutCtT-LM,1236
|
|
5
5
|
nominal_api/api_rids/__init__.py,sha256=MwCU7tf4EQBdNPY12rgPdr4y11iowEXxYqtNCvw7sdo,380
|
|
@@ -22,7 +22,7 @@ nominal_api/scout_assets/__init__.py,sha256=dT-b9HnbwVbI-fEalfskKSMGzhGRwZDZ2cdz
|
|
|
22
22
|
nominal_api/scout_catalog/__init__.py,sha256=ZGm4w1YKd4B-3CNxijTpB-1B653nctA_R0u24oPS3To,3508
|
|
23
23
|
nominal_api/scout_channelvariables_api/__init__.py,sha256=4OQV1O-M2MQE36yCGlyYftnqaXSddYTYTyGce_WC4JQ,466
|
|
24
24
|
nominal_api/scout_chart_api/__init__.py,sha256=sw7WSYs6SarSW7x-3IBkSIrVea1cVFnQnpYiNKbCWnQ,184
|
|
25
|
-
nominal_api/scout_chartdefinition_api/__init__.py,sha256=
|
|
25
|
+
nominal_api/scout_chartdefinition_api/__init__.py,sha256=YiQMQEuBCSIQWWN9vBCbH1bhPlaX8pNzhA0RX-nYzRQ,8102
|
|
26
26
|
nominal_api/scout_checklistexecution_api/__init__.py,sha256=PfMFzie0xO5d5WSpB3bE4yiRi2TQTjKn6jG5dlgU6F8,2472
|
|
27
27
|
nominal_api/scout_checks_api/__init__.py,sha256=RJH7HsXjUhItC11V9C-hfv6lkIfiSXyxnB8slUpaT2g,5203
|
|
28
28
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=8BL5jE9NDxqCj9DyvZWSPhq6zw2J7xp6aLsl3x9rpyw,4530
|
|
@@ -64,7 +64,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=KuHLafDLeHzOTl0B6j7T
|
|
|
64
64
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
65
65
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
66
66
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
67
|
-
nominal_api-0.
|
|
68
|
-
nominal_api-0.
|
|
69
|
-
nominal_api-0.
|
|
70
|
-
nominal_api-0.
|
|
67
|
+
nominal_api-0.557.0.dist-info/METADATA,sha256=zWfBMn_FDhJ6Ir3Bi69DkjWAJVTJ0ZY1M-wXg8B_Xag,199
|
|
68
|
+
nominal_api-0.557.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
69
|
+
nominal_api-0.557.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
70
|
+
nominal_api-0.557.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|