nominal-api 0.568.0__py3-none-any.whl → 0.569.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 CHANGED
@@ -3,10 +3,10 @@ __all__ = [
3
3
  'api',
4
4
  'api_rids',
5
5
  'attachments_api',
6
- 'authentication',
7
6
  'authentication_api',
8
7
  'authorization',
9
8
  'comments_api',
9
+ 'connect_download',
10
10
  'datasource',
11
11
  'datasource_api',
12
12
  'datasource_logset',
@@ -54,6 +54,7 @@ __all__ = [
54
54
  'scout_video_api',
55
55
  'scout_workbookcommon_api',
56
56
  'secrets_api',
57
+ 'security_api_workspace',
57
58
  'storage_datasource_api',
58
59
  'storage_series_api',
59
60
  'storage_writer_api',
@@ -69,5 +70,5 @@ __all__ = [
69
70
 
70
71
  __conjure_generator_version__ = "4.9.0"
71
72
 
72
- __version__ = "0.568.0"
73
+ __version__ = "0.569.0"
73
74
 
nominal_api/_impl.py CHANGED
@@ -450,6 +450,9 @@ api_SerializableError.__module__ = "nominal_api.api"
450
450
 
451
451
 
452
452
  class api_SeriesDataType(ConjureEnumType):
453
+ """
454
+ The data types that are available for querying.
455
+ """
453
456
 
454
457
  DOUBLE = 'DOUBLE'
455
458
  '''DOUBLE'''
@@ -457,6 +460,8 @@ class api_SeriesDataType(ConjureEnumType):
457
460
  '''STRING'''
458
461
  LOG = 'LOG'
459
462
  '''LOG'''
463
+ INT = 'INT'
464
+ '''INT'''
460
465
  UNKNOWN = 'UNKNOWN'
461
466
  '''UNKNOWN'''
462
467
 
@@ -1203,199 +1208,6 @@ attachments_api_UpdateAttachmentRequest.__qualname__ = "UpdateAttachmentRequest"
1203
1208
  attachments_api_UpdateAttachmentRequest.__module__ = "nominal_api.attachments_api"
1204
1209
 
1205
1210
 
1206
- class authentication_AddToOrganizationRequest(ConjureBeanType):
1207
-
1208
- @builtins.classmethod
1209
- def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
1210
- return {
1211
- 'user_uuid': ConjureFieldDefinition('userUuid', str),
1212
- 'org_uuid': ConjureFieldDefinition('orgUuid', str)
1213
- }
1214
-
1215
- __slots__: List[str] = ['_user_uuid', '_org_uuid']
1216
-
1217
- def __init__(self, org_uuid: str, user_uuid: str) -> None:
1218
- self._user_uuid = user_uuid
1219
- self._org_uuid = org_uuid
1220
-
1221
- @builtins.property
1222
- def user_uuid(self) -> str:
1223
- return self._user_uuid
1224
-
1225
- @builtins.property
1226
- def org_uuid(self) -> str:
1227
- return self._org_uuid
1228
-
1229
-
1230
- authentication_AddToOrganizationRequest.__name__ = "AddToOrganizationRequest"
1231
- authentication_AddToOrganizationRequest.__qualname__ = "AddToOrganizationRequest"
1232
- authentication_AddToOrganizationRequest.__module__ = "nominal_api.authentication"
1233
-
1234
-
1235
- class authentication_AuthenticationService(Service):
1236
- """
1237
- An internal-use-only service for managing users and org-memberships.
1238
- """
1239
-
1240
- def create_user(self, auth_header: str, request: "authentication_CreateUserRequest") -> "authentication_User":
1241
- """
1242
- Only admins can create users.
1243
- Will throw if a user with the same email already exists.
1244
- """
1245
-
1246
- _headers: Dict[str, Any] = {
1247
- 'Accept': 'application/json',
1248
- 'Content-Type': 'application/json',
1249
- 'Authorization': auth_header,
1250
- }
1251
-
1252
- _params: Dict[str, Any] = {
1253
- }
1254
-
1255
- _path_params: Dict[str, Any] = {
1256
- }
1257
-
1258
- _json: Any = ConjureEncoder().default(request)
1259
-
1260
- _path = '/authentication/v1/users'
1261
- _path = _path.format(**_path_params)
1262
-
1263
- _response: Response = self._request(
1264
- 'POST',
1265
- self._uri + _path,
1266
- params=_params,
1267
- headers=_headers,
1268
- json=_json)
1269
-
1270
- _decoder = ConjureDecoder()
1271
- return _decoder.decode(_response.json(), authentication_User, self._return_none_for_unknown_union_types)
1272
-
1273
- def add_to_organization(self, auth_header: str, request: "authentication_AddToOrganizationRequest") -> None:
1274
- """
1275
- Only admins can add users to organizations.
1276
- Will throw if the user is already in the organization.
1277
- """
1278
-
1279
- _headers: Dict[str, Any] = {
1280
- 'Accept': 'application/json',
1281
- 'Content-Type': 'application/json',
1282
- 'Authorization': auth_header,
1283
- }
1284
-
1285
- _params: Dict[str, Any] = {
1286
- }
1287
-
1288
- _path_params: Dict[str, Any] = {
1289
- }
1290
-
1291
- _json: Any = ConjureEncoder().default(request)
1292
-
1293
- _path = '/authentication/v1/users/add-to-organization'
1294
- _path = _path.format(**_path_params)
1295
-
1296
- _response: Response = self._request(
1297
- 'POST',
1298
- self._uri + _path,
1299
- params=_params,
1300
- headers=_headers,
1301
- json=_json)
1302
-
1303
- return
1304
-
1305
-
1306
- authentication_AuthenticationService.__name__ = "AuthenticationService"
1307
- authentication_AuthenticationService.__qualname__ = "AuthenticationService"
1308
- authentication_AuthenticationService.__module__ = "nominal_api.authentication"
1309
-
1310
-
1311
- class authentication_CreateUserRequest(ConjureBeanType):
1312
-
1313
- @builtins.classmethod
1314
- def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
1315
- return {
1316
- 'display_name': ConjureFieldDefinition('displayName', str),
1317
- 'email': ConjureFieldDefinition('email', str),
1318
- 'org_uuid': ConjureFieldDefinition('orgUuid', str)
1319
- }
1320
-
1321
- __slots__: List[str] = ['_display_name', '_email', '_org_uuid']
1322
-
1323
- def __init__(self, display_name: str, email: str, org_uuid: str) -> None:
1324
- self._display_name = display_name
1325
- self._email = email
1326
- self._org_uuid = org_uuid
1327
-
1328
- @builtins.property
1329
- def display_name(self) -> str:
1330
- return self._display_name
1331
-
1332
- @builtins.property
1333
- def email(self) -> str:
1334
- return self._email
1335
-
1336
- @builtins.property
1337
- def org_uuid(self) -> str:
1338
- return self._org_uuid
1339
-
1340
-
1341
- authentication_CreateUserRequest.__name__ = "CreateUserRequest"
1342
- authentication_CreateUserRequest.__qualname__ = "CreateUserRequest"
1343
- authentication_CreateUserRequest.__module__ = "nominal_api.authentication"
1344
-
1345
-
1346
- class authentication_User(ConjureBeanType):
1347
-
1348
- @builtins.classmethod
1349
- def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
1350
- return {
1351
- 'rid': ConjureFieldDefinition('rid', str),
1352
- 'uuid': ConjureFieldDefinition('uuid', OptionalTypeWrapper[str]),
1353
- 'display_name': ConjureFieldDefinition('displayName', str),
1354
- 'username': ConjureFieldDefinition('username', OptionalTypeWrapper[str]),
1355
- 'email': ConjureFieldDefinition('email', str),
1356
- 'org_rid': ConjureFieldDefinition('orgRid', str)
1357
- }
1358
-
1359
- __slots__: List[str] = ['_rid', '_uuid', '_display_name', '_username', '_email', '_org_rid']
1360
-
1361
- def __init__(self, display_name: str, email: str, org_rid: str, rid: str, username: Optional[str] = None, uuid: Optional[str] = None) -> None:
1362
- self._rid = rid
1363
- self._uuid = uuid
1364
- self._display_name = display_name
1365
- self._username = username
1366
- self._email = email
1367
- self._org_rid = org_rid
1368
-
1369
- @builtins.property
1370
- def rid(self) -> str:
1371
- return self._rid
1372
-
1373
- @builtins.property
1374
- def uuid(self) -> Optional[str]:
1375
- return self._uuid
1376
-
1377
- @builtins.property
1378
- def display_name(self) -> str:
1379
- return self._display_name
1380
-
1381
- @builtins.property
1382
- def username(self) -> Optional[str]:
1383
- return self._username
1384
-
1385
- @builtins.property
1386
- def email(self) -> str:
1387
- return self._email
1388
-
1389
- @builtins.property
1390
- def org_rid(self) -> str:
1391
- return self._org_rid
1392
-
1393
-
1394
- authentication_User.__name__ = "User"
1395
- authentication_User.__qualname__ = "User"
1396
- authentication_User.__module__ = "nominal_api.authentication"
1397
-
1398
-
1399
1211
  class authentication_api_AppearanceSetting(ConjureEnumType):
1400
1212
 
1401
1213
  SYSTEM = 'SYSTEM'
@@ -3727,6 +3539,72 @@ comments_api_ResourceType.__qualname__ = "ResourceType"
3727
3539
  comments_api_ResourceType.__module__ = "nominal_api.comments_api"
3728
3540
 
3729
3541
 
3542
+ class connect_download_ConnectDownloadService(Service):
3543
+ """
3544
+ Service to download the Connect app for a given platform.
3545
+ A valid authentication token is required. May not be enabled on all stacks.
3546
+ """
3547
+
3548
+ def download_latest(self, auth_header: str, platform: "connect_download_Platform") -> Any:
3549
+ """
3550
+ Download the latest version of the Connect app for the given platform.
3551
+ """
3552
+
3553
+ _headers: Dict[str, Any] = {
3554
+ 'Accept': 'application/octet-stream',
3555
+ 'Authorization': auth_header,
3556
+ }
3557
+
3558
+ _params: Dict[str, Any] = {
3559
+ }
3560
+
3561
+ _path_params: Dict[str, Any] = {
3562
+ 'platform': platform,
3563
+ }
3564
+
3565
+ _json: Any = None
3566
+
3567
+ _path = '/connect/download/{platform}'
3568
+ _path = _path.format(**_path_params)
3569
+
3570
+ _response: Response = self._request(
3571
+ 'GET',
3572
+ self._uri + _path,
3573
+ params=_params,
3574
+ headers=_headers,
3575
+ stream=True,
3576
+ json=_json)
3577
+
3578
+ _raw = _response.raw
3579
+ _raw.decode_content = True
3580
+ return _raw
3581
+
3582
+
3583
+ connect_download_ConnectDownloadService.__name__ = "ConnectDownloadService"
3584
+ connect_download_ConnectDownloadService.__qualname__ = "ConnectDownloadService"
3585
+ connect_download_ConnectDownloadService.__module__ = "nominal_api.connect_download"
3586
+
3587
+
3588
+ class connect_download_Platform(ConjureEnumType):
3589
+
3590
+ WINDOWS = 'WINDOWS'
3591
+ '''WINDOWS'''
3592
+ LINUX = 'LINUX'
3593
+ '''LINUX'''
3594
+ MACOS = 'MACOS'
3595
+ '''MACOS'''
3596
+ UNKNOWN = 'UNKNOWN'
3597
+ '''UNKNOWN'''
3598
+
3599
+ def __reduce_ex__(self, proto):
3600
+ return self.__class__, (self.name,)
3601
+
3602
+
3603
+ connect_download_Platform.__name__ = "Platform"
3604
+ connect_download_Platform.__qualname__ = "Platform"
3605
+ connect_download_Platform.__module__ = "nominal_api.connect_download"
3606
+
3607
+
3730
3608
  class datasource_TimestampType(ConjureEnumType):
3731
3609
 
3732
3610
  RELATIVE = 'RELATIVE'
@@ -5555,6 +5433,11 @@ class event_Event(ConjureBeanType):
5555
5433
 
5556
5434
  @builtins.property
5557
5435
  def uuid(self) -> str:
5436
+ """
5437
+ The unique identifier for the event. Events are identified by their UUID, rather than RID, because
5438
+ events are not directly authorized resources, but are instead authorized indirectly through their
5439
+ associated assets. Thus an event RID would not identify a valid authorized resource.
5440
+ """
5558
5441
  return self._uuid
5559
5442
 
5560
5443
  @builtins.property
@@ -20794,6 +20677,99 @@ scout_checklistexecution_api_BatchChecklistLiveStatusResponse.__qualname__ = "Ba
20794
20677
  scout_checklistexecution_api_BatchChecklistLiveStatusResponse.__module__ = "nominal_api.scout_checklistexecution_api"
20795
20678
 
20796
20679
 
20680
+ class scout_checklistexecution_api_BatchValidateChecklistResolutionRequest(ConjureBeanType):
20681
+
20682
+ @builtins.classmethod
20683
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
20684
+ return {
20685
+ 'requests': ConjureFieldDefinition('requests', List[scout_checklistexecution_api_ValidateChecklistResolutionRequest])
20686
+ }
20687
+
20688
+ __slots__: List[str] = ['_requests']
20689
+
20690
+ def __init__(self, requests: List["scout_checklistexecution_api_ValidateChecklistResolutionRequest"]) -> None:
20691
+ self._requests = requests
20692
+
20693
+ @builtins.property
20694
+ def requests(self) -> List["scout_checklistexecution_api_ValidateChecklistResolutionRequest"]:
20695
+ return self._requests
20696
+
20697
+
20698
+ scout_checklistexecution_api_BatchValidateChecklistResolutionRequest.__name__ = "BatchValidateChecklistResolutionRequest"
20699
+ scout_checklistexecution_api_BatchValidateChecklistResolutionRequest.__qualname__ = "BatchValidateChecklistResolutionRequest"
20700
+ scout_checklistexecution_api_BatchValidateChecklistResolutionRequest.__module__ = "nominal_api.scout_checklistexecution_api"
20701
+
20702
+
20703
+ class scout_checklistexecution_api_BatchValidateChecklistResolutionResponse(ConjureBeanType):
20704
+
20705
+ @builtins.classmethod
20706
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
20707
+ return {
20708
+ 'checklist_results': ConjureFieldDefinition('checklistResults', List[scout_checklistexecution_api_ValidateChecklistResolutionResponse])
20709
+ }
20710
+
20711
+ __slots__: List[str] = ['_checklist_results']
20712
+
20713
+ def __init__(self, checklist_results: List["scout_checklistexecution_api_ValidateChecklistResolutionResponse"]) -> None:
20714
+ self._checklist_results = checklist_results
20715
+
20716
+ @builtins.property
20717
+ def checklist_results(self) -> List["scout_checklistexecution_api_ValidateChecklistResolutionResponse"]:
20718
+ return self._checklist_results
20719
+
20720
+
20721
+ scout_checklistexecution_api_BatchValidateChecklistResolutionResponse.__name__ = "BatchValidateChecklistResolutionResponse"
20722
+ scout_checklistexecution_api_BatchValidateChecklistResolutionResponse.__qualname__ = "BatchValidateChecklistResolutionResponse"
20723
+ scout_checklistexecution_api_BatchValidateChecklistResolutionResponse.__module__ = "nominal_api.scout_checklistexecution_api"
20724
+
20725
+
20726
+ class scout_checklistexecution_api_ChannelLocatorWithStatus(ConjureBeanType):
20727
+
20728
+ @builtins.classmethod
20729
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
20730
+ return {
20731
+ 'channel_locator': ConjureFieldDefinition('channelLocator', scout_api_ChannelLocator),
20732
+ 'resolution_status': ConjureFieldDefinition('resolutionStatus', scout_checklistexecution_api_ChannelResolutionStatus)
20733
+ }
20734
+
20735
+ __slots__: List[str] = ['_channel_locator', '_resolution_status']
20736
+
20737
+ def __init__(self, channel_locator: "scout_api_ChannelLocator", resolution_status: "scout_checklistexecution_api_ChannelResolutionStatus") -> None:
20738
+ self._channel_locator = channel_locator
20739
+ self._resolution_status = resolution_status
20740
+
20741
+ @builtins.property
20742
+ def channel_locator(self) -> "scout_api_ChannelLocator":
20743
+ return self._channel_locator
20744
+
20745
+ @builtins.property
20746
+ def resolution_status(self) -> "scout_checklistexecution_api_ChannelResolutionStatus":
20747
+ return self._resolution_status
20748
+
20749
+
20750
+ scout_checklistexecution_api_ChannelLocatorWithStatus.__name__ = "ChannelLocatorWithStatus"
20751
+ scout_checklistexecution_api_ChannelLocatorWithStatus.__qualname__ = "ChannelLocatorWithStatus"
20752
+ scout_checklistexecution_api_ChannelLocatorWithStatus.__module__ = "nominal_api.scout_checklistexecution_api"
20753
+
20754
+
20755
+ class scout_checklistexecution_api_ChannelResolutionStatus(ConjureEnumType):
20756
+
20757
+ RESOLVED = 'RESOLVED'
20758
+ '''RESOLVED'''
20759
+ UNRESOLVED = 'UNRESOLVED'
20760
+ '''UNRESOLVED'''
20761
+ UNKNOWN = 'UNKNOWN'
20762
+ '''UNKNOWN'''
20763
+
20764
+ def __reduce_ex__(self, proto):
20765
+ return self.__class__, (self.name,)
20766
+
20767
+
20768
+ scout_checklistexecution_api_ChannelResolutionStatus.__name__ = "ChannelResolutionStatus"
20769
+ scout_checklistexecution_api_ChannelResolutionStatus.__qualname__ = "ChannelResolutionStatus"
20770
+ scout_checklistexecution_api_ChannelResolutionStatus.__module__ = "nominal_api.scout_checklistexecution_api"
20771
+
20772
+
20797
20773
  class scout_checklistexecution_api_CheckLiveStatusResponse(ConjureBeanType):
20798
20774
 
20799
20775
  @builtins.classmethod
@@ -21280,6 +21256,38 @@ checklist is already running for the given asset.
21280
21256
 
21281
21257
  return
21282
21258
 
21259
+ def validate_checklist_resolution(self, auth_header: str, request: "scout_checklistexecution_api_BatchValidateChecklistResolutionRequest") -> "scout_checklistexecution_api_BatchValidateChecklistResolutionResponse":
21260
+ """
21261
+ Validates that the channels referenced by the checklist can be resolved against the data sources.
21262
+ """
21263
+
21264
+ _headers: Dict[str, Any] = {
21265
+ 'Accept': 'application/json',
21266
+ 'Content-Type': 'application/json',
21267
+ 'Authorization': auth_header,
21268
+ }
21269
+
21270
+ _params: Dict[str, Any] = {
21271
+ }
21272
+
21273
+ _path_params: Dict[str, Any] = {
21274
+ }
21275
+
21276
+ _json: Any = ConjureEncoder().default(request)
21277
+
21278
+ _path = '/scout/v2/checklist-execution/validate-checklist-resolution'
21279
+ _path = _path.format(**_path_params)
21280
+
21281
+ _response: Response = self._request(
21282
+ 'POST',
21283
+ self._uri + _path,
21284
+ params=_params,
21285
+ headers=_headers,
21286
+ json=_json)
21287
+
21288
+ _decoder = ConjureDecoder()
21289
+ return _decoder.decode(_response.json(), scout_checklistexecution_api_BatchValidateChecklistResolutionResponse, self._return_none_for_unknown_union_types)
21290
+
21283
21291
 
21284
21292
  scout_checklistexecution_api_ChecklistExecutionService.__name__ = "ChecklistExecutionService"
21285
21293
  scout_checklistexecution_api_ChecklistExecutionService.__qualname__ = "ChecklistExecutionService"
@@ -21925,6 +21933,46 @@ scout_checklistexecution_api_Pass.__qualname__ = "Pass"
21925
21933
  scout_checklistexecution_api_Pass.__module__ = "nominal_api.scout_checklistexecution_api"
21926
21934
 
21927
21935
 
21936
+ class scout_checklistexecution_api_ResolvedCheckStatus(ConjureBeanType):
21937
+ """
21938
+ Provides the resolution status for the required channels for a check.
21939
+ Uniqueness between checkRid and checkParameterIndex pairs is guaranteed.
21940
+ checkParameterIndex is optional and will be null if the check is not parameterized otherwise it will be the index of the parameter.
21941
+ """
21942
+
21943
+ @builtins.classmethod
21944
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
21945
+ return {
21946
+ 'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
21947
+ 'check_parameter_index': ConjureFieldDefinition('checkParameterIndex', OptionalTypeWrapper[int]),
21948
+ 'channels': ConjureFieldDefinition('channels', List[scout_checklistexecution_api_ChannelLocatorWithStatus])
21949
+ }
21950
+
21951
+ __slots__: List[str] = ['_check_rid', '_check_parameter_index', '_channels']
21952
+
21953
+ def __init__(self, channels: List["scout_checklistexecution_api_ChannelLocatorWithStatus"], check_rid: str, check_parameter_index: Optional[int] = None) -> None:
21954
+ self._check_rid = check_rid
21955
+ self._check_parameter_index = check_parameter_index
21956
+ self._channels = channels
21957
+
21958
+ @builtins.property
21959
+ def check_rid(self) -> str:
21960
+ return self._check_rid
21961
+
21962
+ @builtins.property
21963
+ def check_parameter_index(self) -> Optional[int]:
21964
+ return self._check_parameter_index
21965
+
21966
+ @builtins.property
21967
+ def channels(self) -> List["scout_checklistexecution_api_ChannelLocatorWithStatus"]:
21968
+ return self._channels
21969
+
21970
+
21971
+ scout_checklistexecution_api_ResolvedCheckStatus.__name__ = "ResolvedCheckStatus"
21972
+ scout_checklistexecution_api_ResolvedCheckStatus.__qualname__ = "ResolvedCheckStatus"
21973
+ scout_checklistexecution_api_ResolvedCheckStatus.__module__ = "nominal_api.scout_checklistexecution_api"
21974
+
21975
+
21928
21976
  class scout_checklistexecution_api_StopStreamingChecklistForAssetsRequest(ConjureBeanType):
21929
21977
 
21930
21978
  @builtins.classmethod
@@ -21983,6 +22031,70 @@ scout_checklistexecution_api_StreamingChecklistInfo.__qualname__ = "StreamingChe
21983
22031
  scout_checklistexecution_api_StreamingChecklistInfo.__module__ = "nominal_api.scout_checklistexecution_api"
21984
22032
 
21985
22033
 
22034
+ class scout_checklistexecution_api_ValidateChecklistResolutionRequest(ConjureBeanType):
22035
+
22036
+ @builtins.classmethod
22037
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
22038
+ return {
22039
+ 'checklist_rid': ConjureFieldDefinition('checklistRid', scout_rids_api_ChecklistRid),
22040
+ 'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid)
22041
+ }
22042
+
22043
+ __slots__: List[str] = ['_checklist_rid', '_asset_rid']
22044
+
22045
+ def __init__(self, asset_rid: str, checklist_rid: str) -> None:
22046
+ self._checklist_rid = checklist_rid
22047
+ self._asset_rid = asset_rid
22048
+
22049
+ @builtins.property
22050
+ def checklist_rid(self) -> str:
22051
+ return self._checklist_rid
22052
+
22053
+ @builtins.property
22054
+ def asset_rid(self) -> str:
22055
+ return self._asset_rid
22056
+
22057
+
22058
+ scout_checklistexecution_api_ValidateChecklistResolutionRequest.__name__ = "ValidateChecklistResolutionRequest"
22059
+ scout_checklistexecution_api_ValidateChecklistResolutionRequest.__qualname__ = "ValidateChecklistResolutionRequest"
22060
+ scout_checklistexecution_api_ValidateChecklistResolutionRequest.__module__ = "nominal_api.scout_checklistexecution_api"
22061
+
22062
+
22063
+ class scout_checklistexecution_api_ValidateChecklistResolutionResponse(ConjureBeanType):
22064
+
22065
+ @builtins.classmethod
22066
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
22067
+ return {
22068
+ 'checklist_rid': ConjureFieldDefinition('checklistRid', scout_rids_api_ChecklistRid),
22069
+ 'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
22070
+ 'resolution_status': ConjureFieldDefinition('resolutionStatus', List[scout_checklistexecution_api_ResolvedCheckStatus])
22071
+ }
22072
+
22073
+ __slots__: List[str] = ['_checklist_rid', '_asset_rid', '_resolution_status']
22074
+
22075
+ def __init__(self, asset_rid: str, checklist_rid: str, resolution_status: List["scout_checklistexecution_api_ResolvedCheckStatus"]) -> None:
22076
+ self._checklist_rid = checklist_rid
22077
+ self._asset_rid = asset_rid
22078
+ self._resolution_status = resolution_status
22079
+
22080
+ @builtins.property
22081
+ def checklist_rid(self) -> str:
22082
+ return self._checklist_rid
22083
+
22084
+ @builtins.property
22085
+ def asset_rid(self) -> str:
22086
+ return self._asset_rid
22087
+
22088
+ @builtins.property
22089
+ def resolution_status(self) -> List["scout_checklistexecution_api_ResolvedCheckStatus"]:
22090
+ return self._resolution_status
22091
+
22092
+
22093
+ scout_checklistexecution_api_ValidateChecklistResolutionResponse.__name__ = "ValidateChecklistResolutionResponse"
22094
+ scout_checklistexecution_api_ValidateChecklistResolutionResponse.__qualname__ = "ValidateChecklistResolutionResponse"
22095
+ scout_checklistexecution_api_ValidateChecklistResolutionResponse.__module__ = "nominal_api.scout_checklistexecution_api"
22096
+
22097
+
21986
22098
  class scout_checks_api_ArchiveChecklistsRequest(ConjureBeanType):
21987
22099
 
21988
22100
  @builtins.classmethod
@@ -65571,6 +65683,84 @@ secrets_api_UpdateSecretRequest.__qualname__ = "UpdateSecretRequest"
65571
65683
  secrets_api_UpdateSecretRequest.__module__ = "nominal_api.secrets_api"
65572
65684
 
65573
65685
 
65686
+ class security_api_workspace_Workspace(ConjureBeanType):
65687
+
65688
+ @builtins.classmethod
65689
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
65690
+ return {
65691
+ 'name': ConjureFieldDefinition('name', str),
65692
+ 'rid': ConjureFieldDefinition('rid', api_rids_WorkspaceRid),
65693
+ 'org': ConjureFieldDefinition('org', authentication_api_OrgRid)
65694
+ }
65695
+
65696
+ __slots__: List[str] = ['_name', '_rid', '_org']
65697
+
65698
+ def __init__(self, name: str, org: str, rid: str) -> None:
65699
+ self._name = name
65700
+ self._rid = rid
65701
+ self._org = org
65702
+
65703
+ @builtins.property
65704
+ def name(self) -> str:
65705
+ return self._name
65706
+
65707
+ @builtins.property
65708
+ def rid(self) -> str:
65709
+ return self._rid
65710
+
65711
+ @builtins.property
65712
+ def org(self) -> str:
65713
+ return self._org
65714
+
65715
+
65716
+ security_api_workspace_Workspace.__name__ = "Workspace"
65717
+ security_api_workspace_Workspace.__qualname__ = "Workspace"
65718
+ security_api_workspace_Workspace.__module__ = "nominal_api.security_api_workspace"
65719
+
65720
+
65721
+ class security_api_workspace_WorkspaceService(Service):
65722
+ """
65723
+ This service provides information about workspaces. Workspaces provide access control boundaries. All resources in
65724
+ Nominal live within a workspace.
65725
+ """
65726
+
65727
+ def get_workspaces(self, auth_header: str) -> List["security_api_workspace_Workspace"]:
65728
+ """
65729
+ Gets all workspaces that the requesting user belongs to.
65730
+ """
65731
+
65732
+ _headers: Dict[str, Any] = {
65733
+ 'Accept': 'application/json',
65734
+ 'Authorization': auth_header,
65735
+ }
65736
+
65737
+ _params: Dict[str, Any] = {
65738
+ }
65739
+
65740
+ _path_params: Dict[str, Any] = {
65741
+ }
65742
+
65743
+ _json: Any = None
65744
+
65745
+ _path = '/workspaces/v1/workspaces'
65746
+ _path = _path.format(**_path_params)
65747
+
65748
+ _response: Response = self._request(
65749
+ 'GET',
65750
+ self._uri + _path,
65751
+ params=_params,
65752
+ headers=_headers,
65753
+ json=_json)
65754
+
65755
+ _decoder = ConjureDecoder()
65756
+ return _decoder.decode(_response.json(), List[security_api_workspace_Workspace], self._return_none_for_unknown_union_types)
65757
+
65758
+
65759
+ security_api_workspace_WorkspaceService.__name__ = "WorkspaceService"
65760
+ security_api_workspace_WorkspaceService.__qualname__ = "WorkspaceService"
65761
+ security_api_workspace_WorkspaceService.__module__ = "nominal_api.security_api_workspace"
65762
+
65763
+
65574
65764
  class storage_datasource_api_CreateNominalDataSourceRequest(ConjureBeanType):
65575
65765
 
65576
65766
  @builtins.classmethod
@@ -65980,6 +66170,9 @@ storage_series_api_GetSeriesByChannelAndTagsRequest.__module__ = "nominal_api.st
65980
66170
 
65981
66171
 
65982
66172
  class storage_series_api_NominalDataType(ConjureEnumType):
66173
+ """
66174
+ The data types supported by Nominal's database.
66175
+ """
65983
66176
 
65984
66177
  DOUBLE = 'DOUBLE'
65985
66178
  '''DOUBLE'''
@@ -65987,6 +66180,8 @@ class storage_series_api_NominalDataType(ConjureEnumType):
65987
66180
  '''STRING'''
65988
66181
  LOG = 'LOG'
65989
66182
  '''LOG'''
66183
+ INT64 = 'INT64'
66184
+ '''INT64'''
65990
66185
  UNKNOWN = 'UNKNOWN'
65991
66186
  '''UNKNOWN'''
65992
66187
 
@@ -66494,6 +66689,35 @@ storage_writer_api_DoublePoint.__qualname__ = "DoublePoint"
66494
66689
  storage_writer_api_DoublePoint.__module__ = "nominal_api.storage_writer_api"
66495
66690
 
66496
66691
 
66692
+ class storage_writer_api_IntPoint(ConjureBeanType):
66693
+
66694
+ @builtins.classmethod
66695
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
66696
+ return {
66697
+ 'timestamp': ConjureFieldDefinition('timestamp', api_Timestamp),
66698
+ 'value': ConjureFieldDefinition('value', int)
66699
+ }
66700
+
66701
+ __slots__: List[str] = ['_timestamp', '_value']
66702
+
66703
+ def __init__(self, timestamp: "api_Timestamp", value: int) -> None:
66704
+ self._timestamp = timestamp
66705
+ self._value = value
66706
+
66707
+ @builtins.property
66708
+ def timestamp(self) -> "api_Timestamp":
66709
+ return self._timestamp
66710
+
66711
+ @builtins.property
66712
+ def value(self) -> int:
66713
+ return self._value
66714
+
66715
+
66716
+ storage_writer_api_IntPoint.__name__ = "IntPoint"
66717
+ storage_writer_api_IntPoint.__qualname__ = "IntPoint"
66718
+ storage_writer_api_IntPoint.__module__ = "nominal_api.storage_writer_api"
66719
+
66720
+
66497
66721
  class storage_writer_api_LogPoint(ConjureBeanType):
66498
66722
 
66499
66723
  @builtins.classmethod
@@ -66799,13 +67023,15 @@ class storage_writer_api_Points(ConjureUnionType):
66799
67023
  _string: Optional[List["storage_writer_api_StringPoint"]] = None
66800
67024
  _double: Optional[List["storage_writer_api_DoublePoint"]] = None
66801
67025
  _log: Optional[List["storage_writer_api_LogPoint"]] = None
67026
+ _int_: Optional[List["storage_writer_api_IntPoint"]] = None
66802
67027
 
66803
67028
  @builtins.classmethod
66804
67029
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
66805
67030
  return {
66806
67031
  'string': ConjureFieldDefinition('string', List[storage_writer_api_StringPoint]),
66807
67032
  'double': ConjureFieldDefinition('double', List[storage_writer_api_DoublePoint]),
66808
- 'log': ConjureFieldDefinition('log', List[storage_writer_api_LogPoint])
67033
+ 'log': ConjureFieldDefinition('log', List[storage_writer_api_LogPoint]),
67034
+ 'int_': ConjureFieldDefinition('int', List[storage_writer_api_IntPoint])
66809
67035
  }
66810
67036
 
66811
67037
  def __init__(
@@ -66813,10 +67039,11 @@ class storage_writer_api_Points(ConjureUnionType):
66813
67039
  string: Optional[List["storage_writer_api_StringPoint"]] = None,
66814
67040
  double: Optional[List["storage_writer_api_DoublePoint"]] = None,
66815
67041
  log: Optional[List["storage_writer_api_LogPoint"]] = None,
67042
+ int_: Optional[List["storage_writer_api_IntPoint"]] = None,
66816
67043
  type_of_union: Optional[str] = None
66817
67044
  ) -> None:
66818
67045
  if type_of_union is None:
66819
- if (string is not None) + (double is not None) + (log is not None) != 1:
67046
+ if (string is not None) + (double is not None) + (log is not None) + (int_ is not None) != 1:
66820
67047
  raise ValueError('a union must contain a single member')
66821
67048
 
66822
67049
  if string is not None:
@@ -66828,6 +67055,9 @@ class storage_writer_api_Points(ConjureUnionType):
66828
67055
  if log is not None:
66829
67056
  self._log = log
66830
67057
  self._type = 'log'
67058
+ if int_ is not None:
67059
+ self._int_ = int_
67060
+ self._type = 'int'
66831
67061
 
66832
67062
  elif type_of_union == 'string':
66833
67063
  if string is None:
@@ -66844,6 +67074,11 @@ class storage_writer_api_Points(ConjureUnionType):
66844
67074
  raise ValueError('a union value must not be None')
66845
67075
  self._log = log
66846
67076
  self._type = 'log'
67077
+ elif type_of_union == 'int':
67078
+ if int_ is None:
67079
+ raise ValueError('a union value must not be None')
67080
+ self._int_ = int_
67081
+ self._type = 'int'
66847
67082
 
66848
67083
  @builtins.property
66849
67084
  def string(self) -> Optional[List["storage_writer_api_StringPoint"]]:
@@ -66860,6 +67095,10 @@ class storage_writer_api_Points(ConjureUnionType):
66860
67095
  """
66861
67096
  return self._log
66862
67097
 
67098
+ @builtins.property
67099
+ def int_(self) -> Optional[List["storage_writer_api_IntPoint"]]:
67100
+ return self._int_
67101
+
66863
67102
  def accept(self, visitor) -> Any:
66864
67103
  if not isinstance(visitor, storage_writer_api_PointsVisitor):
66865
67104
  raise ValueError('{} is not an instance of storage_writer_api_PointsVisitor'.format(visitor.__class__.__name__))
@@ -66869,6 +67108,8 @@ class storage_writer_api_Points(ConjureUnionType):
66869
67108
  return visitor._double(self.double)
66870
67109
  if self._type == 'log' and self.log is not None:
66871
67110
  return visitor._log(self.log)
67111
+ if self._type == 'int' and self.int_ is not None:
67112
+ return visitor._int(self.int_)
66872
67113
 
66873
67114
 
66874
67115
  storage_writer_api_Points.__name__ = "Points"
@@ -66890,6 +67131,10 @@ class storage_writer_api_PointsVisitor:
66890
67131
  def _log(self, log: List["storage_writer_api_LogPoint"]) -> Any:
66891
67132
  pass
66892
67133
 
67134
+ @abstractmethod
67135
+ def _int(self, int_: List["storage_writer_api_IntPoint"]) -> Any:
67136
+ pass
67137
+
66893
67138
 
66894
67139
  storage_writer_api_PointsVisitor.__name__ = "PointsVisitor"
66895
67140
  storage_writer_api_PointsVisitor.__qualname__ = "PointsVisitor"
@@ -68062,12 +68307,12 @@ class timeseries_archetype_api_BigQueryLocatorTemplate(ConjureBeanType):
68062
68307
  return {
68063
68308
  'value_column': ConjureFieldDefinition('valueColumn', timeseries_logicalseries_api_ColumnName),
68064
68309
  'time_column': ConjureFieldDefinition('timeColumn', timeseries_logicalseries_api_ColumnName),
68065
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
68310
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_BigQueryType)
68066
68311
  }
68067
68312
 
68068
68313
  __slots__: List[str] = ['_value_column', '_time_column', '_type']
68069
68314
 
68070
- def __init__(self, time_column: str, type: "timeseries_logicalseries_api_NominalType", value_column: str) -> None:
68315
+ def __init__(self, time_column: str, type: "timeseries_logicalseries_api_BigQueryType", value_column: str) -> None:
68071
68316
  self._value_column = value_column
68072
68317
  self._time_column = time_column
68073
68318
  self._type = type
@@ -68081,7 +68326,7 @@ class timeseries_archetype_api_BigQueryLocatorTemplate(ConjureBeanType):
68081
68326
  return self._time_column
68082
68327
 
68083
68328
  @builtins.property
68084
- def type(self) -> "timeseries_logicalseries_api_NominalType":
68329
+ def type(self) -> "timeseries_logicalseries_api_BigQueryType":
68085
68330
  return self._type
68086
68331
 
68087
68332
 
@@ -68429,12 +68674,12 @@ class timeseries_archetype_api_NominalLocatorTemplate(ConjureBeanType):
68429
68674
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
68430
68675
  return {
68431
68676
  'channel': ConjureFieldDefinition('channel', api_Channel),
68432
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
68677
+ 'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
68433
68678
  }
68434
68679
 
68435
68680
  __slots__: List[str] = ['_channel', '_type']
68436
68681
 
68437
- def __init__(self, channel: str, type: "timeseries_logicalseries_api_NominalType") -> None:
68682
+ def __init__(self, channel: str, type: "storage_series_api_NominalDataType") -> None:
68438
68683
  self._channel = channel
68439
68684
  self._type = type
68440
68685
 
@@ -68443,7 +68688,7 @@ class timeseries_archetype_api_NominalLocatorTemplate(ConjureBeanType):
68443
68688
  return self._channel
68444
68689
 
68445
68690
  @builtins.property
68446
- def type(self) -> "timeseries_logicalseries_api_NominalType":
68691
+ def type(self) -> "storage_series_api_NominalDataType":
68447
68692
  return self._type
68448
68693
 
68449
68694
 
@@ -68575,12 +68820,12 @@ class timeseries_archetype_api_TimestreamLocatorTemplate(ConjureBeanType):
68575
68820
  'table': ConjureFieldDefinition('table', timeseries_logicalseries_api_TableName),
68576
68821
  'measure': ConjureFieldDefinition('measure', timeseries_logicalseries_api_MeasureName),
68577
68822
  'attribute': ConjureFieldDefinition('attribute', OptionalTypeWrapper[timeseries_logicalseries_api_AttributeName]),
68578
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
68823
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_TimestreamType)
68579
68824
  }
68580
68825
 
68581
68826
  __slots__: List[str] = ['_table', '_measure', '_attribute', '_type']
68582
68827
 
68583
- def __init__(self, measure: str, table: str, type: "timeseries_logicalseries_api_NominalType", attribute: Optional[str] = None) -> None:
68828
+ def __init__(self, measure: str, table: str, type: "timeseries_logicalseries_api_TimestreamType", attribute: Optional[str] = None) -> None:
68584
68829
  self._table = table
68585
68830
  self._measure = measure
68586
68831
  self._attribute = attribute
@@ -68599,7 +68844,7 @@ class timeseries_archetype_api_TimestreamLocatorTemplate(ConjureBeanType):
68599
68844
  return self._attribute
68600
68845
 
68601
68846
  @builtins.property
68602
- def type(self) -> "timeseries_logicalseries_api_NominalType":
68847
+ def type(self) -> "timeseries_logicalseries_api_TimestreamType":
68603
68848
  return self._type
68604
68849
 
68605
68850
 
@@ -69035,12 +69280,12 @@ class timeseries_logicalseries_api_BigQueryLocator(ConjureBeanType):
69035
69280
  'value_column': ConjureFieldDefinition('valueColumn', timeseries_logicalseries_api_ColumnName),
69036
69281
  'time_column': ConjureFieldDefinition('timeColumn', timeseries_logicalseries_api_ColumnName),
69037
69282
  'tag_values': ConjureFieldDefinition('tagValues', Dict[api_TagName, api_TagValue]),
69038
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
69283
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_BigQueryType)
69039
69284
  }
69040
69285
 
69041
69286
  __slots__: List[str] = ['_value_column', '_time_column', '_tag_values', '_type']
69042
69287
 
69043
- def __init__(self, tag_values: Dict[str, str], time_column: str, type: "timeseries_logicalseries_api_NominalType", value_column: str) -> None:
69288
+ def __init__(self, tag_values: Dict[str, str], time_column: str, type: "timeseries_logicalseries_api_BigQueryType", value_column: str) -> None:
69044
69289
  self._value_column = value_column
69045
69290
  self._time_column = time_column
69046
69291
  self._tag_values = tag_values
@@ -69068,7 +69313,7 @@ class timeseries_logicalseries_api_BigQueryLocator(ConjureBeanType):
69068
69313
  return self._tag_values
69069
69314
 
69070
69315
  @builtins.property
69071
- def type(self) -> "timeseries_logicalseries_api_NominalType":
69316
+ def type(self) -> "timeseries_logicalseries_api_BigQueryType":
69072
69317
  return self._type
69073
69318
 
69074
69319
 
@@ -69077,6 +69322,24 @@ timeseries_logicalseries_api_BigQueryLocator.__qualname__ = "BigQueryLocator"
69077
69322
  timeseries_logicalseries_api_BigQueryLocator.__module__ = "nominal_api.timeseries_logicalseries_api"
69078
69323
 
69079
69324
 
69325
+ class timeseries_logicalseries_api_BigQueryType(ConjureEnumType):
69326
+
69327
+ DOUBLE = 'DOUBLE'
69328
+ '''DOUBLE'''
69329
+ STRING = 'STRING'
69330
+ '''STRING'''
69331
+ UNKNOWN = 'UNKNOWN'
69332
+ '''UNKNOWN'''
69333
+
69334
+ def __reduce_ex__(self, proto):
69335
+ return self.__class__, (self.name,)
69336
+
69337
+
69338
+ timeseries_logicalseries_api_BigQueryType.__name__ = "BigQueryType"
69339
+ timeseries_logicalseries_api_BigQueryType.__qualname__ = "BigQueryType"
69340
+ timeseries_logicalseries_api_BigQueryType.__module__ = "nominal_api.timeseries_logicalseries_api"
69341
+
69342
+
69080
69343
  class timeseries_logicalseries_api_Confidence(ConjureEnumType):
69081
69344
 
69082
69345
  LOW = 'LOW'
@@ -69817,12 +70080,12 @@ class timeseries_logicalseries_api_NominalLocator(ConjureBeanType):
69817
70080
  return {
69818
70081
  'channel': ConjureFieldDefinition('channel', api_Channel),
69819
70082
  'tags': ConjureFieldDefinition('tags', Dict[api_TagName, api_TagValue]),
69820
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
70083
+ 'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
69821
70084
  }
69822
70085
 
69823
70086
  __slots__: List[str] = ['_channel', '_tags', '_type']
69824
70087
 
69825
- def __init__(self, channel: str, tags: Dict[str, str], type: "timeseries_logicalseries_api_NominalType") -> None:
70088
+ def __init__(self, channel: str, tags: Dict[str, str], type: "storage_series_api_NominalDataType") -> None:
69826
70089
  self._channel = channel
69827
70090
  self._tags = tags
69828
70091
  self._type = type
@@ -69836,7 +70099,7 @@ class timeseries_logicalseries_api_NominalLocator(ConjureBeanType):
69836
70099
  return self._tags
69837
70100
 
69838
70101
  @builtins.property
69839
- def type(self) -> "timeseries_logicalseries_api_NominalType":
70102
+ def type(self) -> "storage_series_api_NominalDataType":
69840
70103
  return self._type
69841
70104
 
69842
70105
 
@@ -69845,26 +70108,6 @@ timeseries_logicalseries_api_NominalLocator.__qualname__ = "NominalLocator"
69845
70108
  timeseries_logicalseries_api_NominalLocator.__module__ = "nominal_api.timeseries_logicalseries_api"
69846
70109
 
69847
70110
 
69848
- class timeseries_logicalseries_api_NominalType(ConjureEnumType):
69849
-
69850
- DOUBLE = 'DOUBLE'
69851
- '''DOUBLE'''
69852
- STRING = 'STRING'
69853
- '''STRING'''
69854
- LOG = 'LOG'
69855
- '''LOG'''
69856
- UNKNOWN = 'UNKNOWN'
69857
- '''UNKNOWN'''
69858
-
69859
- def __reduce_ex__(self, proto):
69860
- return self.__class__, (self.name,)
69861
-
69862
-
69863
- timeseries_logicalseries_api_NominalType.__name__ = "NominalType"
69864
- timeseries_logicalseries_api_NominalType.__qualname__ = "NominalType"
69865
- timeseries_logicalseries_api_NominalType.__module__ = "nominal_api.timeseries_logicalseries_api"
69866
-
69867
-
69868
70111
  class timeseries_logicalseries_api_ResolveSeriesError(ConjureBeanType):
69869
70112
 
69870
70113
  @builtins.classmethod
@@ -70088,12 +70331,12 @@ class timeseries_logicalseries_api_TimestreamLocator(ConjureBeanType):
70088
70331
  'dimensions': ConjureFieldDefinition('dimensions', Dict[api_TagName, api_TagValue]),
70089
70332
  'measure': ConjureFieldDefinition('measure', timeseries_logicalseries_api_MeasureName),
70090
70333
  'attribute': ConjureFieldDefinition('attribute', OptionalTypeWrapper[timeseries_logicalseries_api_AttributeName]),
70091
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
70334
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_TimestreamType)
70092
70335
  }
70093
70336
 
70094
70337
  __slots__: List[str] = ['_table', '_dimensions', '_measure', '_attribute', '_type']
70095
70338
 
70096
- def __init__(self, dimensions: Dict[str, str], measure: str, table: str, type: "timeseries_logicalseries_api_NominalType", attribute: Optional[str] = None) -> None:
70339
+ def __init__(self, dimensions: Dict[str, str], measure: str, table: str, type: "timeseries_logicalseries_api_TimestreamType", attribute: Optional[str] = None) -> None:
70097
70340
  self._table = table
70098
70341
  self._dimensions = dimensions
70099
70342
  self._measure = measure
@@ -70120,7 +70363,7 @@ class timeseries_logicalseries_api_TimestreamLocator(ConjureBeanType):
70120
70363
  return self._attribute
70121
70364
 
70122
70365
  @builtins.property
70123
- def type(self) -> "timeseries_logicalseries_api_NominalType":
70366
+ def type(self) -> "timeseries_logicalseries_api_TimestreamType":
70124
70367
  return self._type
70125
70368
 
70126
70369
 
@@ -70129,6 +70372,24 @@ timeseries_logicalseries_api_TimestreamLocator.__qualname__ = "TimestreamLocator
70129
70372
  timeseries_logicalseries_api_TimestreamLocator.__module__ = "nominal_api.timeseries_logicalseries_api"
70130
70373
 
70131
70374
 
70375
+ class timeseries_logicalseries_api_TimestreamType(ConjureEnumType):
70376
+
70377
+ DOUBLE = 'DOUBLE'
70378
+ '''DOUBLE'''
70379
+ STRING = 'STRING'
70380
+ '''STRING'''
70381
+ UNKNOWN = 'UNKNOWN'
70382
+ '''UNKNOWN'''
70383
+
70384
+ def __reduce_ex__(self, proto):
70385
+ return self.__class__, (self.name,)
70386
+
70387
+
70388
+ timeseries_logicalseries_api_TimestreamType.__name__ = "TimestreamType"
70389
+ timeseries_logicalseries_api_TimestreamType.__qualname__ = "TimestreamType"
70390
+ timeseries_logicalseries_api_TimestreamType.__module__ = "nominal_api.timeseries_logicalseries_api"
70391
+
70392
+
70132
70393
  class timeseries_logicalseries_api_UnitUpdate(ConjureUnionType):
70133
70394
  """UnitUpdate is used to either set a unit, or to clear an existing unit."""
70134
70395
  _unit: Optional[str] = None
@@ -71261,8 +71522,6 @@ api_PropertyValue = str
71261
71522
 
71262
71523
  timeseries_logicalseries_api_AttributeName = str
71263
71524
 
71264
- authentication_api_OrgRid = str
71265
-
71266
71525
  themes_api_ChartThemeRid = str
71267
71526
 
71268
71527
  scout_rids_api_SnapshotRid = str
@@ -71287,6 +71546,8 @@ scout_versioning_api_BranchRid = str
71287
71546
 
71288
71547
  datasource_DatasetFileId = str
71289
71548
 
71549
+ api_rids_WorkspaceRid = str
71550
+
71290
71551
  api_McapChannelTopic = str
71291
71552
 
71292
71553
  scout_compute_api_VariableName = str
@@ -71487,14 +71748,14 @@ scout_chartdefinition_api_DataSourceRefName = str
71487
71748
 
71488
71749
  api_LogicalSeriesRid = str
71489
71750
 
71751
+ authentication_api_OrgRid = str
71752
+
71490
71753
  scout_rids_api_ChecklistRid = str
71491
71754
 
71492
71755
  scout_chartdefinition_api_WorkbookVizDefinitionMap = Dict[scout_rids_api_VizId, scout_chartdefinition_api_VizDefinition]
71493
71756
 
71494
71757
  api_McapChannelId = int
71495
71758
 
71496
- scout_datasource_connection_api_OrganizationRid = str
71497
-
71498
71759
  scout_rids_api_CheckRid = str
71499
71760
 
71500
71761
  api_Token = str
@@ -8,5 +8,6 @@ from .._impl import (
8
8
  api_rids_SegmentRid as SegmentRid,
9
9
  api_rids_VideoFileRid as VideoFileRid,
10
10
  api_rids_VideoRid as VideoRid,
11
+ api_rids_WorkspaceRid as WorkspaceRid,
11
12
  )
12
13
 
@@ -0,0 +1,6 @@
1
+ # coding=utf-8
2
+ from .._impl import (
3
+ connect_download_ConnectDownloadService as ConnectDownloadService,
4
+ connect_download_Platform as Platform,
5
+ )
6
+
@@ -3,6 +3,10 @@ from .._impl import (
3
3
  scout_checklistexecution_api_AssetStreamConfiguration as AssetStreamConfiguration,
4
4
  scout_checklistexecution_api_BatchChecklistLiveStatusRequest as BatchChecklistLiveStatusRequest,
5
5
  scout_checklistexecution_api_BatchChecklistLiveStatusResponse as BatchChecklistLiveStatusResponse,
6
+ scout_checklistexecution_api_BatchValidateChecklistResolutionRequest as BatchValidateChecklistResolutionRequest,
7
+ scout_checklistexecution_api_BatchValidateChecklistResolutionResponse as BatchValidateChecklistResolutionResponse,
8
+ scout_checklistexecution_api_ChannelLocatorWithStatus as ChannelLocatorWithStatus,
9
+ scout_checklistexecution_api_ChannelResolutionStatus as ChannelResolutionStatus,
6
10
  scout_checklistexecution_api_CheckLiveStatusResponse as CheckLiveStatusResponse,
7
11
  scout_checklistexecution_api_CheckLiveStatusResult as CheckLiveStatusResult,
8
12
  scout_checklistexecution_api_CheckLiveStatusResultVisitor as CheckLiveStatusResultVisitor,
@@ -28,7 +32,10 @@ from .._impl import (
28
32
  scout_checklistexecution_api_NotComputable as NotComputable,
29
33
  scout_checklistexecution_api_NotComputed as NotComputed,
30
34
  scout_checklistexecution_api_Pass as Pass,
35
+ scout_checklistexecution_api_ResolvedCheckStatus as ResolvedCheckStatus,
31
36
  scout_checklistexecution_api_StopStreamingChecklistForAssetsRequest as StopStreamingChecklistForAssetsRequest,
32
37
  scout_checklistexecution_api_StreamingChecklistInfo as StreamingChecklistInfo,
38
+ scout_checklistexecution_api_ValidateChecklistResolutionRequest as ValidateChecklistResolutionRequest,
39
+ scout_checklistexecution_api_ValidateChecklistResolutionResponse as ValidateChecklistResolutionResponse,
33
40
  )
34
41
 
@@ -31,7 +31,6 @@ from .._impl import (
31
31
  scout_datasource_connection_api_NominalChannelNameComponentVisitor as NominalChannelNameComponentVisitor,
32
32
  scout_datasource_connection_api_NominalConnectionDetails as NominalConnectionDetails,
33
33
  scout_datasource_connection_api_NominalScrapingConfig as NominalScrapingConfig,
34
- scout_datasource_connection_api_OrganizationRid as OrganizationRid,
35
34
  scout_datasource_connection_api_PasswordCredentials as PasswordCredentials,
36
35
  scout_datasource_connection_api_PivotedTimescaleChannelNameComponent as PivotedTimescaleChannelNameComponent,
37
36
  scout_datasource_connection_api_PivotedTimescaleChannelNameComponentVisitor as PivotedTimescaleChannelNameComponentVisitor,
@@ -0,0 +1,6 @@
1
+ # coding=utf-8
2
+ from .._impl import (
3
+ security_api_workspace_Workspace as Workspace,
4
+ security_api_workspace_WorkspaceService as WorkspaceService,
5
+ )
6
+
@@ -3,6 +3,7 @@ from .._impl import (
3
3
  storage_writer_api_DirectNominalChannelWriterService as DirectNominalChannelWriterService,
4
4
  storage_writer_api_DoublePoint as DoublePoint,
5
5
  storage_writer_api_Field as Field,
6
+ storage_writer_api_IntPoint as IntPoint,
6
7
  storage_writer_api_LogPoint as LogPoint,
7
8
  storage_writer_api_LogValue as LogValue,
8
9
  storage_writer_api_MeasurementName as MeasurementName,
@@ -8,6 +8,7 @@ from .._impl import (
8
8
  timeseries_logicalseries_api_BatchUpdateLogicalSeriesRequest as BatchUpdateLogicalSeriesRequest,
9
9
  timeseries_logicalseries_api_BatchUpdateLogicalSeriesResponse as BatchUpdateLogicalSeriesResponse,
10
10
  timeseries_logicalseries_api_BigQueryLocator as BigQueryLocator,
11
+ timeseries_logicalseries_api_BigQueryType as BigQueryType,
11
12
  timeseries_logicalseries_api_BucketName as BucketName,
12
13
  timeseries_logicalseries_api_ColumnName as ColumnName,
13
14
  timeseries_logicalseries_api_Confidence as Confidence,
@@ -32,7 +33,6 @@ from .._impl import (
32
33
  timeseries_logicalseries_api_MeasureName as MeasureName,
33
34
  timeseries_logicalseries_api_MeasurementName as MeasurementName,
34
35
  timeseries_logicalseries_api_NominalLocator as NominalLocator,
35
- timeseries_logicalseries_api_NominalType as NominalType,
36
36
  timeseries_logicalseries_api_ProjectName as ProjectName,
37
37
  timeseries_logicalseries_api_ResolveSeriesError as ResolveSeriesError,
38
38
  timeseries_logicalseries_api_ResolveSeriesRequest as ResolveSeriesRequest,
@@ -43,6 +43,7 @@ from .._impl import (
43
43
  timeseries_logicalseries_api_TimescaleDbLocator as TimescaleDbLocator,
44
44
  timeseries_logicalseries_api_TimescaleType as TimescaleType,
45
45
  timeseries_logicalseries_api_TimestreamLocator as TimestreamLocator,
46
+ timeseries_logicalseries_api_TimestreamType as TimestreamType,
46
47
  timeseries_logicalseries_api_UnitUpdate as UnitUpdate,
47
48
  timeseries_logicalseries_api_UnitUpdateVisitor as UnitUpdateVisitor,
48
49
  timeseries_logicalseries_api_UpdateLogicalSeries as UpdateLogicalSeries,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nominal-api
3
- Version: 0.568.0
3
+ Version: 0.569.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<3,>=2.8.0
@@ -1,13 +1,13 @@
1
- nominal_api/__init__.py,sha256=wRQgqs67YbgQylQE2wf7tcpR3qHkYx6xr-sKaYKKo7Q,1791
2
- nominal_api/_impl.py,sha256=-vanQA6EeZOOlxsKgDdxk6v2ifH5OH6lF77hVT8F6Mw,2757902
1
+ nominal_api/__init__.py,sha256=KTA44AJXMEiplEQgHyxFuxCme7y5dokfb39dM9DVWrI,1823
2
+ nominal_api/_impl.py,sha256=djsIvJ4QU-gNvNLO12qPX7cuHkHvIOmPmlgvMd8szS4,2768631
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=kJBEE_HLVpKYdLH12KyO-cSAVzwxYpBwaaDutCtT-LM,1236
5
- nominal_api/api_rids/__init__.py,sha256=MwCU7tf4EQBdNPY12rgPdr4y11iowEXxYqtNCvw7sdo,380
5
+ nominal_api/api_rids/__init__.py,sha256=Bu-pKUh3aS9_f5m-DZf6W_BUlVo9qYE7EDvaT-rvWQ0,423
6
6
  nominal_api/attachments_api/__init__.py,sha256=eQBE8xVTFDaTItCZv-WJSZqSStpgdai192n23pmVeeQ,634
7
- nominal_api/authentication/__init__.py,sha256=Vvna9rXXV-WMeJCk2ekq01jHzgsHHsdJl2ROtd4aRgI,272
8
7
  nominal_api/authentication_api/__init__.py,sha256=HBQrldagoqcvYES_kjB1Eh8oZTZ8SJdX85UZySJB9z0,986
9
8
  nominal_api/authorization/__init__.py,sha256=dCAUHfh4BMgGp4RW0-2b_Xrtfz5BDcljwRVaShKhFI4,972
10
9
  nominal_api/comments_api/__init__.py,sha256=bt24EdmTY513nKMrWMCsfYV0XmX7VKQgOFH4I4tKWy4,860
10
+ nominal_api/connect_download/__init__.py,sha256=PbNf7JD5wyz5R32hP03tIrALu6OxWFO0-XH7MT90TBE,154
11
11
  nominal_api/datasource/__init__.py,sha256=C2lvxiWYnZRjaMKL2sY9_bfgZezBpK39A3VtgSASgRI,134
12
12
  nominal_api/datasource_api/__init__.py,sha256=5TddGrr5x6bZdVun00Zb_BwwcQtP35Yvn1DSxZ6QZmI,2074
13
13
  nominal_api/datasource_logset/__init__.py,sha256=H3fNxqyYC490MwvdWbt5BwhgWQUev7uieaLz5hUbZDc,94
@@ -23,7 +23,7 @@ nominal_api/scout_catalog/__init__.py,sha256=ZGm4w1YKd4B-3CNxijTpB-1B653nctA_R0u
23
23
  nominal_api/scout_channelvariables_api/__init__.py,sha256=4OQV1O-M2MQE36yCGlyYftnqaXSddYTYTyGce_WC4JQ,466
24
24
  nominal_api/scout_chart_api/__init__.py,sha256=sw7WSYs6SarSW7x-3IBkSIrVea1cVFnQnpYiNKbCWnQ,184
25
25
  nominal_api/scout_chartdefinition_api/__init__.py,sha256=YiQMQEuBCSIQWWN9vBCbH1bhPlaX8pNzhA0RX-nYzRQ,8102
26
- nominal_api/scout_checklistexecution_api/__init__.py,sha256=PfMFzie0xO5d5WSpB3bE4yiRi2TQTjKn6jG5dlgU6F8,2472
26
+ nominal_api/scout_checklistexecution_api/__init__.py,sha256=FPiuWjrlG5wLVbd7KE7MKe12q-vpJuse9SnWezHQ5TQ,3173
27
27
  nominal_api/scout_checks_api/__init__.py,sha256=RJH7HsXjUhItC11V9C-hfv6lkIfiSXyxnB8slUpaT2g,5203
28
28
  nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=8BL5jE9NDxqCj9DyvZWSPhq6zw2J7xp6aLsl3x9rpyw,4530
29
29
  nominal_api/scout_comparisonrun_api/__init__.py,sha256=1LCXQe64tDqqeMQixW8PI-R_edSz7F5X0x2_ufEuC8M,480
@@ -35,7 +35,7 @@ nominal_api/scout_dataexport_api/__init__.py,sha256=pWRQdQJOObD0jITRYLw3AxeDJSrJ
35
35
  nominal_api/scout_datareview_api/__init__.py,sha256=ETAl7VWaxOk8g9uwfsKo573-3qfDNbGQ1_QBQaDPRxk,8405
36
36
  nominal_api/scout_datasource/__init__.py,sha256=1NWMrEx-JOEb4Pmd2oAqcpSmQB3g3lxgxFenWEtcF2M,101
37
37
  nominal_api/scout_datasource_connection/__init__.py,sha256=he1CCSqMBwRWnzovWCeYP8Q4m7HwAR2Ou-AeQCAhEqQ,208
38
- nominal_api/scout_datasource_connection_api/__init__.py,sha256=PHfkx3vDxibar_-lLDC_nu6Hw-Hl4giMwp7U4fYLJuQ,5056
38
+ nominal_api/scout_datasource_connection_api/__init__.py,sha256=uZDDTsvvsr_7LfkHwEIfPnV9MsHoxmoTL95e37bZ_nE,4984
39
39
  nominal_api/scout_datasource_connection_api_influx/__init__.py,sha256=PeUZYnCR7Iq92bRuygtWly-HaZ-G1MfqShxJmamiTWA,99
40
40
  nominal_api/scout_favorites/__init__.py,sha256=qiOvaWVVl3O7tXZIq_NrCWFcMx-Q-H5sA_NpIc4TFVU,98
41
41
  nominal_api/scout_favorites_api/__init__.py,sha256=mS8Qqaf8Cwl_wTvllegV4ttIWL4uot2VmsK57AbSXk0,524
@@ -55,18 +55,19 @@ nominal_api/scout_video/__init__.py,sha256=zB7mM23yGAgC529rF4gjDmqcLRbsp0kJA3xef
55
55
  nominal_api/scout_video_api/__init__.py,sha256=ns_kzZuuZPmvsFgMrX7n5xDktmOKw4iBExe7QtuowMA,3242
56
56
  nominal_api/scout_workbookcommon_api/__init__.py,sha256=6Ai0cYNOOw2A6JOlKzraTbpZwolspM-WTqVGLMN2HdI,413
57
57
  nominal_api/secrets_api/__init__.py,sha256=V5BpnbNzjdMP8kgvR2N6SEVcVyXi6Vyl_lh_5fKjJzw,736
58
+ nominal_api/security_api_workspace/__init__.py,sha256=18MQr8sUGDfaXl50sMR7objE5rBJ9dZ1Sjwuyf997dA,156
58
59
  nominal_api/storage_datasource_api/__init__.py,sha256=jh_OZE_b4nBNAvnyenBjw8aGZOnvIXR6qvUKd31fXOk,445
59
60
  nominal_api/storage_series_api/__init__.py,sha256=HapfYMCap8kDYXh7_kjsdywLqwterOB0OdVUyU3QZz8,829
60
- nominal_api/storage_writer_api/__init__.py,sha256=_yiTu5SKCx7VQBRMDmF_K8O3a4Pp_sgD1wZQeRtg_Zg,864
61
+ nominal_api/storage_writer_api/__init__.py,sha256=kr14YqN44wGfHJIy_7hti6KFq5caA1523i45P2GX8hM,909
61
62
  nominal_api/themes_api/__init__.py,sha256=w-G93T5f6_2zSSUi-ffyUHxH8QA_2oI9jM7YBSMFpwY,924
62
63
  nominal_api/timeseries_archetype/__init__.py,sha256=eKdgdZoOcZg_9pmec6J86NlgQdhxhi1282WUAFxghJ8,115
63
64
  nominal_api/timeseries_archetype_api/__init__.py,sha256=IREibRlChT9ugCAkeMKm7RiAChsKV4KJZ-DcKkVLC_U,1396
64
65
  nominal_api/timeseries_logicalseries/__init__.py,sha256=8EkKiSUli5RbCEf6CPmkiTUOyFcdiNj292eV0WgVbrs,115
65
- nominal_api/timeseries_logicalseries_api/__init__.py,sha256=KuHLafDLeHzOTl0B6j7TOgGovqlOM8Wfbwc_i0zz4ZE,3569
66
+ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=7NlQhIzOKOcjwMNUI89fn9BIEOdu3i9l6wUJWc_gcig,3638
66
67
  nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
67
68
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
68
69
  nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
69
- nominal_api-0.568.0.dist-info/METADATA,sha256=IItYovMd1abORZszmXAadbSgbnG_RB2BWkRxmOrPico,199
70
- nominal_api-0.568.0.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
71
- nominal_api-0.568.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
72
- nominal_api-0.568.0.dist-info/RECORD,,
70
+ nominal_api-0.569.0.dist-info/METADATA,sha256=oORmPykMyVguKUffyjxp86nM1d3Ug8q8BOxQpJnnwyI,199
71
+ nominal_api-0.569.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
72
+ nominal_api-0.569.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
73
+ nominal_api-0.569.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.1)
2
+ Generator: setuptools (75.8.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,8 +0,0 @@
1
- # coding=utf-8
2
- from .._impl import (
3
- authentication_AddToOrganizationRequest as AddToOrganizationRequest,
4
- authentication_AuthenticationService as AuthenticationService,
5
- authentication_CreateUserRequest as CreateUserRequest,
6
- authentication_User as User,
7
- )
8
-