nominal-api 0.919.0__py3-none-any.whl → 0.921.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 +60 -242
- nominal_api/scout_compute_resolved_api/__init__.py +0 -2
- nominal_api/scout_dataexport_api/__init__.py +2 -0
- nominal_api/timeseries_seriescache_api/__init__.py +0 -8
- {nominal_api-0.919.0.dist-info → nominal_api-0.921.0.dist-info}/METADATA +1 -1
- {nominal_api-0.919.0.dist-info → nominal_api-0.921.0.dist-info}/RECORD +9 -9
- {nominal_api-0.919.0.dist-info → nominal_api-0.921.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.919.0.dist-info → nominal_api-0.921.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -58583,37 +58583,6 @@ scout_compute_resolved_api_BitOperationSeriesNode.__qualname__ = "BitOperationSe
|
|
|
58583
58583
|
scout_compute_resolved_api_BitOperationSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
58584
58584
|
|
|
58585
58585
|
|
|
58586
|
-
class scout_compute_resolved_api_CachedStorageLocator(ConjureBeanType):
|
|
58587
|
-
"""A storage locator for data in the legacy global cached datasets table. See SeriesCacheDb.
|
|
58588
|
-
"""
|
|
58589
|
-
|
|
58590
|
-
@builtins.classmethod
|
|
58591
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58592
|
-
return {
|
|
58593
|
-
'logical_series': ConjureFieldDefinition('logicalSeries', timeseries_logicalseries_api_LogicalSeries),
|
|
58594
|
-
'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
|
|
58595
|
-
}
|
|
58596
|
-
|
|
58597
|
-
__slots__: List[str] = ['_logical_series', '_type']
|
|
58598
|
-
|
|
58599
|
-
def __init__(self, logical_series: "timeseries_logicalseries_api_LogicalSeries", type: "storage_series_api_NominalDataType") -> None:
|
|
58600
|
-
self._logical_series = logical_series
|
|
58601
|
-
self._type = type
|
|
58602
|
-
|
|
58603
|
-
@builtins.property
|
|
58604
|
-
def logical_series(self) -> "timeseries_logicalseries_api_LogicalSeries":
|
|
58605
|
-
return self._logical_series
|
|
58606
|
-
|
|
58607
|
-
@builtins.property
|
|
58608
|
-
def type(self) -> "storage_series_api_NominalDataType":
|
|
58609
|
-
return self._type
|
|
58610
|
-
|
|
58611
|
-
|
|
58612
|
-
scout_compute_resolved_api_CachedStorageLocator.__name__ = "CachedStorageLocator"
|
|
58613
|
-
scout_compute_resolved_api_CachedStorageLocator.__qualname__ = "CachedStorageLocator"
|
|
58614
|
-
scout_compute_resolved_api_CachedStorageLocator.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
58615
|
-
|
|
58616
|
-
|
|
58617
58586
|
class scout_compute_resolved_api_Cartesian3dBounds(ConjureBeanType):
|
|
58618
58587
|
|
|
58619
58588
|
@builtins.classmethod
|
|
@@ -64243,32 +64212,26 @@ scout_compute_resolved_api_StaleRangesNode.__module__ = "nominal_api.scout_compu
|
|
|
64243
64212
|
|
|
64244
64213
|
|
|
64245
64214
|
class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
64246
|
-
_cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None
|
|
64247
64215
|
_nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None
|
|
64248
64216
|
_external: Optional["timeseries_logicalseries_api_LogicalSeries"] = None
|
|
64249
64217
|
|
|
64250
64218
|
@builtins.classmethod
|
|
64251
64219
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
64252
64220
|
return {
|
|
64253
|
-
'cached': ConjureFieldDefinition('cached', scout_compute_resolved_api_CachedStorageLocator),
|
|
64254
64221
|
'nominal': ConjureFieldDefinition('nominal', scout_compute_resolved_api_NominalStorageLocator),
|
|
64255
64222
|
'external': ConjureFieldDefinition('external', timeseries_logicalseries_api_LogicalSeries)
|
|
64256
64223
|
}
|
|
64257
64224
|
|
|
64258
64225
|
def __init__(
|
|
64259
64226
|
self,
|
|
64260
|
-
cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None,
|
|
64261
64227
|
nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None,
|
|
64262
64228
|
external: Optional["timeseries_logicalseries_api_LogicalSeries"] = None,
|
|
64263
64229
|
type_of_union: Optional[str] = None
|
|
64264
64230
|
) -> None:
|
|
64265
64231
|
if type_of_union is None:
|
|
64266
|
-
if (
|
|
64232
|
+
if (nominal is not None) + (external is not None) != 1:
|
|
64267
64233
|
raise ValueError('a union must contain a single member')
|
|
64268
64234
|
|
|
64269
|
-
if cached is not None:
|
|
64270
|
-
self._cached = cached
|
|
64271
|
-
self._type = 'cached'
|
|
64272
64235
|
if nominal is not None:
|
|
64273
64236
|
self._nominal = nominal
|
|
64274
64237
|
self._type = 'nominal'
|
|
@@ -64276,11 +64239,6 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
64276
64239
|
self._external = external
|
|
64277
64240
|
self._type = 'external'
|
|
64278
64241
|
|
|
64279
|
-
elif type_of_union == 'cached':
|
|
64280
|
-
if cached is None:
|
|
64281
|
-
raise ValueError('a union value must not be None')
|
|
64282
|
-
self._cached = cached
|
|
64283
|
-
self._type = 'cached'
|
|
64284
64242
|
elif type_of_union == 'nominal':
|
|
64285
64243
|
if nominal is None:
|
|
64286
64244
|
raise ValueError('a union value must not be None')
|
|
@@ -64292,10 +64250,6 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
64292
64250
|
self._external = external
|
|
64293
64251
|
self._type = 'external'
|
|
64294
64252
|
|
|
64295
|
-
@builtins.property
|
|
64296
|
-
def cached(self) -> Optional["scout_compute_resolved_api_CachedStorageLocator"]:
|
|
64297
|
-
return self._cached
|
|
64298
|
-
|
|
64299
64253
|
@builtins.property
|
|
64300
64254
|
def nominal(self) -> Optional["scout_compute_resolved_api_NominalStorageLocator"]:
|
|
64301
64255
|
return self._nominal
|
|
@@ -64307,8 +64261,6 @@ class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
|
64307
64261
|
def accept(self, visitor) -> Any:
|
|
64308
64262
|
if not isinstance(visitor, scout_compute_resolved_api_StorageLocatorVisitor):
|
|
64309
64263
|
raise ValueError('{} is not an instance of scout_compute_resolved_api_StorageLocatorVisitor'.format(visitor.__class__.__name__))
|
|
64310
|
-
if self._type == 'cached' and self.cached is not None:
|
|
64311
|
-
return visitor._cached(self.cached)
|
|
64312
64264
|
if self._type == 'nominal' and self.nominal is not None:
|
|
64313
64265
|
return visitor._nominal(self.nominal)
|
|
64314
64266
|
if self._type == 'external' and self.external is not None:
|
|
@@ -64322,10 +64274,6 @@ scout_compute_resolved_api_StorageLocator.__module__ = "nominal_api.scout_comput
|
|
|
64322
64274
|
|
|
64323
64275
|
class scout_compute_resolved_api_StorageLocatorVisitor:
|
|
64324
64276
|
|
|
64325
|
-
@abstractmethod
|
|
64326
|
-
def _cached(self, cached: "scout_compute_resolved_api_CachedStorageLocator") -> Any:
|
|
64327
|
-
pass
|
|
64328
|
-
|
|
64329
64277
|
@abstractmethod
|
|
64330
64278
|
def _nominal(self, nominal: "scout_compute_resolved_api_NominalStorageLocator") -> Any:
|
|
64331
64279
|
pass
|
|
@@ -65086,6 +65034,8 @@ scout_dataexport_api_AllTimestampsForwardFillStrategy.__module__ = "nominal_api.
|
|
|
65086
65034
|
|
|
65087
65035
|
|
|
65088
65036
|
class scout_dataexport_api_Arrow(ConjureBeanType):
|
|
65037
|
+
"""Export settings for a stream of arrow-compatible data.
|
|
65038
|
+
"""
|
|
65089
65039
|
|
|
65090
65040
|
@builtins.classmethod
|
|
65091
65041
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -65120,6 +65070,8 @@ scout_dataexport_api_CompressionFormat.__module__ = "nominal_api.scout_dataexpor
|
|
|
65120
65070
|
|
|
65121
65071
|
|
|
65122
65072
|
class scout_dataexport_api_Csv(ConjureBeanType):
|
|
65073
|
+
"""Export settings for a stream of `.csv` data.
|
|
65074
|
+
"""
|
|
65123
65075
|
|
|
65124
65076
|
@builtins.classmethod
|
|
65125
65077
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -65295,59 +65247,76 @@ scout_dataexport_api_ExportDataRequest.__module__ = "nominal_api.scout_dataexpor
|
|
|
65295
65247
|
|
|
65296
65248
|
|
|
65297
65249
|
class scout_dataexport_api_ExportFormat(ConjureUnionType):
|
|
65298
|
-
_csv: Optional["scout_dataexport_api_Csv"] = None
|
|
65299
65250
|
_arrow: Optional["scout_dataexport_api_Arrow"] = None
|
|
65251
|
+
_csv: Optional["scout_dataexport_api_Csv"] = None
|
|
65252
|
+
_matfile: Optional["scout_dataexport_api_Matfile"] = None
|
|
65300
65253
|
|
|
65301
65254
|
@builtins.classmethod
|
|
65302
65255
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
65303
65256
|
return {
|
|
65257
|
+
'arrow': ConjureFieldDefinition('arrow', scout_dataexport_api_Arrow),
|
|
65304
65258
|
'csv': ConjureFieldDefinition('csv', scout_dataexport_api_Csv),
|
|
65305
|
-
'
|
|
65259
|
+
'matfile': ConjureFieldDefinition('matfile', scout_dataexport_api_Matfile)
|
|
65306
65260
|
}
|
|
65307
65261
|
|
|
65308
65262
|
def __init__(
|
|
65309
65263
|
self,
|
|
65310
|
-
csv: Optional["scout_dataexport_api_Csv"] = None,
|
|
65311
65264
|
arrow: Optional["scout_dataexport_api_Arrow"] = None,
|
|
65265
|
+
csv: Optional["scout_dataexport_api_Csv"] = None,
|
|
65266
|
+
matfile: Optional["scout_dataexport_api_Matfile"] = None,
|
|
65312
65267
|
type_of_union: Optional[str] = None
|
|
65313
65268
|
) -> None:
|
|
65314
65269
|
if type_of_union is None:
|
|
65315
|
-
if (csv is not None) + (
|
|
65270
|
+
if (arrow is not None) + (csv is not None) + (matfile is not None) != 1:
|
|
65316
65271
|
raise ValueError('a union must contain a single member')
|
|
65317
65272
|
|
|
65318
|
-
if csv is not None:
|
|
65319
|
-
self._csv = csv
|
|
65320
|
-
self._type = 'csv'
|
|
65321
65273
|
if arrow is not None:
|
|
65322
65274
|
self._arrow = arrow
|
|
65323
65275
|
self._type = 'arrow'
|
|
65276
|
+
if csv is not None:
|
|
65277
|
+
self._csv = csv
|
|
65278
|
+
self._type = 'csv'
|
|
65279
|
+
if matfile is not None:
|
|
65280
|
+
self._matfile = matfile
|
|
65281
|
+
self._type = 'matfile'
|
|
65324
65282
|
|
|
65283
|
+
elif type_of_union == 'arrow':
|
|
65284
|
+
if arrow is None:
|
|
65285
|
+
raise ValueError('a union value must not be None')
|
|
65286
|
+
self._arrow = arrow
|
|
65287
|
+
self._type = 'arrow'
|
|
65325
65288
|
elif type_of_union == 'csv':
|
|
65326
65289
|
if csv is None:
|
|
65327
65290
|
raise ValueError('a union value must not be None')
|
|
65328
65291
|
self._csv = csv
|
|
65329
65292
|
self._type = 'csv'
|
|
65330
|
-
elif type_of_union == '
|
|
65331
|
-
if
|
|
65293
|
+
elif type_of_union == 'matfile':
|
|
65294
|
+
if matfile is None:
|
|
65332
65295
|
raise ValueError('a union value must not be None')
|
|
65333
|
-
self.
|
|
65334
|
-
self._type = '
|
|
65296
|
+
self._matfile = matfile
|
|
65297
|
+
self._type = 'matfile'
|
|
65298
|
+
|
|
65299
|
+
@builtins.property
|
|
65300
|
+
def arrow(self) -> Optional["scout_dataexport_api_Arrow"]:
|
|
65301
|
+
return self._arrow
|
|
65335
65302
|
|
|
65336
65303
|
@builtins.property
|
|
65337
65304
|
def csv(self) -> Optional["scout_dataexport_api_Csv"]:
|
|
65338
65305
|
return self._csv
|
|
65339
65306
|
|
|
65340
65307
|
@builtins.property
|
|
65341
|
-
def
|
|
65342
|
-
return self.
|
|
65308
|
+
def matfile(self) -> Optional["scout_dataexport_api_Matfile"]:
|
|
65309
|
+
return self._matfile
|
|
65343
65310
|
|
|
65344
65311
|
def accept(self, visitor) -> Any:
|
|
65345
65312
|
if not isinstance(visitor, scout_dataexport_api_ExportFormatVisitor):
|
|
65346
65313
|
raise ValueError('{} is not an instance of scout_dataexport_api_ExportFormatVisitor'.format(visitor.__class__.__name__))
|
|
65347
|
-
if self._type == 'csv' and self.csv is not None:
|
|
65348
|
-
return visitor._csv(self.csv)
|
|
65349
65314
|
if self._type == 'arrow' and self.arrow is not None:
|
|
65350
65315
|
return visitor._arrow(self.arrow)
|
|
65316
|
+
if self._type == 'csv' and self.csv is not None:
|
|
65317
|
+
return visitor._csv(self.csv)
|
|
65318
|
+
if self._type == 'matfile' and self.matfile is not None:
|
|
65319
|
+
return visitor._matfile(self.matfile)
|
|
65351
65320
|
|
|
65352
65321
|
|
|
65353
65322
|
scout_dataexport_api_ExportFormat.__name__ = "ExportFormat"
|
|
@@ -65357,12 +65326,16 @@ scout_dataexport_api_ExportFormat.__module__ = "nominal_api.scout_dataexport_api
|
|
|
65357
65326
|
|
|
65358
65327
|
class scout_dataexport_api_ExportFormatVisitor:
|
|
65359
65328
|
|
|
65329
|
+
@abstractmethod
|
|
65330
|
+
def _arrow(self, arrow: "scout_dataexport_api_Arrow") -> Any:
|
|
65331
|
+
pass
|
|
65332
|
+
|
|
65360
65333
|
@abstractmethod
|
|
65361
65334
|
def _csv(self, csv: "scout_dataexport_api_Csv") -> Any:
|
|
65362
65335
|
pass
|
|
65363
65336
|
|
|
65364
65337
|
@abstractmethod
|
|
65365
|
-
def
|
|
65338
|
+
def _matfile(self, matfile: "scout_dataexport_api_Matfile") -> Any:
|
|
65366
65339
|
pass
|
|
65367
65340
|
|
|
65368
65341
|
|
|
@@ -65422,6 +65395,24 @@ scout_dataexport_api_Iso8601TimestampFormat.__qualname__ = "Iso8601TimestampForm
|
|
|
65422
65395
|
scout_dataexport_api_Iso8601TimestampFormat.__module__ = "nominal_api.scout_dataexport_api"
|
|
65423
65396
|
|
|
65424
65397
|
|
|
65398
|
+
class scout_dataexport_api_Matfile(ConjureBeanType):
|
|
65399
|
+
"""Export settings for a `.mat` file compatible with matlab.
|
|
65400
|
+
"""
|
|
65401
|
+
|
|
65402
|
+
@builtins.classmethod
|
|
65403
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
65404
|
+
return {
|
|
65405
|
+
}
|
|
65406
|
+
|
|
65407
|
+
__slots__: List[str] = []
|
|
65408
|
+
|
|
65409
|
+
|
|
65410
|
+
|
|
65411
|
+
scout_dataexport_api_Matfile.__name__ = "Matfile"
|
|
65412
|
+
scout_dataexport_api_Matfile.__qualname__ = "Matfile"
|
|
65413
|
+
scout_dataexport_api_Matfile.__module__ = "nominal_api.scout_dataexport_api"
|
|
65414
|
+
|
|
65415
|
+
|
|
65425
65416
|
class scout_dataexport_api_MergeTimestampStrategy(ConjureUnionType):
|
|
65426
65417
|
"""How to handle timestamps that are not aligned.
|
|
65427
65418
|
"""
|
|
@@ -95165,69 +95156,6 @@ class timeseries_seriescache_SeriesCacheService(Service):
|
|
|
95165
95156
|
"""The Series Cache service manages internal chunks of data cached by Nominal's backend.
|
|
95166
95157
|
"""
|
|
95167
95158
|
|
|
95168
|
-
def batch_get_cached_series(self, auth_header: str, request: "timeseries_seriescache_api_GetCachedSeriesRequest") -> "timeseries_seriescache_api_CachedSeriesResponse":
|
|
95169
|
-
"""Fetches information about logical series that are cached in the Nominal time series database.
|
|
95170
|
-
"""
|
|
95171
|
-
_conjure_encoder = ConjureEncoder()
|
|
95172
|
-
|
|
95173
|
-
_headers: Dict[str, Any] = {
|
|
95174
|
-
'Accept': 'application/json',
|
|
95175
|
-
'Content-Type': 'application/json',
|
|
95176
|
-
'Authorization': auth_header,
|
|
95177
|
-
}
|
|
95178
|
-
|
|
95179
|
-
_params: Dict[str, Any] = {
|
|
95180
|
-
}
|
|
95181
|
-
|
|
95182
|
-
_path_params: Dict[str, str] = {
|
|
95183
|
-
}
|
|
95184
|
-
|
|
95185
|
-
_json: Any = _conjure_encoder.default(request)
|
|
95186
|
-
|
|
95187
|
-
_path = '/timeseries/series-cache/v1/logical-series/get-cached-series'
|
|
95188
|
-
_path = _path.format(**_path_params)
|
|
95189
|
-
|
|
95190
|
-
_response: Response = self._request(
|
|
95191
|
-
'POST',
|
|
95192
|
-
self._uri + _path,
|
|
95193
|
-
params=_params,
|
|
95194
|
-
headers=_headers,
|
|
95195
|
-
json=_json)
|
|
95196
|
-
|
|
95197
|
-
_decoder = ConjureDecoder()
|
|
95198
|
-
return _decoder.decode(_response.json(), timeseries_seriescache_api_CachedSeriesResponse, self._return_none_for_unknown_union_types)
|
|
95199
|
-
|
|
95200
|
-
def create_cached_series(self, auth_header: str, request: "timeseries_seriescache_api_CreateCachedSeriesRequest") -> None:
|
|
95201
|
-
"""Records a logical series as cached in the Nominal time series database.
|
|
95202
|
-
"""
|
|
95203
|
-
_conjure_encoder = ConjureEncoder()
|
|
95204
|
-
|
|
95205
|
-
_headers: Dict[str, Any] = {
|
|
95206
|
-
'Accept': 'application/json',
|
|
95207
|
-
'Content-Type': 'application/json',
|
|
95208
|
-
'Authorization': auth_header,
|
|
95209
|
-
}
|
|
95210
|
-
|
|
95211
|
-
_params: Dict[str, Any] = {
|
|
95212
|
-
}
|
|
95213
|
-
|
|
95214
|
-
_path_params: Dict[str, str] = {
|
|
95215
|
-
}
|
|
95216
|
-
|
|
95217
|
-
_json: Any = _conjure_encoder.default(request)
|
|
95218
|
-
|
|
95219
|
-
_path = '/timeseries/series-cache/v1/logical-series/create-cached-series'
|
|
95220
|
-
_path = _path.format(**_path_params)
|
|
95221
|
-
|
|
95222
|
-
_response: Response = self._request(
|
|
95223
|
-
'POST',
|
|
95224
|
-
self._uri + _path,
|
|
95225
|
-
params=_params,
|
|
95226
|
-
headers=_headers,
|
|
95227
|
-
json=_json)
|
|
95228
|
-
|
|
95229
|
-
return
|
|
95230
|
-
|
|
95231
95159
|
def get_chunks(self, auth_header: str, get_chunks_parameters: "timeseries_seriescache_api_GetChunksParameters", logical_series_rid: str) -> "timeseries_seriescache_api_GetChunksResponse":
|
|
95232
95160
|
"""Fetches "chunks" of series that are stored as Arrow files in S3.
|
|
95233
95161
|
This endpoint is being deprecated for new series in favor of batchGetCachedSeries
|
|
@@ -95362,70 +95290,6 @@ timeseries_seriescache_SeriesCacheService.__qualname__ = "SeriesCacheService"
|
|
|
95362
95290
|
timeseries_seriescache_SeriesCacheService.__module__ = "nominal_api.timeseries_seriescache"
|
|
95363
95291
|
|
|
95364
95292
|
|
|
95365
|
-
class timeseries_seriescache_api_CachedSeries(ConjureBeanType):
|
|
95366
|
-
|
|
95367
|
-
@builtins.classmethod
|
|
95368
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
95369
|
-
return {
|
|
95370
|
-
'logical_series_rid': ConjureFieldDefinition('logicalSeriesRid', api_LogicalSeriesRid),
|
|
95371
|
-
'start_timestamp': ConjureFieldDefinition('startTimestamp', api_Timestamp),
|
|
95372
|
-
'end_timestamp': ConjureFieldDefinition('endTimestamp', api_Timestamp),
|
|
95373
|
-
'series_data_type': ConjureFieldDefinition('seriesDataType', api_SeriesDataType)
|
|
95374
|
-
}
|
|
95375
|
-
|
|
95376
|
-
__slots__: List[str] = ['_logical_series_rid', '_start_timestamp', '_end_timestamp', '_series_data_type']
|
|
95377
|
-
|
|
95378
|
-
def __init__(self, end_timestamp: "api_Timestamp", logical_series_rid: str, series_data_type: "api_SeriesDataType", start_timestamp: "api_Timestamp") -> None:
|
|
95379
|
-
self._logical_series_rid = logical_series_rid
|
|
95380
|
-
self._start_timestamp = start_timestamp
|
|
95381
|
-
self._end_timestamp = end_timestamp
|
|
95382
|
-
self._series_data_type = series_data_type
|
|
95383
|
-
|
|
95384
|
-
@builtins.property
|
|
95385
|
-
def logical_series_rid(self) -> str:
|
|
95386
|
-
return self._logical_series_rid
|
|
95387
|
-
|
|
95388
|
-
@builtins.property
|
|
95389
|
-
def start_timestamp(self) -> "api_Timestamp":
|
|
95390
|
-
return self._start_timestamp
|
|
95391
|
-
|
|
95392
|
-
@builtins.property
|
|
95393
|
-
def end_timestamp(self) -> "api_Timestamp":
|
|
95394
|
-
return self._end_timestamp
|
|
95395
|
-
|
|
95396
|
-
@builtins.property
|
|
95397
|
-
def series_data_type(self) -> "api_SeriesDataType":
|
|
95398
|
-
return self._series_data_type
|
|
95399
|
-
|
|
95400
|
-
|
|
95401
|
-
timeseries_seriescache_api_CachedSeries.__name__ = "CachedSeries"
|
|
95402
|
-
timeseries_seriescache_api_CachedSeries.__qualname__ = "CachedSeries"
|
|
95403
|
-
timeseries_seriescache_api_CachedSeries.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95404
|
-
|
|
95405
|
-
|
|
95406
|
-
class timeseries_seriescache_api_CachedSeriesResponse(ConjureBeanType):
|
|
95407
|
-
|
|
95408
|
-
@builtins.classmethod
|
|
95409
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
95410
|
-
return {
|
|
95411
|
-
'cached_series': ConjureFieldDefinition('cachedSeries', List[timeseries_seriescache_api_CachedSeries])
|
|
95412
|
-
}
|
|
95413
|
-
|
|
95414
|
-
__slots__: List[str] = ['_cached_series']
|
|
95415
|
-
|
|
95416
|
-
def __init__(self, cached_series: List["timeseries_seriescache_api_CachedSeries"]) -> None:
|
|
95417
|
-
self._cached_series = cached_series
|
|
95418
|
-
|
|
95419
|
-
@builtins.property
|
|
95420
|
-
def cached_series(self) -> List["timeseries_seriescache_api_CachedSeries"]:
|
|
95421
|
-
return self._cached_series
|
|
95422
|
-
|
|
95423
|
-
|
|
95424
|
-
timeseries_seriescache_api_CachedSeriesResponse.__name__ = "CachedSeriesResponse"
|
|
95425
|
-
timeseries_seriescache_api_CachedSeriesResponse.__qualname__ = "CachedSeriesResponse"
|
|
95426
|
-
timeseries_seriescache_api_CachedSeriesResponse.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95427
|
-
|
|
95428
|
-
|
|
95429
95293
|
class timeseries_seriescache_api_Chunk(ConjureBeanType):
|
|
95430
95294
|
|
|
95431
95295
|
@builtins.classmethod
|
|
@@ -95517,29 +95381,6 @@ timeseries_seriescache_api_ChunkType.__qualname__ = "ChunkType"
|
|
|
95517
95381
|
timeseries_seriescache_api_ChunkType.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95518
95382
|
|
|
95519
95383
|
|
|
95520
|
-
class timeseries_seriescache_api_CreateCachedSeriesRequest(ConjureBeanType):
|
|
95521
|
-
|
|
95522
|
-
@builtins.classmethod
|
|
95523
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
95524
|
-
return {
|
|
95525
|
-
'series_to_cache': ConjureFieldDefinition('seriesToCache', List[timeseries_seriescache_api_CachedSeries])
|
|
95526
|
-
}
|
|
95527
|
-
|
|
95528
|
-
__slots__: List[str] = ['_series_to_cache']
|
|
95529
|
-
|
|
95530
|
-
def __init__(self, series_to_cache: List["timeseries_seriescache_api_CachedSeries"]) -> None:
|
|
95531
|
-
self._series_to_cache = series_to_cache
|
|
95532
|
-
|
|
95533
|
-
@builtins.property
|
|
95534
|
-
def series_to_cache(self) -> List["timeseries_seriescache_api_CachedSeries"]:
|
|
95535
|
-
return self._series_to_cache
|
|
95536
|
-
|
|
95537
|
-
|
|
95538
|
-
timeseries_seriescache_api_CreateCachedSeriesRequest.__name__ = "CreateCachedSeriesRequest"
|
|
95539
|
-
timeseries_seriescache_api_CreateCachedSeriesRequest.__qualname__ = "CreateCachedSeriesRequest"
|
|
95540
|
-
timeseries_seriescache_api_CreateCachedSeriesRequest.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95541
|
-
|
|
95542
|
-
|
|
95543
95384
|
class timeseries_seriescache_api_CreateChunk(ConjureBeanType):
|
|
95544
95385
|
|
|
95545
95386
|
@builtins.classmethod
|
|
@@ -95705,29 +95546,6 @@ timeseries_seriescache_api_DeleteChunksResponse.__qualname__ = "DeleteChunksResp
|
|
|
95705
95546
|
timeseries_seriescache_api_DeleteChunksResponse.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95706
95547
|
|
|
95707
95548
|
|
|
95708
|
-
class timeseries_seriescache_api_GetCachedSeriesRequest(ConjureBeanType):
|
|
95709
|
-
|
|
95710
|
-
@builtins.classmethod
|
|
95711
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
95712
|
-
return {
|
|
95713
|
-
'logical_series_rids': ConjureFieldDefinition('logicalSeriesRids', List[api_LogicalSeriesRid])
|
|
95714
|
-
}
|
|
95715
|
-
|
|
95716
|
-
__slots__: List[str] = ['_logical_series_rids']
|
|
95717
|
-
|
|
95718
|
-
def __init__(self, logical_series_rids: List[str]) -> None:
|
|
95719
|
-
self._logical_series_rids = logical_series_rids
|
|
95720
|
-
|
|
95721
|
-
@builtins.property
|
|
95722
|
-
def logical_series_rids(self) -> List[str]:
|
|
95723
|
-
return self._logical_series_rids
|
|
95724
|
-
|
|
95725
|
-
|
|
95726
|
-
timeseries_seriescache_api_GetCachedSeriesRequest.__name__ = "GetCachedSeriesRequest"
|
|
95727
|
-
timeseries_seriescache_api_GetCachedSeriesRequest.__qualname__ = "GetCachedSeriesRequest"
|
|
95728
|
-
timeseries_seriescache_api_GetCachedSeriesRequest.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95729
|
-
|
|
95730
|
-
|
|
95731
95549
|
class timeseries_seriescache_api_GetChunksParameters(ConjureBeanType):
|
|
95732
95550
|
|
|
95733
95551
|
@builtins.classmethod
|
|
@@ -11,7 +11,6 @@ from .._impl import (
|
|
|
11
11
|
scout_compute_resolved_api_BandStopConfiguration as BandStopConfiguration,
|
|
12
12
|
scout_compute_resolved_api_BinaryArithmeticSeriesNode as BinaryArithmeticSeriesNode,
|
|
13
13
|
scout_compute_resolved_api_BitOperationSeriesNode as BitOperationSeriesNode,
|
|
14
|
-
scout_compute_resolved_api_CachedStorageLocator as CachedStorageLocator,
|
|
15
14
|
scout_compute_resolved_api_Cartesian3dBounds as Cartesian3dBounds,
|
|
16
15
|
scout_compute_resolved_api_Cartesian3dNode as Cartesian3dNode,
|
|
17
16
|
scout_compute_resolved_api_Cartesian3dNodeVisitor as Cartesian3dNodeVisitor,
|
|
@@ -177,7 +176,6 @@ __all__ = [
|
|
|
177
176
|
'BandStopConfiguration',
|
|
178
177
|
'BinaryArithmeticSeriesNode',
|
|
179
178
|
'BitOperationSeriesNode',
|
|
180
|
-
'CachedStorageLocator',
|
|
181
179
|
'Cartesian3dBounds',
|
|
182
180
|
'Cartesian3dNode',
|
|
183
181
|
'Cartesian3dNodeVisitor',
|
|
@@ -12,6 +12,7 @@ from .._impl import (
|
|
|
12
12
|
scout_dataexport_api_ExportFormatVisitor as ExportFormatVisitor,
|
|
13
13
|
scout_dataexport_api_ExportTimeDomainChannels as ExportTimeDomainChannels,
|
|
14
14
|
scout_dataexport_api_Iso8601TimestampFormat as Iso8601TimestampFormat,
|
|
15
|
+
scout_dataexport_api_Matfile as Matfile,
|
|
15
16
|
scout_dataexport_api_MergeTimestampStrategy as MergeTimestampStrategy,
|
|
16
17
|
scout_dataexport_api_MergeTimestampStrategyVisitor as MergeTimestampStrategyVisitor,
|
|
17
18
|
scout_dataexport_api_NoneStrategy as NoneStrategy,
|
|
@@ -36,6 +37,7 @@ __all__ = [
|
|
|
36
37
|
'ExportFormatVisitor',
|
|
37
38
|
'ExportTimeDomainChannels',
|
|
38
39
|
'Iso8601TimestampFormat',
|
|
40
|
+
'Matfile',
|
|
39
41
|
'MergeTimestampStrategy',
|
|
40
42
|
'MergeTimestampStrategyVisitor',
|
|
41
43
|
'NoneStrategy',
|
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
-
timeseries_seriescache_api_CachedSeries as CachedSeries,
|
|
4
|
-
timeseries_seriescache_api_CachedSeriesResponse as CachedSeriesResponse,
|
|
5
3
|
timeseries_seriescache_api_Chunk as Chunk,
|
|
6
4
|
timeseries_seriescache_api_ChunkType as ChunkType,
|
|
7
|
-
timeseries_seriescache_api_CreateCachedSeriesRequest as CreateCachedSeriesRequest,
|
|
8
5
|
timeseries_seriescache_api_CreateChunk as CreateChunk,
|
|
9
6
|
timeseries_seriescache_api_CreateChunksParameters as CreateChunksParameters,
|
|
10
7
|
timeseries_seriescache_api_CreateChunksResponse as CreateChunksResponse,
|
|
11
8
|
timeseries_seriescache_api_DeleteChunksParameters as DeleteChunksParameters,
|
|
12
9
|
timeseries_seriescache_api_DeleteChunksResponse as DeleteChunksResponse,
|
|
13
|
-
timeseries_seriescache_api_GetCachedSeriesRequest as GetCachedSeriesRequest,
|
|
14
10
|
timeseries_seriescache_api_GetChunksParameters as GetChunksParameters,
|
|
15
11
|
timeseries_seriescache_api_GetChunksResponse as GetChunksResponse,
|
|
16
12
|
timeseries_seriescache_api_Handle as Handle,
|
|
@@ -20,17 +16,13 @@ from .._impl import (
|
|
|
20
16
|
)
|
|
21
17
|
|
|
22
18
|
__all__ = [
|
|
23
|
-
'CachedSeries',
|
|
24
|
-
'CachedSeriesResponse',
|
|
25
19
|
'Chunk',
|
|
26
20
|
'ChunkType',
|
|
27
|
-
'CreateCachedSeriesRequest',
|
|
28
21
|
'CreateChunk',
|
|
29
22
|
'CreateChunksParameters',
|
|
30
23
|
'CreateChunksResponse',
|
|
31
24
|
'DeleteChunksParameters',
|
|
32
25
|
'DeleteChunksResponse',
|
|
33
|
-
'GetCachedSeriesRequest',
|
|
34
26
|
'GetChunksParameters',
|
|
35
27
|
'GetChunksResponse',
|
|
36
28
|
'Handle',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=g0Is8hXLPgA9ajwxlLcdq1Zlu9BSKz1X6a1yRuDXrOE,2088
|
|
2
|
+
nominal_api/_impl.py,sha256=iYudBBZAwSOi4oFqFpZHDqIUYOhlT2KBR2kzsYFmMJ0,3802382
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=GqRLE9wwPPQgALVHFJViG8E4JJ2t3yfHedeXRLu1L70,2226
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
|
@@ -35,8 +35,8 @@ nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=F5cQo_KqeTpFwqKBDV-i
|
|
|
35
35
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
|
36
36
|
nominal_api/scout_compute_api/__init__.py,sha256=j2VBWPlPUGikx7uzDBo5vQ_kh7J9UPcS3hAZjCjBrtc,34423
|
|
37
37
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
|
38
|
-
nominal_api/scout_compute_resolved_api/__init__.py,sha256=
|
|
39
|
-
nominal_api/scout_dataexport_api/__init__.py,sha256=
|
|
38
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=CgbeDsEmdKK-wDhKt35qW7gLykjHHs1cM_ODn1AlZmY,17596
|
|
39
|
+
nominal_api/scout_dataexport_api/__init__.py,sha256=jl409RGy7Mxhjqja8wa-abLnXrhL2FEYZrA1GcaAJh0,2182
|
|
40
40
|
nominal_api/scout_datareview_api/__init__.py,sha256=ITQR6pdPseU9vS2bKDeleafiBhurtHmcHeKz_6J8Ab8,12229
|
|
41
41
|
nominal_api/scout_datasource/__init__.py,sha256=Z1Msu1Daf8GlLuM3w5imyB-6DhTNZojxI6xpH1sSvhM,141
|
|
42
42
|
nominal_api/scout_datasource_connection/__init__.py,sha256=vT-OJYR5a--THheuxH1T1n553ZHp8pwsWBVzB7qvuKs,285
|
|
@@ -75,10 +75,10 @@ nominal_api/timeseries_channelmetadata_api/__init__.py,sha256=cnW4lnburn1z58pMO1
|
|
|
75
75
|
nominal_api/timeseries_logicalseries/__init__.py,sha256=8GyG6TLiwCUsfooVx8fotkILjCFwsqiDmy9LmSb-OrY,158
|
|
76
76
|
nominal_api/timeseries_logicalseries_api/__init__.py,sha256=lDuOWyLpdVBI9aoN6ujwU_cGS18i9QrPZFYsoDerhvM,4710
|
|
77
77
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
78
|
-
nominal_api/timeseries_seriescache_api/__init__.py,sha256=
|
|
78
|
+
nominal_api/timeseries_seriescache_api/__init__.py,sha256=i21vITWBn-6ruVuFZg491TDpx6WcIhJBoF3oNw3w338,1186
|
|
79
79
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
80
80
|
nominal_api/usercreation_api/__init__.py,sha256=Q6M70SlKFVfIxZqRohD4XYmBz5t2DP1DB0a0Q6glqGA,171
|
|
81
|
-
nominal_api-0.
|
|
82
|
-
nominal_api-0.
|
|
83
|
-
nominal_api-0.
|
|
84
|
-
nominal_api-0.
|
|
81
|
+
nominal_api-0.921.0.dist-info/METADATA,sha256=OQYwjiTEyO4zenX8Q2zKh1EhDFJfAjO-U6s5kFMhT_k,199
|
|
82
|
+
nominal_api-0.921.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
83
|
+
nominal_api-0.921.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
84
|
+
nominal_api-0.921.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|