nominal-api 0.557.0__py3-none-any.whl → 0.559.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 +3 -1
- nominal_api/_impl.py +346 -0
- nominal_api/scout_favorites/__init__.py +5 -0
- nominal_api/scout_favorites_api/__init__.py +11 -0
- {nominal_api-0.557.0.dist-info → nominal_api-0.559.0.dist-info}/METADATA +1 -1
- {nominal_api-0.557.0.dist-info → nominal_api-0.559.0.dist-info}/RECORD +8 -6
- {nominal_api-0.557.0.dist-info → nominal_api-0.559.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.557.0.dist-info → nominal_api-0.559.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
|
@@ -36,6 +36,8 @@ __all__ = [
|
|
|
36
36
|
'scout_datasource_connection',
|
|
37
37
|
'scout_datasource_connection_api',
|
|
38
38
|
'scout_datasource_connection_api_influx',
|
|
39
|
+
'scout_favorites',
|
|
40
|
+
'scout_favorites_api',
|
|
39
41
|
'scout_integrations_api',
|
|
40
42
|
'scout_internal_search_api',
|
|
41
43
|
'scout_jobs_api',
|
|
@@ -67,5 +69,5 @@ __all__ = [
|
|
|
67
69
|
|
|
68
70
|
__conjure_generator_version__ = "4.9.0"
|
|
69
71
|
|
|
70
|
-
__version__ = "0.
|
|
72
|
+
__version__ = "0.559.0"
|
|
71
73
|
|
nominal_api/_impl.py
CHANGED
|
@@ -37742,6 +37742,10 @@ class scout_compute_api_UnaryArithmeticOperation(ConjureEnumType):
|
|
|
37742
37742
|
'''ASIN'''
|
|
37743
37743
|
ACOS = 'ACOS'
|
|
37744
37744
|
'''ACOS'''
|
|
37745
|
+
LOG = 'LOG'
|
|
37746
|
+
'''LOG'''
|
|
37747
|
+
LN = 'LN'
|
|
37748
|
+
'''LN'''
|
|
37745
37749
|
UNKNOWN = 'UNKNOWN'
|
|
37746
37750
|
'''UNKNOWN'''
|
|
37747
37751
|
|
|
@@ -54092,6 +54096,348 @@ scout_datasource_connection_api_VisualCrossingType.__qualname__ = "VisualCrossin
|
|
|
54092
54096
|
scout_datasource_connection_api_VisualCrossingType.__module__ = "nominal_api.scout_datasource_connection_api"
|
|
54093
54097
|
|
|
54094
54098
|
|
|
54099
|
+
class scout_favorites_FavoritesService(Service):
|
|
54100
|
+
"""
|
|
54101
|
+
Creating favorites allows users to pin specific resources (i.e. assets, workbooks, etc.) as favorites for
|
|
54102
|
+
quick access within search pages throughout the application for themselves.
|
|
54103
|
+
"""
|
|
54104
|
+
|
|
54105
|
+
def update_favorites(self, auth_header: str, request: "scout_favorites_api_UpdateFavoritesRequest") -> "scout_favorites_api_UpdateFavoritesResponse":
|
|
54106
|
+
"""
|
|
54107
|
+
Update the user's favorited resources.
|
|
54108
|
+
"""
|
|
54109
|
+
|
|
54110
|
+
_headers: Dict[str, Any] = {
|
|
54111
|
+
'Accept': 'application/json',
|
|
54112
|
+
'Content-Type': 'application/json',
|
|
54113
|
+
'Authorization': auth_header,
|
|
54114
|
+
}
|
|
54115
|
+
|
|
54116
|
+
_params: Dict[str, Any] = {
|
|
54117
|
+
}
|
|
54118
|
+
|
|
54119
|
+
_path_params: Dict[str, Any] = {
|
|
54120
|
+
}
|
|
54121
|
+
|
|
54122
|
+
_json: Any = ConjureEncoder().default(request)
|
|
54123
|
+
|
|
54124
|
+
_path = '/scout/v2/favorites'
|
|
54125
|
+
_path = _path.format(**_path_params)
|
|
54126
|
+
|
|
54127
|
+
_response: Response = self._request(
|
|
54128
|
+
'PUT',
|
|
54129
|
+
self._uri + _path,
|
|
54130
|
+
params=_params,
|
|
54131
|
+
headers=_headers,
|
|
54132
|
+
json=_json)
|
|
54133
|
+
|
|
54134
|
+
_decoder = ConjureDecoder()
|
|
54135
|
+
return _decoder.decode(_response.json(), scout_favorites_api_UpdateFavoritesResponse, self._return_none_for_unknown_union_types)
|
|
54136
|
+
|
|
54137
|
+
def list_favorites(self, auth_header: str, request: "scout_favorites_api_ListFavoritesRequest") -> "scout_favorites_api_ListFavoritesResponse":
|
|
54138
|
+
"""
|
|
54139
|
+
Retrieves all the user's favorites with filtering options on the resource types to include.
|
|
54140
|
+
"""
|
|
54141
|
+
|
|
54142
|
+
_headers: Dict[str, Any] = {
|
|
54143
|
+
'Accept': 'application/json',
|
|
54144
|
+
'Content-Type': 'application/json',
|
|
54145
|
+
'Authorization': auth_header,
|
|
54146
|
+
}
|
|
54147
|
+
|
|
54148
|
+
_params: Dict[str, Any] = {
|
|
54149
|
+
}
|
|
54150
|
+
|
|
54151
|
+
_path_params: Dict[str, Any] = {
|
|
54152
|
+
}
|
|
54153
|
+
|
|
54154
|
+
_json: Any = ConjureEncoder().default(request)
|
|
54155
|
+
|
|
54156
|
+
_path = '/scout/v2/favorites/list'
|
|
54157
|
+
_path = _path.format(**_path_params)
|
|
54158
|
+
|
|
54159
|
+
_response: Response = self._request(
|
|
54160
|
+
'POST',
|
|
54161
|
+
self._uri + _path,
|
|
54162
|
+
params=_params,
|
|
54163
|
+
headers=_headers,
|
|
54164
|
+
json=_json)
|
|
54165
|
+
|
|
54166
|
+
_decoder = ConjureDecoder()
|
|
54167
|
+
return _decoder.decode(_response.json(), scout_favorites_api_ListFavoritesResponse, self._return_none_for_unknown_union_types)
|
|
54168
|
+
|
|
54169
|
+
|
|
54170
|
+
scout_favorites_FavoritesService.__name__ = "FavoritesService"
|
|
54171
|
+
scout_favorites_FavoritesService.__qualname__ = "FavoritesService"
|
|
54172
|
+
scout_favorites_FavoritesService.__module__ = "nominal_api.scout_favorites"
|
|
54173
|
+
|
|
54174
|
+
|
|
54175
|
+
class scout_favorites_api_FavoriteResource(ConjureUnionType):
|
|
54176
|
+
_asset: Optional[str] = None
|
|
54177
|
+
_run: Optional[str] = None
|
|
54178
|
+
_notebook: Optional[str] = None
|
|
54179
|
+
_notebook_template: Optional[str] = None
|
|
54180
|
+
_checklist: Optional[str] = None
|
|
54181
|
+
|
|
54182
|
+
@builtins.classmethod
|
|
54183
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
54184
|
+
return {
|
|
54185
|
+
'asset': ConjureFieldDefinition('asset', scout_rids_api_AssetRid),
|
|
54186
|
+
'run': ConjureFieldDefinition('run', scout_run_api_RunRid),
|
|
54187
|
+
'notebook': ConjureFieldDefinition('notebook', scout_rids_api_NotebookRid),
|
|
54188
|
+
'notebook_template': ConjureFieldDefinition('notebookTemplate', scout_rids_api_TemplateRid),
|
|
54189
|
+
'checklist': ConjureFieldDefinition('checklist', scout_rids_api_ChecklistRid)
|
|
54190
|
+
}
|
|
54191
|
+
|
|
54192
|
+
def __init__(
|
|
54193
|
+
self,
|
|
54194
|
+
asset: Optional[str] = None,
|
|
54195
|
+
run: Optional[str] = None,
|
|
54196
|
+
notebook: Optional[str] = None,
|
|
54197
|
+
notebook_template: Optional[str] = None,
|
|
54198
|
+
checklist: Optional[str] = None,
|
|
54199
|
+
type_of_union: Optional[str] = None
|
|
54200
|
+
) -> None:
|
|
54201
|
+
if type_of_union is None:
|
|
54202
|
+
if (asset is not None) + (run is not None) + (notebook is not None) + (notebook_template is not None) + (checklist is not None) != 1:
|
|
54203
|
+
raise ValueError('a union must contain a single member')
|
|
54204
|
+
|
|
54205
|
+
if asset is not None:
|
|
54206
|
+
self._asset = asset
|
|
54207
|
+
self._type = 'asset'
|
|
54208
|
+
if run is not None:
|
|
54209
|
+
self._run = run
|
|
54210
|
+
self._type = 'run'
|
|
54211
|
+
if notebook is not None:
|
|
54212
|
+
self._notebook = notebook
|
|
54213
|
+
self._type = 'notebook'
|
|
54214
|
+
if notebook_template is not None:
|
|
54215
|
+
self._notebook_template = notebook_template
|
|
54216
|
+
self._type = 'notebookTemplate'
|
|
54217
|
+
if checklist is not None:
|
|
54218
|
+
self._checklist = checklist
|
|
54219
|
+
self._type = 'checklist'
|
|
54220
|
+
|
|
54221
|
+
elif type_of_union == 'asset':
|
|
54222
|
+
if asset is None:
|
|
54223
|
+
raise ValueError('a union value must not be None')
|
|
54224
|
+
self._asset = asset
|
|
54225
|
+
self._type = 'asset'
|
|
54226
|
+
elif type_of_union == 'run':
|
|
54227
|
+
if run is None:
|
|
54228
|
+
raise ValueError('a union value must not be None')
|
|
54229
|
+
self._run = run
|
|
54230
|
+
self._type = 'run'
|
|
54231
|
+
elif type_of_union == 'notebook':
|
|
54232
|
+
if notebook is None:
|
|
54233
|
+
raise ValueError('a union value must not be None')
|
|
54234
|
+
self._notebook = notebook
|
|
54235
|
+
self._type = 'notebook'
|
|
54236
|
+
elif type_of_union == 'notebookTemplate':
|
|
54237
|
+
if notebook_template is None:
|
|
54238
|
+
raise ValueError('a union value must not be None')
|
|
54239
|
+
self._notebook_template = notebook_template
|
|
54240
|
+
self._type = 'notebookTemplate'
|
|
54241
|
+
elif type_of_union == 'checklist':
|
|
54242
|
+
if checklist is None:
|
|
54243
|
+
raise ValueError('a union value must not be None')
|
|
54244
|
+
self._checklist = checklist
|
|
54245
|
+
self._type = 'checklist'
|
|
54246
|
+
|
|
54247
|
+
@builtins.property
|
|
54248
|
+
def asset(self) -> Optional[str]:
|
|
54249
|
+
return self._asset
|
|
54250
|
+
|
|
54251
|
+
@builtins.property
|
|
54252
|
+
def run(self) -> Optional[str]:
|
|
54253
|
+
return self._run
|
|
54254
|
+
|
|
54255
|
+
@builtins.property
|
|
54256
|
+
def notebook(self) -> Optional[str]:
|
|
54257
|
+
return self._notebook
|
|
54258
|
+
|
|
54259
|
+
@builtins.property
|
|
54260
|
+
def notebook_template(self) -> Optional[str]:
|
|
54261
|
+
return self._notebook_template
|
|
54262
|
+
|
|
54263
|
+
@builtins.property
|
|
54264
|
+
def checklist(self) -> Optional[str]:
|
|
54265
|
+
return self._checklist
|
|
54266
|
+
|
|
54267
|
+
def accept(self, visitor) -> Any:
|
|
54268
|
+
if not isinstance(visitor, scout_favorites_api_FavoriteResourceVisitor):
|
|
54269
|
+
raise ValueError('{} is not an instance of scout_favorites_api_FavoriteResourceVisitor'.format(visitor.__class__.__name__))
|
|
54270
|
+
if self._type == 'asset' and self.asset is not None:
|
|
54271
|
+
return visitor._asset(self.asset)
|
|
54272
|
+
if self._type == 'run' and self.run is not None:
|
|
54273
|
+
return visitor._run(self.run)
|
|
54274
|
+
if self._type == 'notebook' and self.notebook is not None:
|
|
54275
|
+
return visitor._notebook(self.notebook)
|
|
54276
|
+
if self._type == 'notebookTemplate' and self.notebook_template is not None:
|
|
54277
|
+
return visitor._notebook_template(self.notebook_template)
|
|
54278
|
+
if self._type == 'checklist' and self.checklist is not None:
|
|
54279
|
+
return visitor._checklist(self.checklist)
|
|
54280
|
+
|
|
54281
|
+
|
|
54282
|
+
scout_favorites_api_FavoriteResource.__name__ = "FavoriteResource"
|
|
54283
|
+
scout_favorites_api_FavoriteResource.__qualname__ = "FavoriteResource"
|
|
54284
|
+
scout_favorites_api_FavoriteResource.__module__ = "nominal_api.scout_favorites_api"
|
|
54285
|
+
|
|
54286
|
+
|
|
54287
|
+
class scout_favorites_api_FavoriteResourceVisitor:
|
|
54288
|
+
|
|
54289
|
+
@abstractmethod
|
|
54290
|
+
def _asset(self, asset: str) -> Any:
|
|
54291
|
+
pass
|
|
54292
|
+
|
|
54293
|
+
@abstractmethod
|
|
54294
|
+
def _run(self, run: str) -> Any:
|
|
54295
|
+
pass
|
|
54296
|
+
|
|
54297
|
+
@abstractmethod
|
|
54298
|
+
def _notebook(self, notebook: str) -> Any:
|
|
54299
|
+
pass
|
|
54300
|
+
|
|
54301
|
+
@abstractmethod
|
|
54302
|
+
def _notebook_template(self, notebook_template: str) -> Any:
|
|
54303
|
+
pass
|
|
54304
|
+
|
|
54305
|
+
@abstractmethod
|
|
54306
|
+
def _checklist(self, checklist: str) -> Any:
|
|
54307
|
+
pass
|
|
54308
|
+
|
|
54309
|
+
|
|
54310
|
+
scout_favorites_api_FavoriteResourceVisitor.__name__ = "FavoriteResourceVisitor"
|
|
54311
|
+
scout_favorites_api_FavoriteResourceVisitor.__qualname__ = "FavoriteResourceVisitor"
|
|
54312
|
+
scout_favorites_api_FavoriteResourceVisitor.__module__ = "nominal_api.scout_favorites_api"
|
|
54313
|
+
|
|
54314
|
+
|
|
54315
|
+
class scout_favorites_api_ListFavoritesRequest(ConjureBeanType):
|
|
54316
|
+
|
|
54317
|
+
@builtins.classmethod
|
|
54318
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
54319
|
+
return {
|
|
54320
|
+
'resource_types': ConjureFieldDefinition('resourceTypes', OptionalTypeWrapper[List[scout_favorites_api_ResourceType]])
|
|
54321
|
+
}
|
|
54322
|
+
|
|
54323
|
+
__slots__: List[str] = ['_resource_types']
|
|
54324
|
+
|
|
54325
|
+
def __init__(self, resource_types: Optional[List["scout_favorites_api_ResourceType"]] = None) -> None:
|
|
54326
|
+
self._resource_types = resource_types
|
|
54327
|
+
|
|
54328
|
+
@builtins.property
|
|
54329
|
+
def resource_types(self) -> Optional[List["scout_favorites_api_ResourceType"]]:
|
|
54330
|
+
return self._resource_types
|
|
54331
|
+
|
|
54332
|
+
|
|
54333
|
+
scout_favorites_api_ListFavoritesRequest.__name__ = "ListFavoritesRequest"
|
|
54334
|
+
scout_favorites_api_ListFavoritesRequest.__qualname__ = "ListFavoritesRequest"
|
|
54335
|
+
scout_favorites_api_ListFavoritesRequest.__module__ = "nominal_api.scout_favorites_api"
|
|
54336
|
+
|
|
54337
|
+
|
|
54338
|
+
class scout_favorites_api_ListFavoritesResponse(ConjureBeanType):
|
|
54339
|
+
|
|
54340
|
+
@builtins.classmethod
|
|
54341
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
54342
|
+
return {
|
|
54343
|
+
'favorites': ConjureFieldDefinition('favorites', List[scout_favorites_api_FavoriteResource])
|
|
54344
|
+
}
|
|
54345
|
+
|
|
54346
|
+
__slots__: List[str] = ['_favorites']
|
|
54347
|
+
|
|
54348
|
+
def __init__(self, favorites: List["scout_favorites_api_FavoriteResource"]) -> None:
|
|
54349
|
+
self._favorites = favorites
|
|
54350
|
+
|
|
54351
|
+
@builtins.property
|
|
54352
|
+
def favorites(self) -> List["scout_favorites_api_FavoriteResource"]:
|
|
54353
|
+
"""
|
|
54354
|
+
The user's favorite resources. Ordered the same as the resources provided when updating favorites.
|
|
54355
|
+
"""
|
|
54356
|
+
return self._favorites
|
|
54357
|
+
|
|
54358
|
+
|
|
54359
|
+
scout_favorites_api_ListFavoritesResponse.__name__ = "ListFavoritesResponse"
|
|
54360
|
+
scout_favorites_api_ListFavoritesResponse.__qualname__ = "ListFavoritesResponse"
|
|
54361
|
+
scout_favorites_api_ListFavoritesResponse.__module__ = "nominal_api.scout_favorites_api"
|
|
54362
|
+
|
|
54363
|
+
|
|
54364
|
+
class scout_favorites_api_ResourceType(ConjureEnumType):
|
|
54365
|
+
|
|
54366
|
+
ASSET = 'ASSET'
|
|
54367
|
+
'''ASSET'''
|
|
54368
|
+
RUN = 'RUN'
|
|
54369
|
+
'''RUN'''
|
|
54370
|
+
NOTEBOOK = 'NOTEBOOK'
|
|
54371
|
+
'''NOTEBOOK'''
|
|
54372
|
+
NOTEBOOK_TEMPLATE = 'NOTEBOOK_TEMPLATE'
|
|
54373
|
+
'''NOTEBOOK_TEMPLATE'''
|
|
54374
|
+
CHECKLIST = 'CHECKLIST'
|
|
54375
|
+
'''CHECKLIST'''
|
|
54376
|
+
UNKNOWN = 'UNKNOWN'
|
|
54377
|
+
'''UNKNOWN'''
|
|
54378
|
+
|
|
54379
|
+
def __reduce_ex__(self, proto):
|
|
54380
|
+
return self.__class__, (self.name,)
|
|
54381
|
+
|
|
54382
|
+
|
|
54383
|
+
scout_favorites_api_ResourceType.__name__ = "ResourceType"
|
|
54384
|
+
scout_favorites_api_ResourceType.__qualname__ = "ResourceType"
|
|
54385
|
+
scout_favorites_api_ResourceType.__module__ = "nominal_api.scout_favorites_api"
|
|
54386
|
+
|
|
54387
|
+
|
|
54388
|
+
class scout_favorites_api_UpdateFavoritesRequest(ConjureBeanType):
|
|
54389
|
+
|
|
54390
|
+
@builtins.classmethod
|
|
54391
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
54392
|
+
return {
|
|
54393
|
+
'resources': ConjureFieldDefinition('resources', List[scout_favorites_api_FavoriteResource])
|
|
54394
|
+
}
|
|
54395
|
+
|
|
54396
|
+
__slots__: List[str] = ['_resources']
|
|
54397
|
+
|
|
54398
|
+
def __init__(self, resources: List["scout_favorites_api_FavoriteResource"]) -> None:
|
|
54399
|
+
self._resources = resources
|
|
54400
|
+
|
|
54401
|
+
@builtins.property
|
|
54402
|
+
def resources(self) -> List["scout_favorites_api_FavoriteResource"]:
|
|
54403
|
+
"""
|
|
54404
|
+
The resources to set as the user's favorites. Note that the provided list will overwrite
|
|
54405
|
+
all the user's previous favorites.
|
|
54406
|
+
"""
|
|
54407
|
+
return self._resources
|
|
54408
|
+
|
|
54409
|
+
|
|
54410
|
+
scout_favorites_api_UpdateFavoritesRequest.__name__ = "UpdateFavoritesRequest"
|
|
54411
|
+
scout_favorites_api_UpdateFavoritesRequest.__qualname__ = "UpdateFavoritesRequest"
|
|
54412
|
+
scout_favorites_api_UpdateFavoritesRequest.__module__ = "nominal_api.scout_favorites_api"
|
|
54413
|
+
|
|
54414
|
+
|
|
54415
|
+
class scout_favorites_api_UpdateFavoritesResponse(ConjureBeanType):
|
|
54416
|
+
|
|
54417
|
+
@builtins.classmethod
|
|
54418
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
54419
|
+
return {
|
|
54420
|
+
'favorites': ConjureFieldDefinition('favorites', List[scout_favorites_api_FavoriteResource])
|
|
54421
|
+
}
|
|
54422
|
+
|
|
54423
|
+
__slots__: List[str] = ['_favorites']
|
|
54424
|
+
|
|
54425
|
+
def __init__(self, favorites: List["scout_favorites_api_FavoriteResource"]) -> None:
|
|
54426
|
+
self._favorites = favorites
|
|
54427
|
+
|
|
54428
|
+
@builtins.property
|
|
54429
|
+
def favorites(self) -> List["scout_favorites_api_FavoriteResource"]:
|
|
54430
|
+
"""
|
|
54431
|
+
The user's updated favorite resources. Maintains the same ordering as the resources in the request.
|
|
54432
|
+
"""
|
|
54433
|
+
return self._favorites
|
|
54434
|
+
|
|
54435
|
+
|
|
54436
|
+
scout_favorites_api_UpdateFavoritesResponse.__name__ = "UpdateFavoritesResponse"
|
|
54437
|
+
scout_favorites_api_UpdateFavoritesResponse.__qualname__ = "UpdateFavoritesResponse"
|
|
54438
|
+
scout_favorites_api_UpdateFavoritesResponse.__module__ = "nominal_api.scout_favorites_api"
|
|
54439
|
+
|
|
54440
|
+
|
|
54095
54441
|
class scout_integrations_api_CreateIntegrationDetails(ConjureUnionType):
|
|
54096
54442
|
_create_simple_webhook_details: Optional["scout_integrations_api_CreateSimpleWebhookDetails"] = None
|
|
54097
54443
|
_create_opsgenie_integration_details: Optional["scout_integrations_api_CreateOpsgenieIntegrationDetails"] = None
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
from .._impl import (
|
|
3
|
+
scout_favorites_api_FavoriteResource as FavoriteResource,
|
|
4
|
+
scout_favorites_api_FavoriteResourceVisitor as FavoriteResourceVisitor,
|
|
5
|
+
scout_favorites_api_ListFavoritesRequest as ListFavoritesRequest,
|
|
6
|
+
scout_favorites_api_ListFavoritesResponse as ListFavoritesResponse,
|
|
7
|
+
scout_favorites_api_ResourceType as ResourceType,
|
|
8
|
+
scout_favorites_api_UpdateFavoritesRequest as UpdateFavoritesRequest,
|
|
9
|
+
scout_favorites_api_UpdateFavoritesResponse as UpdateFavoritesResponse,
|
|
10
|
+
)
|
|
11
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=QRBRUPsMY611D-_uobEmrsgYle4quMTRUI8YtDH5jrc,1791
|
|
2
|
+
nominal_api/_impl.py,sha256=N_dDDIUzXRIpzEwrt333xdAVUzFoXHRrsjo9KNEye1g,2744409
|
|
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
|
|
@@ -37,6 +37,8 @@ nominal_api/scout_datasource/__init__.py,sha256=1NWMrEx-JOEb4Pmd2oAqcpSmQB3g3lxg
|
|
|
37
37
|
nominal_api/scout_datasource_connection/__init__.py,sha256=he1CCSqMBwRWnzovWCeYP8Q4m7HwAR2Ou-AeQCAhEqQ,208
|
|
38
38
|
nominal_api/scout_datasource_connection_api/__init__.py,sha256=PHfkx3vDxibar_-lLDC_nu6Hw-Hl4giMwp7U4fYLJuQ,5056
|
|
39
39
|
nominal_api/scout_datasource_connection_api_influx/__init__.py,sha256=PeUZYnCR7Iq92bRuygtWly-HaZ-G1MfqShxJmamiTWA,99
|
|
40
|
+
nominal_api/scout_favorites/__init__.py,sha256=qiOvaWVVl3O7tXZIq_NrCWFcMx-Q-H5sA_NpIc4TFVU,98
|
|
41
|
+
nominal_api/scout_favorites_api/__init__.py,sha256=mS8Qqaf8Cwl_wTvllegV4ttIWL4uot2VmsK57AbSXk0,524
|
|
40
42
|
nominal_api/scout_integrations_api/__init__.py,sha256=8iXeDLEbgMYEZz0dEZsvUj7v9JkuaaTdxkzS-ld8E0U,1432
|
|
41
43
|
nominal_api/scout_internal_search_api/__init__.py,sha256=CF2YYZXkl95YkEgCbhqXSdAQ4ayPDDOJiCcyoFKOaA8,520
|
|
42
44
|
nominal_api/scout_jobs_api/__init__.py,sha256=nUQGFB_81AimGm1X0atHV4XXjd5WpY6d9SOCrj_BgUQ,85
|
|
@@ -64,7 +66,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=KuHLafDLeHzOTl0B6j7T
|
|
|
64
66
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
65
67
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
66
68
|
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.
|
|
69
|
+
nominal_api-0.559.0.dist-info/METADATA,sha256=YvK9Il-Pqkwmc2aE1PuEW6R57Cmjdmuipmfh_f89y44,199
|
|
70
|
+
nominal_api-0.559.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
71
|
+
nominal_api-0.559.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
72
|
+
nominal_api-0.559.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|