nominal-api 0.614.1__py3-none-any.whl → 0.616.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 +327 -64
- nominal_api/scout_compute_resolved_api/__init__.py +6 -0
- nominal_api/scout_favorites_api/__init__.py +3 -4
- {nominal_api-0.614.1.dist-info → nominal_api-0.616.0.dist-info}/METADATA +1 -1
- {nominal_api-0.614.1.dist-info → nominal_api-0.616.0.dist-info}/RECORD +8 -8
- {nominal_api-0.614.1.dist-info → nominal_api-0.616.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.614.1.dist-info → nominal_api-0.616.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -45116,6 +45116,35 @@ scout_compute_resolved_api_BitOperationSeriesNode.__qualname__ = "BitOperationSe
|
|
|
45116
45116
|
scout_compute_resolved_api_BitOperationSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
45117
45117
|
|
|
45118
45118
|
|
|
45119
|
+
class scout_compute_resolved_api_CachedStorageLocator(ConjureBeanType):
|
|
45120
|
+
|
|
45121
|
+
@builtins.classmethod
|
|
45122
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
45123
|
+
return {
|
|
45124
|
+
'series_uuids': ConjureFieldDefinition('seriesUuids', List[str]),
|
|
45125
|
+
'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
|
|
45126
|
+
}
|
|
45127
|
+
|
|
45128
|
+
__slots__: List[str] = ['_series_uuids', '_type']
|
|
45129
|
+
|
|
45130
|
+
def __init__(self, series_uuids: List[str], type: "storage_series_api_NominalDataType") -> None:
|
|
45131
|
+
self._series_uuids = series_uuids
|
|
45132
|
+
self._type = type
|
|
45133
|
+
|
|
45134
|
+
@builtins.property
|
|
45135
|
+
def series_uuids(self) -> List[str]:
|
|
45136
|
+
return self._series_uuids
|
|
45137
|
+
|
|
45138
|
+
@builtins.property
|
|
45139
|
+
def type(self) -> "storage_series_api_NominalDataType":
|
|
45140
|
+
return self._type
|
|
45141
|
+
|
|
45142
|
+
|
|
45143
|
+
scout_compute_resolved_api_CachedStorageLocator.__name__ = "CachedStorageLocator"
|
|
45144
|
+
scout_compute_resolved_api_CachedStorageLocator.__qualname__ = "CachedStorageLocator"
|
|
45145
|
+
scout_compute_resolved_api_CachedStorageLocator.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
45146
|
+
|
|
45147
|
+
|
|
45119
45148
|
class scout_compute_resolved_api_Cartesian3dBounds(ConjureBeanType):
|
|
45120
45149
|
|
|
45121
45150
|
@builtins.classmethod
|
|
@@ -45325,6 +45354,41 @@ scout_compute_resolved_api_CartesianNodeVisitor.__qualname__ = "CartesianNodeVis
|
|
|
45325
45354
|
scout_compute_resolved_api_CartesianNodeVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
45326
45355
|
|
|
45327
45356
|
|
|
45357
|
+
class scout_compute_resolved_api_ClickHouseSeriesResolutionDetails(ConjureBeanType):
|
|
45358
|
+
|
|
45359
|
+
@builtins.classmethod
|
|
45360
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
45361
|
+
return {
|
|
45362
|
+
'channel': ConjureFieldDefinition('channel', api_Channel),
|
|
45363
|
+
'tags': ConjureFieldDefinition('tags', Dict[api_TagName, api_TagValue]),
|
|
45364
|
+
'org_rid': ConjureFieldDefinition('orgRid', authentication_api_OrgRid)
|
|
45365
|
+
}
|
|
45366
|
+
|
|
45367
|
+
__slots__: List[str] = ['_channel', '_tags', '_org_rid']
|
|
45368
|
+
|
|
45369
|
+
def __init__(self, channel: str, org_rid: str, tags: Dict[str, str]) -> None:
|
|
45370
|
+
self._channel = channel
|
|
45371
|
+
self._tags = tags
|
|
45372
|
+
self._org_rid = org_rid
|
|
45373
|
+
|
|
45374
|
+
@builtins.property
|
|
45375
|
+
def channel(self) -> str:
|
|
45376
|
+
return self._channel
|
|
45377
|
+
|
|
45378
|
+
@builtins.property
|
|
45379
|
+
def tags(self) -> Dict[str, str]:
|
|
45380
|
+
return self._tags
|
|
45381
|
+
|
|
45382
|
+
@builtins.property
|
|
45383
|
+
def org_rid(self) -> str:
|
|
45384
|
+
return self._org_rid
|
|
45385
|
+
|
|
45386
|
+
|
|
45387
|
+
scout_compute_resolved_api_ClickHouseSeriesResolutionDetails.__name__ = "ClickHouseSeriesResolutionDetails"
|
|
45388
|
+
scout_compute_resolved_api_ClickHouseSeriesResolutionDetails.__qualname__ = "ClickHouseSeriesResolutionDetails"
|
|
45389
|
+
scout_compute_resolved_api_ClickHouseSeriesResolutionDetails.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
45390
|
+
|
|
45391
|
+
|
|
45328
45392
|
class scout_compute_resolved_api_CumulativeSumSeriesNode(ConjureBeanType):
|
|
45329
45393
|
|
|
45330
45394
|
@builtins.classmethod
|
|
@@ -46782,6 +46846,47 @@ scout_compute_resolved_api_MinSeriesNode.__qualname__ = "MinSeriesNode"
|
|
|
46782
46846
|
scout_compute_resolved_api_MinSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
46783
46847
|
|
|
46784
46848
|
|
|
46849
|
+
class scout_compute_resolved_api_NominalStorageLocator(ConjureBeanType):
|
|
46850
|
+
|
|
46851
|
+
@builtins.classmethod
|
|
46852
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
46853
|
+
return {
|
|
46854
|
+
'data_source_rid': ConjureFieldDefinition('dataSourceRid', api_rids_NominalDataSourceOrDatasetRid),
|
|
46855
|
+
'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType),
|
|
46856
|
+
'details': ConjureFieldDefinition('details', scout_compute_resolved_api_ClickHouseSeriesResolutionDetails),
|
|
46857
|
+
'is_in_memory_streaming_enabled': ConjureFieldDefinition('isInMemoryStreamingEnabled', bool)
|
|
46858
|
+
}
|
|
46859
|
+
|
|
46860
|
+
__slots__: List[str] = ['_data_source_rid', '_type', '_details', '_is_in_memory_streaming_enabled']
|
|
46861
|
+
|
|
46862
|
+
def __init__(self, data_source_rid: str, details: "scout_compute_resolved_api_ClickHouseSeriesResolutionDetails", is_in_memory_streaming_enabled: bool, type: "storage_series_api_NominalDataType") -> None:
|
|
46863
|
+
self._data_source_rid = data_source_rid
|
|
46864
|
+
self._type = type
|
|
46865
|
+
self._details = details
|
|
46866
|
+
self._is_in_memory_streaming_enabled = is_in_memory_streaming_enabled
|
|
46867
|
+
|
|
46868
|
+
@builtins.property
|
|
46869
|
+
def data_source_rid(self) -> str:
|
|
46870
|
+
return self._data_source_rid
|
|
46871
|
+
|
|
46872
|
+
@builtins.property
|
|
46873
|
+
def type(self) -> "storage_series_api_NominalDataType":
|
|
46874
|
+
return self._type
|
|
46875
|
+
|
|
46876
|
+
@builtins.property
|
|
46877
|
+
def details(self) -> "scout_compute_resolved_api_ClickHouseSeriesResolutionDetails":
|
|
46878
|
+
return self._details
|
|
46879
|
+
|
|
46880
|
+
@builtins.property
|
|
46881
|
+
def is_in_memory_streaming_enabled(self) -> bool:
|
|
46882
|
+
return self._is_in_memory_streaming_enabled
|
|
46883
|
+
|
|
46884
|
+
|
|
46885
|
+
scout_compute_resolved_api_NominalStorageLocator.__name__ = "NominalStorageLocator"
|
|
46886
|
+
scout_compute_resolved_api_NominalStorageLocator.__qualname__ = "NominalStorageLocator"
|
|
46887
|
+
scout_compute_resolved_api_NominalStorageLocator.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
46888
|
+
|
|
46889
|
+
|
|
46785
46890
|
class scout_compute_resolved_api_NotRangesNode(ConjureBeanType):
|
|
46786
46891
|
|
|
46787
46892
|
@builtins.classmethod
|
|
@@ -48558,6 +48663,47 @@ scout_compute_resolved_api_ResolvedNodeVisitor.__qualname__ = "ResolvedNodeVisit
|
|
|
48558
48663
|
scout_compute_resolved_api_ResolvedNodeVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
48559
48664
|
|
|
48560
48665
|
|
|
48666
|
+
class scout_compute_resolved_api_ResolvedSeries(ConjureBeanType):
|
|
48667
|
+
|
|
48668
|
+
@builtins.classmethod
|
|
48669
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
48670
|
+
return {
|
|
48671
|
+
'logical_series': ConjureFieldDefinition('logicalSeries', timeseries_logicalseries_api_LogicalSeries),
|
|
48672
|
+
'series_spec': ConjureFieldDefinition('seriesSpec', scout_compute_api_SeriesSpec),
|
|
48673
|
+
'storage_locator': ConjureFieldDefinition('storageLocator', OptionalTypeWrapper[scout_compute_resolved_api_StorageLocator]),
|
|
48674
|
+
'granularity': ConjureFieldDefinition('granularity', api_Granularity)
|
|
48675
|
+
}
|
|
48676
|
+
|
|
48677
|
+
__slots__: List[str] = ['_logical_series', '_series_spec', '_storage_locator', '_granularity']
|
|
48678
|
+
|
|
48679
|
+
def __init__(self, granularity: "api_Granularity", logical_series: "timeseries_logicalseries_api_LogicalSeries", series_spec: "scout_compute_api_SeriesSpec", storage_locator: Optional["scout_compute_resolved_api_StorageLocator"] = None) -> None:
|
|
48680
|
+
self._logical_series = logical_series
|
|
48681
|
+
self._series_spec = series_spec
|
|
48682
|
+
self._storage_locator = storage_locator
|
|
48683
|
+
self._granularity = granularity
|
|
48684
|
+
|
|
48685
|
+
@builtins.property
|
|
48686
|
+
def logical_series(self) -> "timeseries_logicalseries_api_LogicalSeries":
|
|
48687
|
+
return self._logical_series
|
|
48688
|
+
|
|
48689
|
+
@builtins.property
|
|
48690
|
+
def series_spec(self) -> "scout_compute_api_SeriesSpec":
|
|
48691
|
+
return self._series_spec
|
|
48692
|
+
|
|
48693
|
+
@builtins.property
|
|
48694
|
+
def storage_locator(self) -> Optional["scout_compute_resolved_api_StorageLocator"]:
|
|
48695
|
+
return self._storage_locator
|
|
48696
|
+
|
|
48697
|
+
@builtins.property
|
|
48698
|
+
def granularity(self) -> "api_Granularity":
|
|
48699
|
+
return self._granularity
|
|
48700
|
+
|
|
48701
|
+
|
|
48702
|
+
scout_compute_resolved_api_ResolvedSeries.__name__ = "ResolvedSeries"
|
|
48703
|
+
scout_compute_resolved_api_ResolvedSeries.__qualname__ = "ResolvedSeries"
|
|
48704
|
+
scout_compute_resolved_api_ResolvedSeries.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
48705
|
+
|
|
48706
|
+
|
|
48561
48707
|
class scout_compute_resolved_api_RollingOperationSeriesNode(ConjureBeanType):
|
|
48562
48708
|
|
|
48563
48709
|
@builtins.classmethod
|
|
@@ -49189,6 +49335,83 @@ scout_compute_resolved_api_StaleRangesNode.__qualname__ = "StaleRangesNode"
|
|
|
49189
49335
|
scout_compute_resolved_api_StaleRangesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
49190
49336
|
|
|
49191
49337
|
|
|
49338
|
+
class scout_compute_resolved_api_StorageLocator(ConjureUnionType):
|
|
49339
|
+
_cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None
|
|
49340
|
+
_nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None
|
|
49341
|
+
|
|
49342
|
+
@builtins.classmethod
|
|
49343
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
49344
|
+
return {
|
|
49345
|
+
'cached': ConjureFieldDefinition('cached', scout_compute_resolved_api_CachedStorageLocator),
|
|
49346
|
+
'nominal': ConjureFieldDefinition('nominal', scout_compute_resolved_api_NominalStorageLocator)
|
|
49347
|
+
}
|
|
49348
|
+
|
|
49349
|
+
def __init__(
|
|
49350
|
+
self,
|
|
49351
|
+
cached: Optional["scout_compute_resolved_api_CachedStorageLocator"] = None,
|
|
49352
|
+
nominal: Optional["scout_compute_resolved_api_NominalStorageLocator"] = None,
|
|
49353
|
+
type_of_union: Optional[str] = None
|
|
49354
|
+
) -> None:
|
|
49355
|
+
if type_of_union is None:
|
|
49356
|
+
if (cached is not None) + (nominal is not None) != 1:
|
|
49357
|
+
raise ValueError('a union must contain a single member')
|
|
49358
|
+
|
|
49359
|
+
if cached is not None:
|
|
49360
|
+
self._cached = cached
|
|
49361
|
+
self._type = 'cached'
|
|
49362
|
+
if nominal is not None:
|
|
49363
|
+
self._nominal = nominal
|
|
49364
|
+
self._type = 'nominal'
|
|
49365
|
+
|
|
49366
|
+
elif type_of_union == 'cached':
|
|
49367
|
+
if cached is None:
|
|
49368
|
+
raise ValueError('a union value must not be None')
|
|
49369
|
+
self._cached = cached
|
|
49370
|
+
self._type = 'cached'
|
|
49371
|
+
elif type_of_union == 'nominal':
|
|
49372
|
+
if nominal is None:
|
|
49373
|
+
raise ValueError('a union value must not be None')
|
|
49374
|
+
self._nominal = nominal
|
|
49375
|
+
self._type = 'nominal'
|
|
49376
|
+
|
|
49377
|
+
@builtins.property
|
|
49378
|
+
def cached(self) -> Optional["scout_compute_resolved_api_CachedStorageLocator"]:
|
|
49379
|
+
return self._cached
|
|
49380
|
+
|
|
49381
|
+
@builtins.property
|
|
49382
|
+
def nominal(self) -> Optional["scout_compute_resolved_api_NominalStorageLocator"]:
|
|
49383
|
+
return self._nominal
|
|
49384
|
+
|
|
49385
|
+
def accept(self, visitor) -> Any:
|
|
49386
|
+
if not isinstance(visitor, scout_compute_resolved_api_StorageLocatorVisitor):
|
|
49387
|
+
raise ValueError('{} is not an instance of scout_compute_resolved_api_StorageLocatorVisitor'.format(visitor.__class__.__name__))
|
|
49388
|
+
if self._type == 'cached' and self.cached is not None:
|
|
49389
|
+
return visitor._cached(self.cached)
|
|
49390
|
+
if self._type == 'nominal' and self.nominal is not None:
|
|
49391
|
+
return visitor._nominal(self.nominal)
|
|
49392
|
+
|
|
49393
|
+
|
|
49394
|
+
scout_compute_resolved_api_StorageLocator.__name__ = "StorageLocator"
|
|
49395
|
+
scout_compute_resolved_api_StorageLocator.__qualname__ = "StorageLocator"
|
|
49396
|
+
scout_compute_resolved_api_StorageLocator.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
49397
|
+
|
|
49398
|
+
|
|
49399
|
+
class scout_compute_resolved_api_StorageLocatorVisitor:
|
|
49400
|
+
|
|
49401
|
+
@abstractmethod
|
|
49402
|
+
def _cached(self, cached: "scout_compute_resolved_api_CachedStorageLocator") -> Any:
|
|
49403
|
+
pass
|
|
49404
|
+
|
|
49405
|
+
@abstractmethod
|
|
49406
|
+
def _nominal(self, nominal: "scout_compute_resolved_api_NominalStorageLocator") -> Any:
|
|
49407
|
+
pass
|
|
49408
|
+
|
|
49409
|
+
|
|
49410
|
+
scout_compute_resolved_api_StorageLocatorVisitor.__name__ = "StorageLocatorVisitor"
|
|
49411
|
+
scout_compute_resolved_api_StorageLocatorVisitor.__qualname__ = "StorageLocatorVisitor"
|
|
49412
|
+
scout_compute_resolved_api_StorageLocatorVisitor.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
49413
|
+
|
|
49414
|
+
|
|
49192
49415
|
class scout_compute_resolved_api_SumSeriesNode(ConjureBeanType):
|
|
49193
49416
|
|
|
49194
49417
|
@builtins.classmethod
|
|
@@ -57857,9 +58080,77 @@ class scout_favorites_FavoritesService(Service):
|
|
|
57857
58080
|
quick access within search pages throughout the application for themselves.
|
|
57858
58081
|
"""
|
|
57859
58082
|
|
|
57860
|
-
def
|
|
58083
|
+
def get_favorites_list(self, auth_header: str, workspace_rid: str, resource_types: List["scout_favorites_api_ResourceType"] = None) -> "scout_favorites_api_FavoritesListResponse":
|
|
58084
|
+
"""
|
|
58085
|
+
Retrieves the favorites list for the current user in the specified workspace.
|
|
58086
|
+
"""
|
|
58087
|
+
resource_types = resource_types if resource_types is not None else []
|
|
58088
|
+
|
|
58089
|
+
_headers: Dict[str, Any] = {
|
|
58090
|
+
'Accept': 'application/json',
|
|
58091
|
+
'Authorization': auth_header,
|
|
58092
|
+
}
|
|
58093
|
+
|
|
58094
|
+
_params: Dict[str, Any] = {
|
|
58095
|
+
'resourceTypes': resource_types,
|
|
58096
|
+
}
|
|
58097
|
+
|
|
58098
|
+
_path_params: Dict[str, Any] = {
|
|
58099
|
+
'workspaceRid': workspace_rid,
|
|
58100
|
+
}
|
|
58101
|
+
|
|
58102
|
+
_json: Any = None
|
|
58103
|
+
|
|
58104
|
+
_path = '/scout/v2/favorites/workspace/{workspaceRid}'
|
|
58105
|
+
_path = _path.format(**_path_params)
|
|
58106
|
+
|
|
58107
|
+
_response: Response = self._request(
|
|
58108
|
+
'GET',
|
|
58109
|
+
self._uri + _path,
|
|
58110
|
+
params=_params,
|
|
58111
|
+
headers=_headers,
|
|
58112
|
+
json=_json)
|
|
58113
|
+
|
|
58114
|
+
_decoder = ConjureDecoder()
|
|
58115
|
+
return _decoder.decode(_response.json(), scout_favorites_api_FavoritesListResponse, self._return_none_for_unknown_union_types)
|
|
58116
|
+
|
|
58117
|
+
def set_favorites_list(self, auth_header: str, request: "scout_favorites_api_SetFavoritesListRequest", workspace_rid: str) -> "scout_favorites_api_FavoritesListResponse":
|
|
58118
|
+
"""
|
|
58119
|
+
Overwrites the favorites list for the current user in the specified workspace.
|
|
58120
|
+
"""
|
|
58121
|
+
|
|
58122
|
+
_headers: Dict[str, Any] = {
|
|
58123
|
+
'Accept': 'application/json',
|
|
58124
|
+
'Content-Type': 'application/json',
|
|
58125
|
+
'Authorization': auth_header,
|
|
58126
|
+
}
|
|
58127
|
+
|
|
58128
|
+
_params: Dict[str, Any] = {
|
|
58129
|
+
}
|
|
58130
|
+
|
|
58131
|
+
_path_params: Dict[str, Any] = {
|
|
58132
|
+
'workspaceRid': workspace_rid,
|
|
58133
|
+
}
|
|
58134
|
+
|
|
58135
|
+
_json: Any = ConjureEncoder().default(request)
|
|
58136
|
+
|
|
58137
|
+
_path = '/scout/v2/favorites/workspace/{workspaceRid}'
|
|
58138
|
+
_path = _path.format(**_path_params)
|
|
58139
|
+
|
|
58140
|
+
_response: Response = self._request(
|
|
58141
|
+
'PUT',
|
|
58142
|
+
self._uri + _path,
|
|
58143
|
+
params=_params,
|
|
58144
|
+
headers=_headers,
|
|
58145
|
+
json=_json)
|
|
58146
|
+
|
|
58147
|
+
_decoder = ConjureDecoder()
|
|
58148
|
+
return _decoder.decode(_response.json(), scout_favorites_api_FavoritesListResponse, self._return_none_for_unknown_union_types)
|
|
58149
|
+
|
|
58150
|
+
def update_favorites(self, auth_header: str, request: "scout_favorites_api_SetFavoritesListRequest") -> "scout_favorites_api_FavoritesListResponse":
|
|
57861
58151
|
"""
|
|
57862
58152
|
Update the user's favorited resources.
|
|
58153
|
+
This will use the org's default workspace if the user has access to it.
|
|
57863
58154
|
"""
|
|
57864
58155
|
|
|
57865
58156
|
_headers: Dict[str, Any] = {
|
|
@@ -57887,11 +58178,12 @@ quick access within search pages throughout the application for themselves.
|
|
|
57887
58178
|
json=_json)
|
|
57888
58179
|
|
|
57889
58180
|
_decoder = ConjureDecoder()
|
|
57890
|
-
return _decoder.decode(_response.json(),
|
|
58181
|
+
return _decoder.decode(_response.json(), scout_favorites_api_FavoritesListResponse, self._return_none_for_unknown_union_types)
|
|
57891
58182
|
|
|
57892
|
-
def list_favorites(self, auth_header: str, request: "
|
|
58183
|
+
def list_favorites(self, auth_header: str, request: "scout_favorites_api_DeprecatedListFavoritesRequest") -> "scout_favorites_api_FavoritesListResponse":
|
|
57893
58184
|
"""
|
|
57894
58185
|
Retrieves all the user's favorites with filtering options on the resource types to include.
|
|
58186
|
+
This will use the org's default workspace if the user has access to it.
|
|
57895
58187
|
"""
|
|
57896
58188
|
|
|
57897
58189
|
_headers: Dict[str, Any] = {
|
|
@@ -57919,7 +58211,7 @@ quick access within search pages throughout the application for themselves.
|
|
|
57919
58211
|
json=_json)
|
|
57920
58212
|
|
|
57921
58213
|
_decoder = ConjureDecoder()
|
|
57922
|
-
return _decoder.decode(_response.json(),
|
|
58214
|
+
return _decoder.decode(_response.json(), scout_favorites_api_FavoritesListResponse, self._return_none_for_unknown_union_types)
|
|
57923
58215
|
|
|
57924
58216
|
|
|
57925
58217
|
scout_favorites_FavoritesService.__name__ = "FavoritesService"
|
|
@@ -57927,6 +58219,29 @@ scout_favorites_FavoritesService.__qualname__ = "FavoritesService"
|
|
|
57927
58219
|
scout_favorites_FavoritesService.__module__ = "nominal_api.scout_favorites"
|
|
57928
58220
|
|
|
57929
58221
|
|
|
58222
|
+
class scout_favorites_api_DeprecatedListFavoritesRequest(ConjureBeanType):
|
|
58223
|
+
|
|
58224
|
+
@builtins.classmethod
|
|
58225
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58226
|
+
return {
|
|
58227
|
+
'resource_types': ConjureFieldDefinition('resourceTypes', OptionalTypeWrapper[List[scout_favorites_api_ResourceType]])
|
|
58228
|
+
}
|
|
58229
|
+
|
|
58230
|
+
__slots__: List[str] = ['_resource_types']
|
|
58231
|
+
|
|
58232
|
+
def __init__(self, resource_types: Optional[List["scout_favorites_api_ResourceType"]] = None) -> None:
|
|
58233
|
+
self._resource_types = resource_types
|
|
58234
|
+
|
|
58235
|
+
@builtins.property
|
|
58236
|
+
def resource_types(self) -> Optional[List["scout_favorites_api_ResourceType"]]:
|
|
58237
|
+
return self._resource_types
|
|
58238
|
+
|
|
58239
|
+
|
|
58240
|
+
scout_favorites_api_DeprecatedListFavoritesRequest.__name__ = "DeprecatedListFavoritesRequest"
|
|
58241
|
+
scout_favorites_api_DeprecatedListFavoritesRequest.__qualname__ = "DeprecatedListFavoritesRequest"
|
|
58242
|
+
scout_favorites_api_DeprecatedListFavoritesRequest.__module__ = "nominal_api.scout_favorites_api"
|
|
58243
|
+
|
|
58244
|
+
|
|
57930
58245
|
class scout_favorites_api_FavoriteResource(ConjureUnionType):
|
|
57931
58246
|
_asset: Optional[str] = None
|
|
57932
58247
|
_run: Optional[str] = None
|
|
@@ -58067,30 +58382,7 @@ scout_favorites_api_FavoriteResourceVisitor.__qualname__ = "FavoriteResourceVisi
|
|
|
58067
58382
|
scout_favorites_api_FavoriteResourceVisitor.__module__ = "nominal_api.scout_favorites_api"
|
|
58068
58383
|
|
|
58069
58384
|
|
|
58070
|
-
class
|
|
58071
|
-
|
|
58072
|
-
@builtins.classmethod
|
|
58073
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58074
|
-
return {
|
|
58075
|
-
'resource_types': ConjureFieldDefinition('resourceTypes', OptionalTypeWrapper[List[scout_favorites_api_ResourceType]])
|
|
58076
|
-
}
|
|
58077
|
-
|
|
58078
|
-
__slots__: List[str] = ['_resource_types']
|
|
58079
|
-
|
|
58080
|
-
def __init__(self, resource_types: Optional[List["scout_favorites_api_ResourceType"]] = None) -> None:
|
|
58081
|
-
self._resource_types = resource_types
|
|
58082
|
-
|
|
58083
|
-
@builtins.property
|
|
58084
|
-
def resource_types(self) -> Optional[List["scout_favorites_api_ResourceType"]]:
|
|
58085
|
-
return self._resource_types
|
|
58086
|
-
|
|
58087
|
-
|
|
58088
|
-
scout_favorites_api_ListFavoritesRequest.__name__ = "ListFavoritesRequest"
|
|
58089
|
-
scout_favorites_api_ListFavoritesRequest.__qualname__ = "ListFavoritesRequest"
|
|
58090
|
-
scout_favorites_api_ListFavoritesRequest.__module__ = "nominal_api.scout_favorites_api"
|
|
58091
|
-
|
|
58092
|
-
|
|
58093
|
-
class scout_favorites_api_ListFavoritesResponse(ConjureBeanType):
|
|
58385
|
+
class scout_favorites_api_FavoritesListResponse(ConjureBeanType):
|
|
58094
58386
|
|
|
58095
58387
|
@builtins.classmethod
|
|
58096
58388
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -58105,15 +58397,12 @@ class scout_favorites_api_ListFavoritesResponse(ConjureBeanType):
|
|
|
58105
58397
|
|
|
58106
58398
|
@builtins.property
|
|
58107
58399
|
def favorites(self) -> List["scout_favorites_api_FavoriteResource"]:
|
|
58108
|
-
"""
|
|
58109
|
-
The user's favorite resources. Ordered the same as the resources provided when updating favorites.
|
|
58110
|
-
"""
|
|
58111
58400
|
return self._favorites
|
|
58112
58401
|
|
|
58113
58402
|
|
|
58114
|
-
|
|
58115
|
-
|
|
58116
|
-
|
|
58403
|
+
scout_favorites_api_FavoritesListResponse.__name__ = "FavoritesListResponse"
|
|
58404
|
+
scout_favorites_api_FavoritesListResponse.__qualname__ = "FavoritesListResponse"
|
|
58405
|
+
scout_favorites_api_FavoritesListResponse.__module__ = "nominal_api.scout_favorites_api"
|
|
58117
58406
|
|
|
58118
58407
|
|
|
58119
58408
|
class scout_favorites_api_ResourceType(ConjureEnumType):
|
|
@@ -58140,7 +58429,7 @@ scout_favorites_api_ResourceType.__qualname__ = "ResourceType"
|
|
|
58140
58429
|
scout_favorites_api_ResourceType.__module__ = "nominal_api.scout_favorites_api"
|
|
58141
58430
|
|
|
58142
58431
|
|
|
58143
|
-
class
|
|
58432
|
+
class scout_favorites_api_SetFavoritesListRequest(ConjureBeanType):
|
|
58144
58433
|
|
|
58145
58434
|
@builtins.classmethod
|
|
58146
58435
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -58162,35 +58451,9 @@ all the user's previous favorites.
|
|
|
58162
58451
|
return self._resources
|
|
58163
58452
|
|
|
58164
58453
|
|
|
58165
|
-
|
|
58166
|
-
|
|
58167
|
-
|
|
58168
|
-
|
|
58169
|
-
|
|
58170
|
-
class scout_favorites_api_UpdateFavoritesResponse(ConjureBeanType):
|
|
58171
|
-
|
|
58172
|
-
@builtins.classmethod
|
|
58173
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58174
|
-
return {
|
|
58175
|
-
'favorites': ConjureFieldDefinition('favorites', List[scout_favorites_api_FavoriteResource])
|
|
58176
|
-
}
|
|
58177
|
-
|
|
58178
|
-
__slots__: List[str] = ['_favorites']
|
|
58179
|
-
|
|
58180
|
-
def __init__(self, favorites: List["scout_favorites_api_FavoriteResource"]) -> None:
|
|
58181
|
-
self._favorites = favorites
|
|
58182
|
-
|
|
58183
|
-
@builtins.property
|
|
58184
|
-
def favorites(self) -> List["scout_favorites_api_FavoriteResource"]:
|
|
58185
|
-
"""
|
|
58186
|
-
The user's updated favorite resources. Maintains the same ordering as the resources in the request.
|
|
58187
|
-
"""
|
|
58188
|
-
return self._favorites
|
|
58189
|
-
|
|
58190
|
-
|
|
58191
|
-
scout_favorites_api_UpdateFavoritesResponse.__name__ = "UpdateFavoritesResponse"
|
|
58192
|
-
scout_favorites_api_UpdateFavoritesResponse.__qualname__ = "UpdateFavoritesResponse"
|
|
58193
|
-
scout_favorites_api_UpdateFavoritesResponse.__module__ = "nominal_api.scout_favorites_api"
|
|
58454
|
+
scout_favorites_api_SetFavoritesListRequest.__name__ = "SetFavoritesListRequest"
|
|
58455
|
+
scout_favorites_api_SetFavoritesListRequest.__qualname__ = "SetFavoritesListRequest"
|
|
58456
|
+
scout_favorites_api_SetFavoritesListRequest.__module__ = "nominal_api.scout_favorites_api"
|
|
58194
58457
|
|
|
58195
58458
|
|
|
58196
58459
|
class scout_integrations_api_CreateIntegrationDetails(ConjureUnionType):
|
|
@@ -8,12 +8,14 @@ from .._impl import (
|
|
|
8
8
|
scout_compute_resolved_api_BandStopConfiguration as BandStopConfiguration,
|
|
9
9
|
scout_compute_resolved_api_BinaryArithmeticSeriesNode as BinaryArithmeticSeriesNode,
|
|
10
10
|
scout_compute_resolved_api_BitOperationSeriesNode as BitOperationSeriesNode,
|
|
11
|
+
scout_compute_resolved_api_CachedStorageLocator as CachedStorageLocator,
|
|
11
12
|
scout_compute_resolved_api_Cartesian3dBounds as Cartesian3dBounds,
|
|
12
13
|
scout_compute_resolved_api_Cartesian3dNode as Cartesian3dNode,
|
|
13
14
|
scout_compute_resolved_api_Cartesian3dNodeVisitor as Cartesian3dNodeVisitor,
|
|
14
15
|
scout_compute_resolved_api_CartesianBounds as CartesianBounds,
|
|
15
16
|
scout_compute_resolved_api_CartesianNode as CartesianNode,
|
|
16
17
|
scout_compute_resolved_api_CartesianNodeVisitor as CartesianNodeVisitor,
|
|
18
|
+
scout_compute_resolved_api_ClickHouseSeriesResolutionDetails as ClickHouseSeriesResolutionDetails,
|
|
17
19
|
scout_compute_resolved_api_CumulativeSumSeriesNode as CumulativeSumSeriesNode,
|
|
18
20
|
scout_compute_resolved_api_DerivativeSeriesNode as DerivativeSeriesNode,
|
|
19
21
|
scout_compute_resolved_api_EnumCountDuplicateSeriesNode as EnumCountDuplicateSeriesNode,
|
|
@@ -57,6 +59,7 @@ from .._impl import (
|
|
|
57
59
|
scout_compute_resolved_api_MeanSeriesNode as MeanSeriesNode,
|
|
58
60
|
scout_compute_resolved_api_MinMaxThresholdRangesNode as MinMaxThresholdRangesNode,
|
|
59
61
|
scout_compute_resolved_api_MinSeriesNode as MinSeriesNode,
|
|
62
|
+
scout_compute_resolved_api_NominalStorageLocator as NominalStorageLocator,
|
|
60
63
|
scout_compute_resolved_api_NotRangesNode as NotRangesNode,
|
|
61
64
|
scout_compute_resolved_api_NumericFilterTransformationSeriesNode as NumericFilterTransformationSeriesNode,
|
|
62
65
|
scout_compute_resolved_api_NumericHistogramBucketStrategy as NumericHistogramBucketStrategy,
|
|
@@ -86,6 +89,7 @@ from .._impl import (
|
|
|
86
89
|
scout_compute_resolved_api_ResampleInterpolationConfigurationVisitor as ResampleInterpolationConfigurationVisitor,
|
|
87
90
|
scout_compute_resolved_api_ResolvedNode as ResolvedNode,
|
|
88
91
|
scout_compute_resolved_api_ResolvedNodeVisitor as ResolvedNodeVisitor,
|
|
92
|
+
scout_compute_resolved_api_ResolvedSeries as ResolvedSeries,
|
|
89
93
|
scout_compute_resolved_api_RollingOperationSeriesNode as RollingOperationSeriesNode,
|
|
90
94
|
scout_compute_resolved_api_ScaleSeriesNode as ScaleSeriesNode,
|
|
91
95
|
scout_compute_resolved_api_Scatter3dNode as Scatter3dNode,
|
|
@@ -100,6 +104,8 @@ from .._impl import (
|
|
|
100
104
|
scout_compute_resolved_api_SignalFilterSeriesNode as SignalFilterSeriesNode,
|
|
101
105
|
scout_compute_resolved_api_StabilityDetectionRangesNode as StabilityDetectionRangesNode,
|
|
102
106
|
scout_compute_resolved_api_StaleRangesNode as StaleRangesNode,
|
|
107
|
+
scout_compute_resolved_api_StorageLocator as StorageLocator,
|
|
108
|
+
scout_compute_resolved_api_StorageLocatorVisitor as StorageLocatorVisitor,
|
|
103
109
|
scout_compute_resolved_api_SumSeriesNode as SumSeriesNode,
|
|
104
110
|
scout_compute_resolved_api_SummarizeCartesian3dNode as SummarizeCartesian3dNode,
|
|
105
111
|
scout_compute_resolved_api_SummarizeCartesianNode as SummarizeCartesianNode,
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
+
scout_favorites_api_DeprecatedListFavoritesRequest as DeprecatedListFavoritesRequest,
|
|
3
4
|
scout_favorites_api_FavoriteResource as FavoriteResource,
|
|
4
5
|
scout_favorites_api_FavoriteResourceVisitor as FavoriteResourceVisitor,
|
|
5
|
-
|
|
6
|
-
scout_favorites_api_ListFavoritesResponse as ListFavoritesResponse,
|
|
6
|
+
scout_favorites_api_FavoritesListResponse as FavoritesListResponse,
|
|
7
7
|
scout_favorites_api_ResourceType as ResourceType,
|
|
8
|
-
|
|
9
|
-
scout_favorites_api_UpdateFavoritesResponse as UpdateFavoritesResponse,
|
|
8
|
+
scout_favorites_api_SetFavoritesListRequest as SetFavoritesListRequest,
|
|
10
9
|
)
|
|
11
10
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=3l_Pjp4Rn52JPqegC9mZRk_ty7InDur29GePdW4dfN0,1968
|
|
2
|
+
nominal_api/_impl.py,sha256=eT3caYd6JmdjHRy-APRhKXJ5QY4CSWQsSbeij9Y_BSY,2949322
|
|
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_ids/__init__.py,sha256=CAtt44XgNZEEUDv-BbEbYtuxQ8y1wqSZU-STjBYdZv8,80
|
|
@@ -32,7 +32,7 @@ nominal_api/scout_comparisonrun_api/__init__.py,sha256=1LCXQe64tDqqeMQixW8PI-R_e
|
|
|
32
32
|
nominal_api/scout_compute_api/__init__.py,sha256=4ilDtqIuPOlR_TvXEj6wEQPa2yJP92TDL7mQxNZKU3U,18066
|
|
33
33
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=RggSfc6C1VR1-kNXPWybpfw3hZbkQ1gvxEisFZCHdnM,3732
|
|
34
34
|
nominal_api/scout_compute_representation_api/__init__.py,sha256=FezODo7sI8m6tDhPPK_gZX1qXImi4O3TUprDoNUuWpk,1672
|
|
35
|
-
nominal_api/scout_compute_resolved_api/__init__.py,sha256=
|
|
35
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=7XGuAyFdGFKQcq4xmmFgEXBuxfvdxjR3J7LSXdGpfXk,9533
|
|
36
36
|
nominal_api/scout_dataexport_api/__init__.py,sha256=pWRQdQJOObD0jITRYLw3AxeDJSrJQqAdFZACxULqA4o,1487
|
|
37
37
|
nominal_api/scout_datareview_api/__init__.py,sha256=ETAl7VWaxOk8g9uwfsKo573-3qfDNbGQ1_QBQaDPRxk,8405
|
|
38
38
|
nominal_api/scout_datasource/__init__.py,sha256=1NWMrEx-JOEb4Pmd2oAqcpSmQB3g3lxgxFenWEtcF2M,101
|
|
@@ -40,7 +40,7 @@ nominal_api/scout_datasource_connection/__init__.py,sha256=he1CCSqMBwRWnzovWCeYP
|
|
|
40
40
|
nominal_api/scout_datasource_connection_api/__init__.py,sha256=uZDDTsvvsr_7LfkHwEIfPnV9MsHoxmoTL95e37bZ_nE,4984
|
|
41
41
|
nominal_api/scout_datasource_connection_api_influx/__init__.py,sha256=PeUZYnCR7Iq92bRuygtWly-HaZ-G1MfqShxJmamiTWA,99
|
|
42
42
|
nominal_api/scout_favorites/__init__.py,sha256=qiOvaWVVl3O7tXZIq_NrCWFcMx-Q-H5sA_NpIc4TFVU,98
|
|
43
|
-
nominal_api/scout_favorites_api/__init__.py,sha256=
|
|
43
|
+
nominal_api/scout_favorites_api/__init__.py,sha256=gwJVcakw17C6U_dFSbHDVw1AMvz6AyiXXD374rHdt0Q,470
|
|
44
44
|
nominal_api/scout_integrations_api/__init__.py,sha256=8iXeDLEbgMYEZz0dEZsvUj7v9JkuaaTdxkzS-ld8E0U,1432
|
|
45
45
|
nominal_api/scout_internal_search_api/__init__.py,sha256=CF2YYZXkl95YkEgCbhqXSdAQ4ayPDDOJiCcyoFKOaA8,520
|
|
46
46
|
nominal_api/scout_jobs_api/__init__.py,sha256=_2ETRUShk1pestGAKzHwc69S-ililQRD4Y9JLD5qqZ4,146
|
|
@@ -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.
|
|
76
|
-
nominal_api-0.
|
|
77
|
-
nominal_api-0.
|
|
78
|
-
nominal_api-0.
|
|
75
|
+
nominal_api-0.616.0.dist-info/METADATA,sha256=FKGErdKdHzxVM0k4KCYlvWXfh3V6xZzm6AxJLA0okTA,199
|
|
76
|
+
nominal_api-0.616.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
77
|
+
nominal_api-0.616.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
78
|
+
nominal_api-0.616.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|