nominal-api 0.567.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.567.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
@@ -64364,28 +64476,19 @@ additional timestamp metadata used to time-sync the video file.
64364
64476
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
64365
64477
  return {
64366
64478
  'source': ConjureFieldDefinition('source', api_Handle),
64367
- 'source_with_original_handle': ConjureFieldDefinition('sourceWithOriginalHandle', OptionalTypeWrapper[api_Handle]),
64368
64479
  'timestamp_manifest': ConjureFieldDefinition('timestampManifest', scout_video_api_VideoFileTimestampManifest)
64369
64480
  }
64370
64481
 
64371
- __slots__: List[str] = ['_source', '_source_with_original_handle', '_timestamp_manifest']
64482
+ __slots__: List[str] = ['_source', '_timestamp_manifest']
64372
64483
 
64373
- def __init__(self, source: "api_Handle", timestamp_manifest: "scout_video_api_VideoFileTimestampManifest", source_with_original_handle: Optional["api_Handle"] = None) -> None:
64484
+ def __init__(self, source: "api_Handle", timestamp_manifest: "scout_video_api_VideoFileTimestampManifest") -> None:
64374
64485
  self._source = source
64375
- self._source_with_original_handle = source_with_original_handle
64376
64486
  self._timestamp_manifest = timestamp_manifest
64377
64487
 
64378
64488
  @builtins.property
64379
64489
  def source(self) -> "api_Handle":
64380
64490
  return self._source
64381
64491
 
64382
- @builtins.property
64383
- def source_with_original_handle(self) -> Optional["api_Handle"]:
64384
- """
64385
- Will be present if the handle was copied from a different bucket to the Nominal bucket.
64386
- """
64387
- return self._source_with_original_handle
64388
-
64389
64492
  @builtins.property
64390
64493
  def timestamp_manifest(self) -> "scout_video_api_VideoFileTimestampManifest":
64391
64494
  return self._timestamp_manifest
@@ -65580,6 +65683,84 @@ secrets_api_UpdateSecretRequest.__qualname__ = "UpdateSecretRequest"
65580
65683
  secrets_api_UpdateSecretRequest.__module__ = "nominal_api.secrets_api"
65581
65684
 
65582
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
+
65583
65764
  class storage_datasource_api_CreateNominalDataSourceRequest(ConjureBeanType):
65584
65765
 
65585
65766
  @builtins.classmethod
@@ -65989,6 +66170,9 @@ storage_series_api_GetSeriesByChannelAndTagsRequest.__module__ = "nominal_api.st
65989
66170
 
65990
66171
 
65991
66172
  class storage_series_api_NominalDataType(ConjureEnumType):
66173
+ """
66174
+ The data types supported by Nominal's database.
66175
+ """
65992
66176
 
65993
66177
  DOUBLE = 'DOUBLE'
65994
66178
  '''DOUBLE'''
@@ -65996,6 +66180,8 @@ class storage_series_api_NominalDataType(ConjureEnumType):
65996
66180
  '''STRING'''
65997
66181
  LOG = 'LOG'
65998
66182
  '''LOG'''
66183
+ INT64 = 'INT64'
66184
+ '''INT64'''
65999
66185
  UNKNOWN = 'UNKNOWN'
66000
66186
  '''UNKNOWN'''
66001
66187
 
@@ -66503,6 +66689,35 @@ storage_writer_api_DoublePoint.__qualname__ = "DoublePoint"
66503
66689
  storage_writer_api_DoublePoint.__module__ = "nominal_api.storage_writer_api"
66504
66690
 
66505
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
+
66506
66721
  class storage_writer_api_LogPoint(ConjureBeanType):
66507
66722
 
66508
66723
  @builtins.classmethod
@@ -66808,13 +67023,15 @@ class storage_writer_api_Points(ConjureUnionType):
66808
67023
  _string: Optional[List["storage_writer_api_StringPoint"]] = None
66809
67024
  _double: Optional[List["storage_writer_api_DoublePoint"]] = None
66810
67025
  _log: Optional[List["storage_writer_api_LogPoint"]] = None
67026
+ _int_: Optional[List["storage_writer_api_IntPoint"]] = None
66811
67027
 
66812
67028
  @builtins.classmethod
66813
67029
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
66814
67030
  return {
66815
67031
  'string': ConjureFieldDefinition('string', List[storage_writer_api_StringPoint]),
66816
67032
  'double': ConjureFieldDefinition('double', List[storage_writer_api_DoublePoint]),
66817
- '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])
66818
67035
  }
66819
67036
 
66820
67037
  def __init__(
@@ -66822,10 +67039,11 @@ class storage_writer_api_Points(ConjureUnionType):
66822
67039
  string: Optional[List["storage_writer_api_StringPoint"]] = None,
66823
67040
  double: Optional[List["storage_writer_api_DoublePoint"]] = None,
66824
67041
  log: Optional[List["storage_writer_api_LogPoint"]] = None,
67042
+ int_: Optional[List["storage_writer_api_IntPoint"]] = None,
66825
67043
  type_of_union: Optional[str] = None
66826
67044
  ) -> None:
66827
67045
  if type_of_union is None:
66828
- 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:
66829
67047
  raise ValueError('a union must contain a single member')
66830
67048
 
66831
67049
  if string is not None:
@@ -66837,6 +67055,9 @@ class storage_writer_api_Points(ConjureUnionType):
66837
67055
  if log is not None:
66838
67056
  self._log = log
66839
67057
  self._type = 'log'
67058
+ if int_ is not None:
67059
+ self._int_ = int_
67060
+ self._type = 'int'
66840
67061
 
66841
67062
  elif type_of_union == 'string':
66842
67063
  if string is None:
@@ -66853,6 +67074,11 @@ class storage_writer_api_Points(ConjureUnionType):
66853
67074
  raise ValueError('a union value must not be None')
66854
67075
  self._log = log
66855
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'
66856
67082
 
66857
67083
  @builtins.property
66858
67084
  def string(self) -> Optional[List["storage_writer_api_StringPoint"]]:
@@ -66869,6 +67095,10 @@ class storage_writer_api_Points(ConjureUnionType):
66869
67095
  """
66870
67096
  return self._log
66871
67097
 
67098
+ @builtins.property
67099
+ def int_(self) -> Optional[List["storage_writer_api_IntPoint"]]:
67100
+ return self._int_
67101
+
66872
67102
  def accept(self, visitor) -> Any:
66873
67103
  if not isinstance(visitor, storage_writer_api_PointsVisitor):
66874
67104
  raise ValueError('{} is not an instance of storage_writer_api_PointsVisitor'.format(visitor.__class__.__name__))
@@ -66878,6 +67108,8 @@ class storage_writer_api_Points(ConjureUnionType):
66878
67108
  return visitor._double(self.double)
66879
67109
  if self._type == 'log' and self.log is not None:
66880
67110
  return visitor._log(self.log)
67111
+ if self._type == 'int' and self.int_ is not None:
67112
+ return visitor._int(self.int_)
66881
67113
 
66882
67114
 
66883
67115
  storage_writer_api_Points.__name__ = "Points"
@@ -66899,6 +67131,10 @@ class storage_writer_api_PointsVisitor:
66899
67131
  def _log(self, log: List["storage_writer_api_LogPoint"]) -> Any:
66900
67132
  pass
66901
67133
 
67134
+ @abstractmethod
67135
+ def _int(self, int_: List["storage_writer_api_IntPoint"]) -> Any:
67136
+ pass
67137
+
66902
67138
 
66903
67139
  storage_writer_api_PointsVisitor.__name__ = "PointsVisitor"
66904
67140
  storage_writer_api_PointsVisitor.__qualname__ = "PointsVisitor"
@@ -68071,12 +68307,12 @@ class timeseries_archetype_api_BigQueryLocatorTemplate(ConjureBeanType):
68071
68307
  return {
68072
68308
  'value_column': ConjureFieldDefinition('valueColumn', timeseries_logicalseries_api_ColumnName),
68073
68309
  'time_column': ConjureFieldDefinition('timeColumn', timeseries_logicalseries_api_ColumnName),
68074
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
68310
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_BigQueryType)
68075
68311
  }
68076
68312
 
68077
68313
  __slots__: List[str] = ['_value_column', '_time_column', '_type']
68078
68314
 
68079
- 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:
68080
68316
  self._value_column = value_column
68081
68317
  self._time_column = time_column
68082
68318
  self._type = type
@@ -68090,7 +68326,7 @@ class timeseries_archetype_api_BigQueryLocatorTemplate(ConjureBeanType):
68090
68326
  return self._time_column
68091
68327
 
68092
68328
  @builtins.property
68093
- def type(self) -> "timeseries_logicalseries_api_NominalType":
68329
+ def type(self) -> "timeseries_logicalseries_api_BigQueryType":
68094
68330
  return self._type
68095
68331
 
68096
68332
 
@@ -68438,12 +68674,12 @@ class timeseries_archetype_api_NominalLocatorTemplate(ConjureBeanType):
68438
68674
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
68439
68675
  return {
68440
68676
  'channel': ConjureFieldDefinition('channel', api_Channel),
68441
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
68677
+ 'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
68442
68678
  }
68443
68679
 
68444
68680
  __slots__: List[str] = ['_channel', '_type']
68445
68681
 
68446
- def __init__(self, channel: str, type: "timeseries_logicalseries_api_NominalType") -> None:
68682
+ def __init__(self, channel: str, type: "storage_series_api_NominalDataType") -> None:
68447
68683
  self._channel = channel
68448
68684
  self._type = type
68449
68685
 
@@ -68452,7 +68688,7 @@ class timeseries_archetype_api_NominalLocatorTemplate(ConjureBeanType):
68452
68688
  return self._channel
68453
68689
 
68454
68690
  @builtins.property
68455
- def type(self) -> "timeseries_logicalseries_api_NominalType":
68691
+ def type(self) -> "storage_series_api_NominalDataType":
68456
68692
  return self._type
68457
68693
 
68458
68694
 
@@ -68584,12 +68820,12 @@ class timeseries_archetype_api_TimestreamLocatorTemplate(ConjureBeanType):
68584
68820
  'table': ConjureFieldDefinition('table', timeseries_logicalseries_api_TableName),
68585
68821
  'measure': ConjureFieldDefinition('measure', timeseries_logicalseries_api_MeasureName),
68586
68822
  'attribute': ConjureFieldDefinition('attribute', OptionalTypeWrapper[timeseries_logicalseries_api_AttributeName]),
68587
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
68823
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_TimestreamType)
68588
68824
  }
68589
68825
 
68590
68826
  __slots__: List[str] = ['_table', '_measure', '_attribute', '_type']
68591
68827
 
68592
- 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:
68593
68829
  self._table = table
68594
68830
  self._measure = measure
68595
68831
  self._attribute = attribute
@@ -68608,7 +68844,7 @@ class timeseries_archetype_api_TimestreamLocatorTemplate(ConjureBeanType):
68608
68844
  return self._attribute
68609
68845
 
68610
68846
  @builtins.property
68611
- def type(self) -> "timeseries_logicalseries_api_NominalType":
68847
+ def type(self) -> "timeseries_logicalseries_api_TimestreamType":
68612
68848
  return self._type
68613
68849
 
68614
68850
 
@@ -69044,12 +69280,12 @@ class timeseries_logicalseries_api_BigQueryLocator(ConjureBeanType):
69044
69280
  'value_column': ConjureFieldDefinition('valueColumn', timeseries_logicalseries_api_ColumnName),
69045
69281
  'time_column': ConjureFieldDefinition('timeColumn', timeseries_logicalseries_api_ColumnName),
69046
69282
  'tag_values': ConjureFieldDefinition('tagValues', Dict[api_TagName, api_TagValue]),
69047
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
69283
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_BigQueryType)
69048
69284
  }
69049
69285
 
69050
69286
  __slots__: List[str] = ['_value_column', '_time_column', '_tag_values', '_type']
69051
69287
 
69052
- 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:
69053
69289
  self._value_column = value_column
69054
69290
  self._time_column = time_column
69055
69291
  self._tag_values = tag_values
@@ -69077,7 +69313,7 @@ class timeseries_logicalseries_api_BigQueryLocator(ConjureBeanType):
69077
69313
  return self._tag_values
69078
69314
 
69079
69315
  @builtins.property
69080
- def type(self) -> "timeseries_logicalseries_api_NominalType":
69316
+ def type(self) -> "timeseries_logicalseries_api_BigQueryType":
69081
69317
  return self._type
69082
69318
 
69083
69319
 
@@ -69086,6 +69322,24 @@ timeseries_logicalseries_api_BigQueryLocator.__qualname__ = "BigQueryLocator"
69086
69322
  timeseries_logicalseries_api_BigQueryLocator.__module__ = "nominal_api.timeseries_logicalseries_api"
69087
69323
 
69088
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
+
69089
69343
  class timeseries_logicalseries_api_Confidence(ConjureEnumType):
69090
69344
 
69091
69345
  LOW = 'LOW'
@@ -69826,12 +70080,12 @@ class timeseries_logicalseries_api_NominalLocator(ConjureBeanType):
69826
70080
  return {
69827
70081
  'channel': ConjureFieldDefinition('channel', api_Channel),
69828
70082
  'tags': ConjureFieldDefinition('tags', Dict[api_TagName, api_TagValue]),
69829
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
70083
+ 'type': ConjureFieldDefinition('type', storage_series_api_NominalDataType)
69830
70084
  }
69831
70085
 
69832
70086
  __slots__: List[str] = ['_channel', '_tags', '_type']
69833
70087
 
69834
- 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:
69835
70089
  self._channel = channel
69836
70090
  self._tags = tags
69837
70091
  self._type = type
@@ -69845,7 +70099,7 @@ class timeseries_logicalseries_api_NominalLocator(ConjureBeanType):
69845
70099
  return self._tags
69846
70100
 
69847
70101
  @builtins.property
69848
- def type(self) -> "timeseries_logicalseries_api_NominalType":
70102
+ def type(self) -> "storage_series_api_NominalDataType":
69849
70103
  return self._type
69850
70104
 
69851
70105
 
@@ -69854,26 +70108,6 @@ timeseries_logicalseries_api_NominalLocator.__qualname__ = "NominalLocator"
69854
70108
  timeseries_logicalseries_api_NominalLocator.__module__ = "nominal_api.timeseries_logicalseries_api"
69855
70109
 
69856
70110
 
69857
- class timeseries_logicalseries_api_NominalType(ConjureEnumType):
69858
-
69859
- DOUBLE = 'DOUBLE'
69860
- '''DOUBLE'''
69861
- STRING = 'STRING'
69862
- '''STRING'''
69863
- LOG = 'LOG'
69864
- '''LOG'''
69865
- UNKNOWN = 'UNKNOWN'
69866
- '''UNKNOWN'''
69867
-
69868
- def __reduce_ex__(self, proto):
69869
- return self.__class__, (self.name,)
69870
-
69871
-
69872
- timeseries_logicalseries_api_NominalType.__name__ = "NominalType"
69873
- timeseries_logicalseries_api_NominalType.__qualname__ = "NominalType"
69874
- timeseries_logicalseries_api_NominalType.__module__ = "nominal_api.timeseries_logicalseries_api"
69875
-
69876
-
69877
70111
  class timeseries_logicalseries_api_ResolveSeriesError(ConjureBeanType):
69878
70112
 
69879
70113
  @builtins.classmethod
@@ -70097,12 +70331,12 @@ class timeseries_logicalseries_api_TimestreamLocator(ConjureBeanType):
70097
70331
  'dimensions': ConjureFieldDefinition('dimensions', Dict[api_TagName, api_TagValue]),
70098
70332
  'measure': ConjureFieldDefinition('measure', timeseries_logicalseries_api_MeasureName),
70099
70333
  'attribute': ConjureFieldDefinition('attribute', OptionalTypeWrapper[timeseries_logicalseries_api_AttributeName]),
70100
- 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_NominalType)
70334
+ 'type': ConjureFieldDefinition('type', timeseries_logicalseries_api_TimestreamType)
70101
70335
  }
70102
70336
 
70103
70337
  __slots__: List[str] = ['_table', '_dimensions', '_measure', '_attribute', '_type']
70104
70338
 
70105
- 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:
70106
70340
  self._table = table
70107
70341
  self._dimensions = dimensions
70108
70342
  self._measure = measure
@@ -70129,7 +70363,7 @@ class timeseries_logicalseries_api_TimestreamLocator(ConjureBeanType):
70129
70363
  return self._attribute
70130
70364
 
70131
70365
  @builtins.property
70132
- def type(self) -> "timeseries_logicalseries_api_NominalType":
70366
+ def type(self) -> "timeseries_logicalseries_api_TimestreamType":
70133
70367
  return self._type
70134
70368
 
70135
70369
 
@@ -70138,6 +70372,24 @@ timeseries_logicalseries_api_TimestreamLocator.__qualname__ = "TimestreamLocator
70138
70372
  timeseries_logicalseries_api_TimestreamLocator.__module__ = "nominal_api.timeseries_logicalseries_api"
70139
70373
 
70140
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
+
70141
70393
  class timeseries_logicalseries_api_UnitUpdate(ConjureUnionType):
70142
70394
  """UnitUpdate is used to either set a unit, or to clear an existing unit."""
70143
70395
  _unit: Optional[str] = None
@@ -71270,8 +71522,6 @@ api_PropertyValue = str
71270
71522
 
71271
71523
  timeseries_logicalseries_api_AttributeName = str
71272
71524
 
71273
- authentication_api_OrgRid = str
71274
-
71275
71525
  themes_api_ChartThemeRid = str
71276
71526
 
71277
71527
  scout_rids_api_SnapshotRid = str
@@ -71296,6 +71546,8 @@ scout_versioning_api_BranchRid = str
71296
71546
 
71297
71547
  datasource_DatasetFileId = str
71298
71548
 
71549
+ api_rids_WorkspaceRid = str
71550
+
71299
71551
  api_McapChannelTopic = str
71300
71552
 
71301
71553
  scout_compute_api_VariableName = str
@@ -71496,14 +71748,14 @@ scout_chartdefinition_api_DataSourceRefName = str
71496
71748
 
71497
71749
  api_LogicalSeriesRid = str
71498
71750
 
71751
+ authentication_api_OrgRid = str
71752
+
71499
71753
  scout_rids_api_ChecklistRid = str
71500
71754
 
71501
71755
  scout_chartdefinition_api_WorkbookVizDefinitionMap = Dict[scout_rids_api_VizId, scout_chartdefinition_api_VizDefinition]
71502
71756
 
71503
71757
  api_McapChannelId = int
71504
71758
 
71505
- scout_datasource_connection_api_OrganizationRid = str
71506
-
71507
71759
  scout_rids_api_CheckRid = str
71508
71760
 
71509
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.567.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=nFQzE4ruUoXeLP7wcJje7hiMlpwIiKZ3t4K-Y8Qg5ZM,1791
2
- nominal_api/_impl.py,sha256=_FT36Rf07rZc-WEmd_YA8CcYhg5PSbDBye71F6XJHyg,2758456
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.567.0.dist-info/METADATA,sha256=y-V5RhXvcXSNjkNEfW_EMd-UZfRqQs6MnVwTqP4-OL8,199
70
- nominal_api-0.567.0.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
71
- nominal_api-0.567.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
72
- nominal_api-0.567.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
-