nominal-api 0.961.0__py3-none-any.whl → 0.1060.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.
- nominal_api/__init__.py +1 -3
- nominal_api/_impl.py +9549 -3769
- nominal_api/api/__init__.py +4 -0
- nominal_api/api_rids/__init__.py +4 -0
- nominal_api/authentication_api/__init__.py +10 -0
- nominal_api/authorization/__init__.py +18 -0
- nominal_api/datasource/__init__.py +6 -0
- nominal_api/event/__init__.py +28 -0
- nominal_api/ingest_api/__init__.py +10 -0
- nominal_api/ingest_workflow_api/__init__.py +0 -4
- nominal_api/module/__init__.py +0 -32
- nominal_api/module_internal/__init__.py +0 -8
- nominal_api/nominal-api.conjure.json +96080 -0
- nominal_api/persistent_compute_api/__init__.py +8 -0
- nominal_api/scout_catalog/__init__.py +6 -0
- nominal_api/scout_chartdefinition_api/__init__.py +48 -0
- nominal_api/scout_comparisonnotebook_api/__init__.py +2 -0
- nominal_api/scout_compute_api/__init__.py +60 -48
- nominal_api/scout_compute_resolved_api/__init__.py +30 -18
- nominal_api/scout_dataexport_api/__init__.py +4 -0
- nominal_api/scout_datasource_connection_api/__init__.py +2 -0
- nominal_api/scout_integrations_api/__init__.py +24 -0
- 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 +28 -0
- nominal_api/scout_video_api/__init__.py +16 -0
- nominal_api/scout_workbookcommon_api/__init__.py +28 -0
- nominal_api/secrets_api/__init__.py +4 -0
- nominal_api/storage_writer_api/__init__.py +6 -0
- nominal_api/timeseries_metadata_api/__init__.py +12 -0
- {nominal_api-0.961.0.dist-info → nominal_api-0.1060.0.dist-info}/METADATA +1 -1
- {nominal_api-0.961.0.dist-info → nominal_api-0.1060.0.dist-info}/RECORD +34 -35
- nominal_api/datasource_logset/__init__.py +0 -9
- nominal_api/datasource_logset_api/__init__.py +0 -39
- {nominal_api-0.961.0.dist-info → nominal_api-0.1060.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.961.0.dist-info → nominal_api-0.1060.0.dist-info}/top_level.txt +0 -0
nominal_api/api/__init__.py
CHANGED
|
@@ -5,6 +5,8 @@ from .._impl import (
|
|
|
5
5
|
api_ColumnName as ColumnName,
|
|
6
6
|
api_DataSourceRefName as DataSourceRefName,
|
|
7
7
|
api_DataSourceType as DataSourceType,
|
|
8
|
+
api_Deleted as Deleted,
|
|
9
|
+
api_DeletionInProgress as DeletionInProgress,
|
|
8
10
|
api_Empty as Empty,
|
|
9
11
|
api_ErrorResult as ErrorResult,
|
|
10
12
|
api_ErrorType as ErrorType,
|
|
@@ -47,6 +49,8 @@ __all__ = [
|
|
|
47
49
|
'ColumnName',
|
|
48
50
|
'DataSourceRefName',
|
|
49
51
|
'DataSourceType',
|
|
52
|
+
'Deleted',
|
|
53
|
+
'DeletionInProgress',
|
|
50
54
|
'Empty',
|
|
51
55
|
'ErrorResult',
|
|
52
56
|
'ErrorType',
|
nominal_api/api_rids/__init__.py
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
+
api_rids_AiConversationRid as AiConversationRid,
|
|
3
4
|
api_rids_AttachmentRid as AttachmentRid,
|
|
4
5
|
api_rids_AutomaticCheckEvaluationRid as AutomaticCheckEvaluationRid,
|
|
5
6
|
api_rids_ChunkRid as ChunkRid,
|
|
6
7
|
api_rids_ConnectAppRid as ConnectAppRid,
|
|
8
|
+
api_rids_DataConnectorRid as DataConnectorRid,
|
|
7
9
|
api_rids_DataSourceRid as DataSourceRid,
|
|
8
10
|
api_rids_DatasetRid as DatasetRid,
|
|
9
11
|
api_rids_EdgeSyncSourceRid as EdgeSyncSourceRid,
|
|
@@ -21,10 +23,12 @@ from .._impl import (
|
|
|
21
23
|
)
|
|
22
24
|
|
|
23
25
|
__all__ = [
|
|
26
|
+
'AiConversationRid',
|
|
24
27
|
'AttachmentRid',
|
|
25
28
|
'AutomaticCheckEvaluationRid',
|
|
26
29
|
'ChunkRid',
|
|
27
30
|
'ConnectAppRid',
|
|
31
|
+
'DataConnectorRid',
|
|
28
32
|
'DataSourceRid',
|
|
29
33
|
'DatasetRid',
|
|
30
34
|
'EdgeSyncSourceRid',
|
|
@@ -2,9 +2,14 @@
|
|
|
2
2
|
from .._impl import (
|
|
3
3
|
authentication_api_AppearanceSetting as AppearanceSetting,
|
|
4
4
|
authentication_api_AuthenticationServiceV2 as AuthenticationServiceV2,
|
|
5
|
+
authentication_api_ChartTooltipModeSetting as ChartTooltipModeSetting,
|
|
6
|
+
authentication_api_CoachmarkDismissal as CoachmarkDismissal,
|
|
5
7
|
authentication_api_DefaultTimeRangeTypeSetting as DefaultTimeRangeTypeSetting,
|
|
8
|
+
authentication_api_DismissCoachmarkRequest as DismissCoachmarkRequest,
|
|
6
9
|
authentication_api_GenerateMediaMtxTokenRequest as GenerateMediaMtxTokenRequest,
|
|
7
10
|
authentication_api_GenerateMediaMtxTokenResponse as GenerateMediaMtxTokenResponse,
|
|
11
|
+
authentication_api_GetCoachmarkDismissalsRequest as GetCoachmarkDismissalsRequest,
|
|
12
|
+
authentication_api_GetCoachmarkDismissalsResponse as GetCoachmarkDismissalsResponse,
|
|
8
13
|
authentication_api_Jwk as Jwk,
|
|
9
14
|
authentication_api_Jwks as Jwks,
|
|
10
15
|
authentication_api_MediaMtxPermission as MediaMtxPermission,
|
|
@@ -25,9 +30,14 @@ from .._impl import (
|
|
|
25
30
|
|
|
26
31
|
__all__ = [
|
|
27
32
|
'AppearanceSetting',
|
|
33
|
+
'ChartTooltipModeSetting',
|
|
34
|
+
'CoachmarkDismissal',
|
|
28
35
|
'DefaultTimeRangeTypeSetting',
|
|
36
|
+
'DismissCoachmarkRequest',
|
|
29
37
|
'GenerateMediaMtxTokenRequest',
|
|
30
38
|
'GenerateMediaMtxTokenResponse',
|
|
39
|
+
'GetCoachmarkDismissalsRequest',
|
|
40
|
+
'GetCoachmarkDismissalsResponse',
|
|
31
41
|
'Jwk',
|
|
32
42
|
'Jwks',
|
|
33
43
|
'MediaMtxPermission',
|
|
@@ -16,6 +16,15 @@ 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,
|
|
26
|
+
authorization_RefreshAccessTokenRequest as RefreshAccessTokenRequest,
|
|
27
|
+
authorization_RefreshAccessTokenResponse as RefreshAccessTokenResponse,
|
|
19
28
|
authorization_RegisterInWorkspaceRequest as RegisterInWorkspaceRequest,
|
|
20
29
|
)
|
|
21
30
|
|
|
@@ -34,6 +43,15 @@ __all__ = [
|
|
|
34
43
|
'IsEmailAllowedResponse',
|
|
35
44
|
'ListApiKeyRequest',
|
|
36
45
|
'ListApiKeyResponse',
|
|
46
|
+
'OktaRegistrationEventData',
|
|
47
|
+
'OktaRegistrationRequest',
|
|
48
|
+
'OktaRegistrationResponse',
|
|
49
|
+
'OktaRegistrationStatus',
|
|
50
|
+
'OktaRegistrationUserProfile',
|
|
51
|
+
'OktaUpdateActionCommand',
|
|
52
|
+
'OktaUpdateActionValue',
|
|
53
|
+
'RefreshAccessTokenRequest',
|
|
54
|
+
'RefreshAccessTokenResponse',
|
|
37
55
|
'RegisterInWorkspaceRequest',
|
|
38
56
|
'AuthorizationService',
|
|
39
57
|
'InternalApiKeyService',
|
|
@@ -2,10 +2,16 @@
|
|
|
2
2
|
from .._impl import (
|
|
3
3
|
datasource_DatasetFileId as DatasetFileId,
|
|
4
4
|
datasource_TimestampType as TimestampType,
|
|
5
|
+
datasource_VideoFileId as VideoFileId,
|
|
6
|
+
datasource_VideoFileMetadata as VideoFileMetadata,
|
|
7
|
+
datasource_VideoSegmentsMetadata as VideoSegmentsMetadata,
|
|
5
8
|
)
|
|
6
9
|
|
|
7
10
|
__all__ = [
|
|
8
11
|
'DatasetFileId',
|
|
9
12
|
'TimestampType',
|
|
13
|
+
'VideoFileId',
|
|
14
|
+
'VideoFileMetadata',
|
|
15
|
+
'VideoSegmentsMetadata',
|
|
10
16
|
]
|
|
11
17
|
|
nominal_api/event/__init__.py
CHANGED
|
@@ -1,14 +1,25 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
+
event_AggregateEventsRequest as AggregateEventsRequest,
|
|
4
|
+
event_AggregateEventsResponse as AggregateEventsResponse,
|
|
5
|
+
event_AggregateType as AggregateType,
|
|
6
|
+
event_AggregateValue as AggregateValue,
|
|
7
|
+
event_AggregateValueVisitor as AggregateValueVisitor,
|
|
3
8
|
event_ApiEventOrigin as ApiEventOrigin,
|
|
4
9
|
event_ArchiveEvent as ArchiveEvent,
|
|
10
|
+
event_AssetsFilter as AssetsFilter,
|
|
11
|
+
event_AssigneesFilter as AssigneesFilter,
|
|
12
|
+
event_BatchAggregateEventsRequest as BatchAggregateEventsRequest,
|
|
13
|
+
event_BatchAggregateEventsResponse as BatchAggregateEventsResponse,
|
|
5
14
|
event_BatchUpdateDispositionRequest as BatchUpdateDispositionRequest,
|
|
6
15
|
event_BatchUpdateDispositionResponse as BatchUpdateDispositionResponse,
|
|
7
16
|
event_BatchUpdateEventRequest as BatchUpdateEventRequest,
|
|
8
17
|
event_BatchUpdateEventResponse as BatchUpdateEventResponse,
|
|
9
18
|
event_CheckOriginMetadata as CheckOriginMetadata,
|
|
10
19
|
event_CreateEvent as CreateEvent,
|
|
20
|
+
event_DataReviewChecksFilter as DataReviewChecksFilter,
|
|
11
21
|
event_DataReviewEventOrigin as DataReviewEventOrigin,
|
|
22
|
+
event_DataReviewsFilter as DataReviewsFilter,
|
|
12
23
|
event_Event as Event,
|
|
13
24
|
event_EventDisposition as EventDisposition,
|
|
14
25
|
event_EventDispositionStatus as EventDispositionStatus,
|
|
@@ -25,6 +36,7 @@ from .._impl import (
|
|
|
25
36
|
event_HistogramFilterQuery as HistogramFilterQuery,
|
|
26
37
|
event_HistogramFilterQueryVisitor as HistogramFilterQueryVisitor,
|
|
27
38
|
event_ListPropertiesAndLabelsRequest as ListPropertiesAndLabelsRequest,
|
|
39
|
+
event_OriginTypesFilter as OriginTypesFilter,
|
|
28
40
|
event_ProcedureEventOrigin as ProcedureEventOrigin,
|
|
29
41
|
event_SearchEventOriginType as SearchEventOriginType,
|
|
30
42
|
event_SearchEventsRequest as SearchEventsRequest,
|
|
@@ -33,6 +45,8 @@ from .._impl import (
|
|
|
33
45
|
event_SearchQueryVisitor as SearchQueryVisitor,
|
|
34
46
|
event_SortField as SortField,
|
|
35
47
|
event_SortOptions as SortOptions,
|
|
48
|
+
event_StreamingCheckOriginMetadata as StreamingCheckOriginMetadata,
|
|
49
|
+
event_StreamingChecklistEventOrigin as StreamingChecklistEventOrigin,
|
|
36
50
|
event_TemplateEventOrigin as TemplateEventOrigin,
|
|
37
51
|
event_TimeSeriesChannelAssociation as TimeSeriesChannelAssociation,
|
|
38
52
|
event_UpdateDispositionRequest as UpdateDispositionRequest,
|
|
@@ -44,15 +58,26 @@ from .._impl import (
|
|
|
44
58
|
)
|
|
45
59
|
|
|
46
60
|
__all__ = [
|
|
61
|
+
'AggregateEventsRequest',
|
|
62
|
+
'AggregateEventsResponse',
|
|
63
|
+
'AggregateType',
|
|
64
|
+
'AggregateValue',
|
|
65
|
+
'AggregateValueVisitor',
|
|
47
66
|
'ApiEventOrigin',
|
|
48
67
|
'ArchiveEvent',
|
|
68
|
+
'AssetsFilter',
|
|
69
|
+
'AssigneesFilter',
|
|
70
|
+
'BatchAggregateEventsRequest',
|
|
71
|
+
'BatchAggregateEventsResponse',
|
|
49
72
|
'BatchUpdateDispositionRequest',
|
|
50
73
|
'BatchUpdateDispositionResponse',
|
|
51
74
|
'BatchUpdateEventRequest',
|
|
52
75
|
'BatchUpdateEventResponse',
|
|
53
76
|
'CheckOriginMetadata',
|
|
54
77
|
'CreateEvent',
|
|
78
|
+
'DataReviewChecksFilter',
|
|
55
79
|
'DataReviewEventOrigin',
|
|
80
|
+
'DataReviewsFilter',
|
|
56
81
|
'Event',
|
|
57
82
|
'EventDisposition',
|
|
58
83
|
'EventDispositionStatus',
|
|
@@ -68,6 +93,7 @@ __all__ = [
|
|
|
68
93
|
'HistogramFilterQuery',
|
|
69
94
|
'HistogramFilterQueryVisitor',
|
|
70
95
|
'ListPropertiesAndLabelsRequest',
|
|
96
|
+
'OriginTypesFilter',
|
|
71
97
|
'ProcedureEventOrigin',
|
|
72
98
|
'SearchEventOriginType',
|
|
73
99
|
'SearchEventsRequest',
|
|
@@ -76,6 +102,8 @@ __all__ = [
|
|
|
76
102
|
'SearchQueryVisitor',
|
|
77
103
|
'SortField',
|
|
78
104
|
'SortOptions',
|
|
105
|
+
'StreamingCheckOriginMetadata',
|
|
106
|
+
'StreamingChecklistEventOrigin',
|
|
79
107
|
'TemplateEventOrigin',
|
|
80
108
|
'TimeSeriesChannelAssociation',
|
|
81
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
|
|
nominal_api/module/__init__.py
CHANGED
|
@@ -1,33 +1,21 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
-
module_ArchiveModuleApplicationRequest as ArchiveModuleApplicationRequest,
|
|
4
|
-
module_ArchiveModuleApplicationResponse as ArchiveModuleApplicationResponse,
|
|
5
3
|
module_BatchArchiveModulesRequest as BatchArchiveModulesRequest,
|
|
6
4
|
module_BatchArchiveModulesResponse as BatchArchiveModulesResponse,
|
|
7
|
-
module_BatchGetModuleApplicationsRequest as BatchGetModuleApplicationsRequest,
|
|
8
|
-
module_BatchGetModuleApplicationsResponse as BatchGetModuleApplicationsResponse,
|
|
9
5
|
module_BatchGetModulesRequest as BatchGetModulesRequest,
|
|
10
6
|
module_BatchUnarchiveModulesRequest as BatchUnarchiveModulesRequest,
|
|
11
7
|
module_BatchUnarchiveModulesResponse as BatchUnarchiveModulesResponse,
|
|
12
|
-
module_CreateModuleApplicationRequest as CreateModuleApplicationRequest,
|
|
13
|
-
module_CreateModuleApplicationResponse as CreateModuleApplicationResponse,
|
|
14
8
|
module_CreateModuleRequest as CreateModuleRequest,
|
|
15
|
-
module_DerivedSeriesMetadata as DerivedSeriesMetadata,
|
|
16
9
|
module_Function as Function,
|
|
17
10
|
module_FunctionNode as FunctionNode,
|
|
18
11
|
module_FunctionNodeVisitor as FunctionNodeVisitor,
|
|
19
12
|
module_FunctionParameter as FunctionParameter,
|
|
20
|
-
module_GetDerivedSeriesRequest as GetDerivedSeriesRequest,
|
|
21
|
-
module_GetDerivedSeriesResponse as GetDerivedSeriesResponse,
|
|
22
13
|
module_LatestVersionStrategy as LatestVersionStrategy,
|
|
23
14
|
module_Module as Module,
|
|
24
|
-
module_ModuleApplication as ModuleApplication,
|
|
25
15
|
module_ModuleMetadata as ModuleMetadata,
|
|
26
|
-
module_ModuleParameter as ModuleParameter,
|
|
27
16
|
module_ModuleRef as ModuleRef,
|
|
28
17
|
module_ModuleService as ModuleService,
|
|
29
18
|
module_ModuleSummary as ModuleSummary,
|
|
30
|
-
module_ModuleVariable as ModuleVariable,
|
|
31
19
|
module_ModuleVersion as ModuleVersion,
|
|
32
20
|
module_ModuleVersionDefinition as ModuleVersionDefinition,
|
|
33
21
|
module_ModuleVersionMetadata as ModuleVersionMetadata,
|
|
@@ -37,10 +25,6 @@ from .._impl import (
|
|
|
37
25
|
module_RequestModuleRef as RequestModuleRef,
|
|
38
26
|
module_RequestModuleRefVisitor as RequestModuleRefVisitor,
|
|
39
27
|
module_RequestModuleRidRef as RequestModuleRidRef,
|
|
40
|
-
module_SearchModuleApplicationsQuery as SearchModuleApplicationsQuery,
|
|
41
|
-
module_SearchModuleApplicationsQueryVisitor as SearchModuleApplicationsQueryVisitor,
|
|
42
|
-
module_SearchModuleApplicationsRequest as SearchModuleApplicationsRequest,
|
|
43
|
-
module_SearchModuleApplicationsResponse as SearchModuleApplicationsResponse,
|
|
44
28
|
module_SearchModulesQuery as SearchModulesQuery,
|
|
45
29
|
module_SearchModulesQueryVisitor as SearchModulesQueryVisitor,
|
|
46
30
|
module_SearchModulesRequest as SearchModulesRequest,
|
|
@@ -55,33 +39,21 @@ from .._impl import (
|
|
|
55
39
|
)
|
|
56
40
|
|
|
57
41
|
__all__ = [
|
|
58
|
-
'ArchiveModuleApplicationRequest',
|
|
59
|
-
'ArchiveModuleApplicationResponse',
|
|
60
42
|
'BatchArchiveModulesRequest',
|
|
61
43
|
'BatchArchiveModulesResponse',
|
|
62
|
-
'BatchGetModuleApplicationsRequest',
|
|
63
|
-
'BatchGetModuleApplicationsResponse',
|
|
64
44
|
'BatchGetModulesRequest',
|
|
65
45
|
'BatchUnarchiveModulesRequest',
|
|
66
46
|
'BatchUnarchiveModulesResponse',
|
|
67
|
-
'CreateModuleApplicationRequest',
|
|
68
|
-
'CreateModuleApplicationResponse',
|
|
69
47
|
'CreateModuleRequest',
|
|
70
|
-
'DerivedSeriesMetadata',
|
|
71
48
|
'Function',
|
|
72
49
|
'FunctionNode',
|
|
73
50
|
'FunctionNodeVisitor',
|
|
74
51
|
'FunctionParameter',
|
|
75
|
-
'GetDerivedSeriesRequest',
|
|
76
|
-
'GetDerivedSeriesResponse',
|
|
77
52
|
'LatestVersionStrategy',
|
|
78
53
|
'Module',
|
|
79
|
-
'ModuleApplication',
|
|
80
54
|
'ModuleMetadata',
|
|
81
|
-
'ModuleParameter',
|
|
82
55
|
'ModuleRef',
|
|
83
56
|
'ModuleSummary',
|
|
84
|
-
'ModuleVariable',
|
|
85
57
|
'ModuleVersion',
|
|
86
58
|
'ModuleVersionDefinition',
|
|
87
59
|
'ModuleVersionMetadata',
|
|
@@ -91,10 +63,6 @@ __all__ = [
|
|
|
91
63
|
'RequestModuleRef',
|
|
92
64
|
'RequestModuleRefVisitor',
|
|
93
65
|
'RequestModuleRidRef',
|
|
94
|
-
'SearchModuleApplicationsQuery',
|
|
95
|
-
'SearchModuleApplicationsQueryVisitor',
|
|
96
|
-
'SearchModuleApplicationsRequest',
|
|
97
|
-
'SearchModuleApplicationsResponse',
|
|
98
66
|
'SearchModulesQuery',
|
|
99
67
|
'SearchModulesQueryVisitor',
|
|
100
68
|
'SearchModulesRequest',
|
|
@@ -1,23 +1,15 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
-
module_internal_BatchGetResolvedModuleDefinitionsRequest as BatchGetResolvedModuleDefinitionsRequest,
|
|
4
|
-
module_internal_BatchGetResolvedModuleDefinitionsResponse as BatchGetResolvedModuleDefinitionsResponse,
|
|
5
3
|
module_internal_BatchGetUnresolvedModuleDefinitionsRequest as BatchGetUnresolvedModuleDefinitionsRequest,
|
|
6
4
|
module_internal_BatchGetUnresolvedModuleDefinitionsResponse as BatchGetUnresolvedModuleDefinitionsResponse,
|
|
7
5
|
module_internal_InternalModuleService as InternalModuleService,
|
|
8
|
-
module_internal_ModuleApplicationReference as ModuleApplicationReference,
|
|
9
6
|
module_internal_ModuleComputeDefinition as ModuleComputeDefinition,
|
|
10
|
-
module_internal_ResolvedModuleVersionDefinition as ResolvedModuleVersionDefinition,
|
|
11
7
|
)
|
|
12
8
|
|
|
13
9
|
__all__ = [
|
|
14
|
-
'BatchGetResolvedModuleDefinitionsRequest',
|
|
15
|
-
'BatchGetResolvedModuleDefinitionsResponse',
|
|
16
10
|
'BatchGetUnresolvedModuleDefinitionsRequest',
|
|
17
11
|
'BatchGetUnresolvedModuleDefinitionsResponse',
|
|
18
|
-
'ModuleApplicationReference',
|
|
19
12
|
'ModuleComputeDefinition',
|
|
20
|
-
'ResolvedModuleVersionDefinition',
|
|
21
13
|
'InternalModuleService',
|
|
22
14
|
]
|
|
23
15
|
|