nominal-api 0.919.0__py3-none-any.whl → 0.920.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 +1 -226
- nominal_api/scout_compute_resolved_api/__init__.py +0 -2
- nominal_api/timeseries_seriescache_api/__init__.py +0 -8
- {nominal_api-0.919.0.dist-info → nominal_api-0.920.0.dist-info}/METADATA +1 -1
- {nominal_api-0.919.0.dist-info → nominal_api-0.920.0.dist-info}/RECORD +8 -8
- {nominal_api-0.919.0.dist-info → nominal_api-0.920.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.919.0.dist-info → nominal_api-0.920.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
|
|
@@ -95165,69 +95113,6 @@ class timeseries_seriescache_SeriesCacheService(Service):
|
|
|
95165
95113
|
"""The Series Cache service manages internal chunks of data cached by Nominal's backend.
|
|
95166
95114
|
"""
|
|
95167
95115
|
|
|
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
95116
|
def get_chunks(self, auth_header: str, get_chunks_parameters: "timeseries_seriescache_api_GetChunksParameters", logical_series_rid: str) -> "timeseries_seriescache_api_GetChunksResponse":
|
|
95232
95117
|
"""Fetches "chunks" of series that are stored as Arrow files in S3.
|
|
95233
95118
|
This endpoint is being deprecated for new series in favor of batchGetCachedSeries
|
|
@@ -95362,70 +95247,6 @@ timeseries_seriescache_SeriesCacheService.__qualname__ = "SeriesCacheService"
|
|
|
95362
95247
|
timeseries_seriescache_SeriesCacheService.__module__ = "nominal_api.timeseries_seriescache"
|
|
95363
95248
|
|
|
95364
95249
|
|
|
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
95250
|
class timeseries_seriescache_api_Chunk(ConjureBeanType):
|
|
95430
95251
|
|
|
95431
95252
|
@builtins.classmethod
|
|
@@ -95517,29 +95338,6 @@ timeseries_seriescache_api_ChunkType.__qualname__ = "ChunkType"
|
|
|
95517
95338
|
timeseries_seriescache_api_ChunkType.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95518
95339
|
|
|
95519
95340
|
|
|
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
95341
|
class timeseries_seriescache_api_CreateChunk(ConjureBeanType):
|
|
95544
95342
|
|
|
95545
95343
|
@builtins.classmethod
|
|
@@ -95705,29 +95503,6 @@ timeseries_seriescache_api_DeleteChunksResponse.__qualname__ = "DeleteChunksResp
|
|
|
95705
95503
|
timeseries_seriescache_api_DeleteChunksResponse.__module__ = "nominal_api.timeseries_seriescache_api"
|
|
95706
95504
|
|
|
95707
95505
|
|
|
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
95506
|
class timeseries_seriescache_api_GetChunksParameters(ConjureBeanType):
|
|
95732
95507
|
|
|
95733
95508
|
@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',
|
|
@@ -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=Dk4dfWIbzrDi71xf4x4Jpwjq9i2cOKqdgnp33UGLgyg,2088
|
|
2
|
+
nominal_api/_impl.py,sha256=gKKf4xwWti1v_Acm3gZ7nERdGfGqViyQuZR0sPB5NGo,3800885
|
|
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,7 +35,7 @@ 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=
|
|
38
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=CgbeDsEmdKK-wDhKt35qW7gLykjHHs1cM_ODn1AlZmY,17596
|
|
39
39
|
nominal_api/scout_dataexport_api/__init__.py,sha256=E5hE8rqLbdCH1n877yLh_NjpP1RkJOWgqesH-ObhK1o,2122
|
|
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
|
|
@@ -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.920.0.dist-info/METADATA,sha256=uSL6niQsFuvO7Xg-s-SE3LTa--BWpyEqGlFqFRQybes,199
|
|
82
|
+
nominal_api-0.920.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
83
|
+
nominal_api-0.920.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
84
|
+
nominal_api-0.920.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|