nominal-api 0.971.0__py3-none-any.whl → 0.1020.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nominal-api might be problematic. Click here for more details.
- nominal_api/__init__.py +1 -1
- nominal_api/_impl.py +5909 -1135
- nominal_api/api_rids/__init__.py +2 -0
- nominal_api/authorization/__init__.py +14 -0
- nominal_api/event/__init__.py +8 -0
- nominal_api/ingest_api/__init__.py +10 -0
- nominal_api/ingest_workflow_api/__init__.py +0 -4
- nominal_api/nominal-api.conjure.json +95123 -0
- nominal_api/scout_chartdefinition_api/__init__.py +34 -0
- nominal_api/scout_comparisonnotebook_api/__init__.py +2 -0
- nominal_api/scout_compute_api/__init__.py +60 -16
- nominal_api/scout_compute_resolved_api/__init__.py +30 -2
- nominal_api/scout_notebook_api/__init__.py +6 -0
- nominal_api/scout_rids_api/__init__.py +16 -0
- nominal_api/scout_savedviews_api/__init__.py +2 -0
- nominal_api/scout_workbookcommon_api/__init__.py +28 -0
- nominal_api/storage_writer_api/__init__.py +4 -0
- nominal_api/timeseries_logicalseries_api/__init__.py +2 -0
- nominal_api/timeseries_metadata_api/__init__.py +12 -0
- {nominal_api-0.971.0.dist-info → nominal_api-0.1020.0.dist-info}/METADATA +1 -1
- {nominal_api-0.971.0.dist-info → nominal_api-0.1020.0.dist-info}/RECORD +23 -22
- {nominal_api-0.971.0.dist-info → nominal_api-0.1020.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.971.0.dist-info → nominal_api-0.1020.0.dist-info}/top_level.txt +0 -0
nominal_api/api_rids/__init__.py
CHANGED
|
@@ -5,6 +5,7 @@ from .._impl import (
|
|
|
5
5
|
api_rids_AutomaticCheckEvaluationRid as AutomaticCheckEvaluationRid,
|
|
6
6
|
api_rids_ChunkRid as ChunkRid,
|
|
7
7
|
api_rids_ConnectAppRid as ConnectAppRid,
|
|
8
|
+
api_rids_DataConnectorRid as DataConnectorRid,
|
|
8
9
|
api_rids_DataSourceRid as DataSourceRid,
|
|
9
10
|
api_rids_DatasetRid as DatasetRid,
|
|
10
11
|
api_rids_EdgeSyncSourceRid as EdgeSyncSourceRid,
|
|
@@ -27,6 +28,7 @@ __all__ = [
|
|
|
27
28
|
'AutomaticCheckEvaluationRid',
|
|
28
29
|
'ChunkRid',
|
|
29
30
|
'ConnectAppRid',
|
|
31
|
+
'DataConnectorRid',
|
|
30
32
|
'DataSourceRid',
|
|
31
33
|
'DatasetRid',
|
|
32
34
|
'EdgeSyncSourceRid',
|
|
@@ -16,6 +16,13 @@ from .._impl import (
|
|
|
16
16
|
authorization_IsEmailAllowedResponse as IsEmailAllowedResponse,
|
|
17
17
|
authorization_ListApiKeyRequest as ListApiKeyRequest,
|
|
18
18
|
authorization_ListApiKeyResponse as ListApiKeyResponse,
|
|
19
|
+
authorization_OktaRegistrationEventData as OktaRegistrationEventData,
|
|
20
|
+
authorization_OktaRegistrationRequest as OktaRegistrationRequest,
|
|
21
|
+
authorization_OktaRegistrationResponse as OktaRegistrationResponse,
|
|
22
|
+
authorization_OktaRegistrationStatus as OktaRegistrationStatus,
|
|
23
|
+
authorization_OktaRegistrationUserProfile as OktaRegistrationUserProfile,
|
|
24
|
+
authorization_OktaUpdateActionCommand as OktaUpdateActionCommand,
|
|
25
|
+
authorization_OktaUpdateActionValue as OktaUpdateActionValue,
|
|
19
26
|
authorization_RegisterInWorkspaceRequest as RegisterInWorkspaceRequest,
|
|
20
27
|
)
|
|
21
28
|
|
|
@@ -34,6 +41,13 @@ __all__ = [
|
|
|
34
41
|
'IsEmailAllowedResponse',
|
|
35
42
|
'ListApiKeyRequest',
|
|
36
43
|
'ListApiKeyResponse',
|
|
44
|
+
'OktaRegistrationEventData',
|
|
45
|
+
'OktaRegistrationRequest',
|
|
46
|
+
'OktaRegistrationResponse',
|
|
47
|
+
'OktaRegistrationStatus',
|
|
48
|
+
'OktaRegistrationUserProfile',
|
|
49
|
+
'OktaUpdateActionCommand',
|
|
50
|
+
'OktaUpdateActionValue',
|
|
37
51
|
'RegisterInWorkspaceRequest',
|
|
38
52
|
'AuthorizationService',
|
|
39
53
|
'InternalApiKeyService',
|
nominal_api/event/__init__.py
CHANGED
|
@@ -9,6 +9,8 @@ from .._impl import (
|
|
|
9
9
|
event_ArchiveEvent as ArchiveEvent,
|
|
10
10
|
event_AssetsFilter as AssetsFilter,
|
|
11
11
|
event_AssigneesFilter as AssigneesFilter,
|
|
12
|
+
event_BatchAggregateEventsRequest as BatchAggregateEventsRequest,
|
|
13
|
+
event_BatchAggregateEventsResponse as BatchAggregateEventsResponse,
|
|
12
14
|
event_BatchUpdateDispositionRequest as BatchUpdateDispositionRequest,
|
|
13
15
|
event_BatchUpdateDispositionResponse as BatchUpdateDispositionResponse,
|
|
14
16
|
event_BatchUpdateEventRequest as BatchUpdateEventRequest,
|
|
@@ -43,6 +45,8 @@ from .._impl import (
|
|
|
43
45
|
event_SearchQueryVisitor as SearchQueryVisitor,
|
|
44
46
|
event_SortField as SortField,
|
|
45
47
|
event_SortOptions as SortOptions,
|
|
48
|
+
event_StreamingCheckOriginMetadata as StreamingCheckOriginMetadata,
|
|
49
|
+
event_StreamingChecklistEventOrigin as StreamingChecklistEventOrigin,
|
|
46
50
|
event_TemplateEventOrigin as TemplateEventOrigin,
|
|
47
51
|
event_TimeSeriesChannelAssociation as TimeSeriesChannelAssociation,
|
|
48
52
|
event_UpdateDispositionRequest as UpdateDispositionRequest,
|
|
@@ -63,6 +67,8 @@ __all__ = [
|
|
|
63
67
|
'ArchiveEvent',
|
|
64
68
|
'AssetsFilter',
|
|
65
69
|
'AssigneesFilter',
|
|
70
|
+
'BatchAggregateEventsRequest',
|
|
71
|
+
'BatchAggregateEventsResponse',
|
|
66
72
|
'BatchUpdateDispositionRequest',
|
|
67
73
|
'BatchUpdateDispositionResponse',
|
|
68
74
|
'BatchUpdateEventRequest',
|
|
@@ -96,6 +102,8 @@ __all__ = [
|
|
|
96
102
|
'SearchQueryVisitor',
|
|
97
103
|
'SortField',
|
|
98
104
|
'SortOptions',
|
|
105
|
+
'StreamingCheckOriginMetadata',
|
|
106
|
+
'StreamingChecklistEventOrigin',
|
|
99
107
|
'TemplateEventOrigin',
|
|
100
108
|
'TimeSeriesChannelAssociation',
|
|
101
109
|
'UpdateDispositionRequest',
|
|
@@ -13,6 +13,7 @@ from .._impl import (
|
|
|
13
13
|
ingest_api_ContainerizedExtractorRid as ContainerizedExtractorRid,
|
|
14
14
|
ingest_api_ContainerizedExtractorService as ContainerizedExtractorService,
|
|
15
15
|
ingest_api_ContainerizedOpts as ContainerizedOpts,
|
|
16
|
+
ingest_api_CreateIngestJobRequest as CreateIngestJobRequest,
|
|
16
17
|
ingest_api_CsvOpts as CsvOpts,
|
|
17
18
|
ingest_api_CustomTimestamp as CustomTimestamp,
|
|
18
19
|
ingest_api_DataSourceRefName as DataSourceRefName,
|
|
@@ -48,6 +49,7 @@ from .._impl import (
|
|
|
48
49
|
ingest_api_IngestJobRequest as IngestJobRequest,
|
|
49
50
|
ingest_api_IngestJobRequestVisitor as IngestJobRequestVisitor,
|
|
50
51
|
ingest_api_IngestJobRid as IngestJobRid,
|
|
52
|
+
ingest_api_IngestJobService as IngestJobService,
|
|
51
53
|
ingest_api_IngestJobStatus as IngestJobStatus,
|
|
52
54
|
ingest_api_IngestMcapRequest as IngestMcapRequest,
|
|
53
55
|
ingest_api_IngestMcapResponse as IngestMcapResponse,
|
|
@@ -71,6 +73,8 @@ from .._impl import (
|
|
|
71
73
|
ingest_api_IngestVideoResponse as IngestVideoResponse,
|
|
72
74
|
ingest_api_InitiateMultipartUploadRequest as InitiateMultipartUploadRequest,
|
|
73
75
|
ingest_api_InitiateMultipartUploadResponse as InitiateMultipartUploadResponse,
|
|
76
|
+
ingest_api_InternalIngestJob as InternalIngestJob,
|
|
77
|
+
ingest_api_InternalIngestJobService as InternalIngestJobService,
|
|
74
78
|
ingest_api_Iso8601Timestamp as Iso8601Timestamp,
|
|
75
79
|
ingest_api_JournalJsonOpts as JournalJsonOpts,
|
|
76
80
|
ingest_api_JournalTimestampMetadata as JournalTimestampMetadata,
|
|
@@ -126,6 +130,7 @@ from .._impl import (
|
|
|
126
130
|
ingest_api_VideoIngestTarget as VideoIngestTarget,
|
|
127
131
|
ingest_api_VideoIngestTargetVisitor as VideoIngestTargetVisitor,
|
|
128
132
|
ingest_api_VideoOpts as VideoOpts,
|
|
133
|
+
ingest_api_VideoOptsV2 as VideoOptsV2,
|
|
129
134
|
ingest_api_VideoTimestampManifest as VideoTimestampManifest,
|
|
130
135
|
ingest_api_VideoTimestampManifestVisitor as VideoTimestampManifestVisitor,
|
|
131
136
|
)
|
|
@@ -143,6 +148,7 @@ __all__ = [
|
|
|
143
148
|
'ContainerizedExtractor',
|
|
144
149
|
'ContainerizedExtractorRid',
|
|
145
150
|
'ContainerizedOpts',
|
|
151
|
+
'CreateIngestJobRequest',
|
|
146
152
|
'CsvOpts',
|
|
147
153
|
'CustomTimestamp',
|
|
148
154
|
'DataSourceRefName',
|
|
@@ -200,6 +206,7 @@ __all__ = [
|
|
|
200
206
|
'IngestVideoResponse',
|
|
201
207
|
'InitiateMultipartUploadRequest',
|
|
202
208
|
'InitiateMultipartUploadResponse',
|
|
209
|
+
'InternalIngestJob',
|
|
203
210
|
'Iso8601Timestamp',
|
|
204
211
|
'JournalJsonOpts',
|
|
205
212
|
'JournalTimestampMetadata',
|
|
@@ -255,9 +262,12 @@ __all__ = [
|
|
|
255
262
|
'VideoIngestTarget',
|
|
256
263
|
'VideoIngestTargetVisitor',
|
|
257
264
|
'VideoOpts',
|
|
265
|
+
'VideoOptsV2',
|
|
258
266
|
'VideoTimestampManifest',
|
|
259
267
|
'VideoTimestampManifestVisitor',
|
|
260
268
|
'ContainerizedExtractorService',
|
|
269
|
+
'IngestJobService',
|
|
261
270
|
'IngestService',
|
|
271
|
+
'InternalIngestJobService',
|
|
262
272
|
]
|
|
263
273
|
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
-
ingest_workflow_api_CreateIngestJobRequest as CreateIngestJobRequest,
|
|
4
3
|
ingest_workflow_api_Empty as Empty,
|
|
5
4
|
ingest_workflow_api_EnsureExtractorJobCreatedRequest as EnsureExtractorJobCreatedRequest,
|
|
6
5
|
ingest_workflow_api_EnsureExtractorJobCreatedResponse as EnsureExtractorJobCreatedResponse,
|
|
@@ -16,7 +15,6 @@ from .._impl import (
|
|
|
16
15
|
ingest_workflow_api_GetExtractorJobStateResponse as GetExtractorJobStateResponse,
|
|
17
16
|
ingest_workflow_api_IngestDataflashRequest as IngestDataflashRequest,
|
|
18
17
|
ingest_workflow_api_IngestDataflashResponse as IngestDataflashResponse,
|
|
19
|
-
ingest_workflow_api_IngestInternalService as IngestInternalService,
|
|
20
18
|
ingest_workflow_api_IngestMcapProtobufRequest as IngestMcapProtobufRequest,
|
|
21
19
|
ingest_workflow_api_IngestMcapProtobufResponse as IngestMcapProtobufResponse,
|
|
22
20
|
ingest_workflow_api_McapProtoChannels as McapProtoChannels,
|
|
@@ -31,7 +29,6 @@ from .._impl import (
|
|
|
31
29
|
)
|
|
32
30
|
|
|
33
31
|
__all__ = [
|
|
34
|
-
'CreateIngestJobRequest',
|
|
35
32
|
'Empty',
|
|
36
33
|
'EnsureExtractorJobCreatedRequest',
|
|
37
34
|
'EnsureExtractorJobCreatedResponse',
|
|
@@ -58,6 +55,5 @@ __all__ = [
|
|
|
58
55
|
'PresignedUrl',
|
|
59
56
|
'TimeUnitSeconds',
|
|
60
57
|
'ValidatedFileInput',
|
|
61
|
-
'IngestInternalService',
|
|
62
58
|
]
|
|
63
59
|
|