nominal-api 0.953.1__py3-none-any.whl → 0.989.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 +3122 -1108
- nominal_api/api_rids/__init__.py +4 -0
- nominal_api/authentication_api/__init__.py +6 -0
- nominal_api/event/__init__.py +24 -0
- nominal_api/module/__init__.py +0 -32
- nominal_api/module_internal/__init__.py +0 -8
- nominal_api/scout_chartdefinition_api/__init__.py +16 -0
- nominal_api/scout_comparisonnotebook_api/__init__.py +2 -0
- nominal_api/scout_compute_api/__init__.py +16 -2
- nominal_api/scout_compute_resolved_api/__init__.py +10 -0
- nominal_api/scout_integrations_api/__init__.py +10 -0
- nominal_api/scout_savedviews_api/__init__.py +28 -0
- nominal_api/scout_video_api/__init__.py +6 -0
- nominal_api/secrets_api/__init__.py +4 -0
- nominal_api/security_api_workspace/__init__.py +6 -0
- nominal_api/storage_writer_api/__init__.py +4 -0
- {nominal_api-0.953.1.dist-info → nominal_api-0.989.0.dist-info}/METADATA +1 -1
- {nominal_api-0.953.1.dist-info → nominal_api-0.989.0.dist-info}/RECORD +21 -21
- {nominal_api-0.953.1.dist-info → nominal_api-0.989.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.953.1.dist-info → nominal_api-0.989.0.dist-info}/top_level.txt +0 -0
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',
|
|
@@ -3,8 +3,11 @@ from .._impl import (
|
|
|
3
3
|
authentication_api_AppearanceSetting as AppearanceSetting,
|
|
4
4
|
authentication_api_AuthenticationServiceV2 as AuthenticationServiceV2,
|
|
5
5
|
authentication_api_DefaultTimeRangeTypeSetting as DefaultTimeRangeTypeSetting,
|
|
6
|
+
authentication_api_GenerateMediaMtxTokenRequest as GenerateMediaMtxTokenRequest,
|
|
7
|
+
authentication_api_GenerateMediaMtxTokenResponse as GenerateMediaMtxTokenResponse,
|
|
6
8
|
authentication_api_Jwk as Jwk,
|
|
7
9
|
authentication_api_Jwks as Jwks,
|
|
10
|
+
authentication_api_MediaMtxPermission as MediaMtxPermission,
|
|
8
11
|
authentication_api_OrgRid as OrgRid,
|
|
9
12
|
authentication_api_OrgSettings as OrgSettings,
|
|
10
13
|
authentication_api_SearchUsersQuery as SearchUsersQuery,
|
|
@@ -23,8 +26,11 @@ from .._impl import (
|
|
|
23
26
|
__all__ = [
|
|
24
27
|
'AppearanceSetting',
|
|
25
28
|
'DefaultTimeRangeTypeSetting',
|
|
29
|
+
'GenerateMediaMtxTokenRequest',
|
|
30
|
+
'GenerateMediaMtxTokenResponse',
|
|
26
31
|
'Jwk',
|
|
27
32
|
'Jwks',
|
|
33
|
+
'MediaMtxPermission',
|
|
28
34
|
'OrgRid',
|
|
29
35
|
'OrgSettings',
|
|
30
36
|
'SearchUsersQuery',
|
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,
|
|
@@ -44,15 +56,26 @@ from .._impl import (
|
|
|
44
56
|
)
|
|
45
57
|
|
|
46
58
|
__all__ = [
|
|
59
|
+
'AggregateEventsRequest',
|
|
60
|
+
'AggregateEventsResponse',
|
|
61
|
+
'AggregateType',
|
|
62
|
+
'AggregateValue',
|
|
63
|
+
'AggregateValueVisitor',
|
|
47
64
|
'ApiEventOrigin',
|
|
48
65
|
'ArchiveEvent',
|
|
66
|
+
'AssetsFilter',
|
|
67
|
+
'AssigneesFilter',
|
|
68
|
+
'BatchAggregateEventsRequest',
|
|
69
|
+
'BatchAggregateEventsResponse',
|
|
49
70
|
'BatchUpdateDispositionRequest',
|
|
50
71
|
'BatchUpdateDispositionResponse',
|
|
51
72
|
'BatchUpdateEventRequest',
|
|
52
73
|
'BatchUpdateEventResponse',
|
|
53
74
|
'CheckOriginMetadata',
|
|
54
75
|
'CreateEvent',
|
|
76
|
+
'DataReviewChecksFilter',
|
|
55
77
|
'DataReviewEventOrigin',
|
|
78
|
+
'DataReviewsFilter',
|
|
56
79
|
'Event',
|
|
57
80
|
'EventDisposition',
|
|
58
81
|
'EventDispositionStatus',
|
|
@@ -68,6 +91,7 @@ __all__ = [
|
|
|
68
91
|
'HistogramFilterQuery',
|
|
69
92
|
'HistogramFilterQueryVisitor',
|
|
70
93
|
'ListPropertiesAndLabelsRequest',
|
|
94
|
+
'OriginTypesFilter',
|
|
71
95
|
'ProcedureEventOrigin',
|
|
72
96
|
'SearchEventOriginType',
|
|
73
97
|
'SearchEventsRequest',
|
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
|
|
|
@@ -61,6 +61,7 @@ from .._impl import (
|
|
|
61
61
|
scout_chartdefinition_api_Geo3dOrientationPrincipalAxes as Geo3dOrientationPrincipalAxes,
|
|
62
62
|
scout_chartdefinition_api_Geo3dOrientationVisitor as Geo3dOrientationVisitor,
|
|
63
63
|
scout_chartdefinition_api_Geo3dPosition as Geo3dPosition,
|
|
64
|
+
scout_chartdefinition_api_Geo3dPositionEcef as Geo3dPositionEcef,
|
|
64
65
|
scout_chartdefinition_api_Geo3dPositionVisitor as Geo3dPositionVisitor,
|
|
65
66
|
scout_chartdefinition_api_Geo3dPositionWgs84 as Geo3dPositionWgs84,
|
|
66
67
|
scout_chartdefinition_api_GeoAdditionalTileset as GeoAdditionalTileset,
|
|
@@ -130,7 +131,10 @@ from .._impl import (
|
|
|
130
131
|
scout_chartdefinition_api_Position as Position,
|
|
131
132
|
scout_chartdefinition_api_ProcedureVizDefinition as ProcedureVizDefinition,
|
|
132
133
|
scout_chartdefinition_api_ProcedureVizDefinitionV1 as ProcedureVizDefinitionV1,
|
|
134
|
+
scout_chartdefinition_api_ProcedureVizDefinitionV2 as ProcedureVizDefinitionV2,
|
|
133
135
|
scout_chartdefinition_api_ProcedureVizDefinitionVisitor as ProcedureVizDefinitionVisitor,
|
|
136
|
+
scout_chartdefinition_api_ProcedureVizId as ProcedureVizId,
|
|
137
|
+
scout_chartdefinition_api_ProcedureVizIdVisitor as ProcedureVizIdVisitor,
|
|
134
138
|
scout_chartdefinition_api_RangeCellConfig as RangeCellConfig,
|
|
135
139
|
scout_chartdefinition_api_RangeGroupBySort as RangeGroupBySort,
|
|
136
140
|
scout_chartdefinition_api_RangeGroupBySortVisitor as RangeGroupBySortVisitor,
|
|
@@ -144,6 +148,10 @@ from .._impl import (
|
|
|
144
148
|
scout_chartdefinition_api_StalenessConfiguration as StalenessConfiguration,
|
|
145
149
|
scout_chartdefinition_api_StalenessVisualisation as StalenessVisualisation,
|
|
146
150
|
scout_chartdefinition_api_StalenessVisualisationVisitor as StalenessVisualisationVisitor,
|
|
151
|
+
scout_chartdefinition_api_StructCellConfig as StructCellConfig,
|
|
152
|
+
scout_chartdefinition_api_StructRawVisualisation as StructRawVisualisation,
|
|
153
|
+
scout_chartdefinition_api_StructVisualisation as StructVisualisation,
|
|
154
|
+
scout_chartdefinition_api_StructVisualisationVisitor as StructVisualisationVisitor,
|
|
147
155
|
scout_chartdefinition_api_Threshold as Threshold,
|
|
148
156
|
scout_chartdefinition_api_ThresholdDisconnectedValues as ThresholdDisconnectedValues,
|
|
149
157
|
scout_chartdefinition_api_ThresholdLatch as ThresholdLatch,
|
|
@@ -256,6 +264,7 @@ __all__ = [
|
|
|
256
264
|
'Geo3dOrientationPrincipalAxes',
|
|
257
265
|
'Geo3dPosition',
|
|
258
266
|
'Geo3dPositionVisitor',
|
|
267
|
+
'Geo3dPositionEcef',
|
|
259
268
|
'Geo3dPositionWgs84',
|
|
260
269
|
'GeoAdditionalTileset',
|
|
261
270
|
'GeoAdditionalVariable',
|
|
@@ -325,6 +334,9 @@ __all__ = [
|
|
|
325
334
|
'ProcedureVizDefinition',
|
|
326
335
|
'ProcedureVizDefinitionVisitor',
|
|
327
336
|
'ProcedureVizDefinitionV1',
|
|
337
|
+
'ProcedureVizDefinitionV2',
|
|
338
|
+
'ProcedureVizId',
|
|
339
|
+
'ProcedureVizIdVisitor',
|
|
328
340
|
'RangeCellConfig',
|
|
329
341
|
'RangeGroupBySort',
|
|
330
342
|
'RangeGroupBySortVisitor',
|
|
@@ -338,6 +350,10 @@ __all__ = [
|
|
|
338
350
|
'StalenessConfiguration',
|
|
339
351
|
'StalenessVisualisation',
|
|
340
352
|
'StalenessVisualisationVisitor',
|
|
353
|
+
'StructCellConfig',
|
|
354
|
+
'StructRawVisualisation',
|
|
355
|
+
'StructVisualisation',
|
|
356
|
+
'StructVisualisationVisitor',
|
|
341
357
|
'Threshold',
|
|
342
358
|
'ThresholdDisconnectedValues',
|
|
343
359
|
'ThresholdLatch',
|
|
@@ -38,6 +38,7 @@ from .._impl import (
|
|
|
38
38
|
scout_comparisonnotebook_api_Min as Min,
|
|
39
39
|
scout_comparisonnotebook_api_RangeAggregationContext as RangeAggregationContext,
|
|
40
40
|
scout_comparisonnotebook_api_RangeAggregationDefinition as RangeAggregationDefinition,
|
|
41
|
+
scout_comparisonnotebook_api_RootMeanSquare as RootMeanSquare,
|
|
41
42
|
scout_comparisonnotebook_api_ScatterPlotValueAxes as ScatterPlotValueAxes,
|
|
42
43
|
scout_comparisonnotebook_api_StandardDeviation as StandardDeviation,
|
|
43
44
|
scout_comparisonnotebook_api_SupplementalComparisonWorkbookContext as SupplementalComparisonWorkbookContext,
|
|
@@ -92,6 +93,7 @@ __all__ = [
|
|
|
92
93
|
'Min',
|
|
93
94
|
'RangeAggregationContext',
|
|
94
95
|
'RangeAggregationDefinition',
|
|
96
|
+
'RootMeanSquare',
|
|
95
97
|
'ScatterPlotValueAxes',
|
|
96
98
|
'StandardDeviation',
|
|
97
99
|
'SupplementalComparisonWorkbookContext',
|
|
@@ -130,6 +130,7 @@ from .._impl import (
|
|
|
130
130
|
scout_compute_api_EnumSeriesVisitor as EnumSeriesVisitor,
|
|
131
131
|
scout_compute_api_EnumTimeRangeFilterSeries as EnumTimeRangeFilterSeries,
|
|
132
132
|
scout_compute_api_EnumTimeShiftSeries as EnumTimeShiftSeries,
|
|
133
|
+
scout_compute_api_EnumToNumericSeries as EnumToNumericSeries,
|
|
133
134
|
scout_compute_api_EnumUnionOperation as EnumUnionOperation,
|
|
134
135
|
scout_compute_api_EnumUnionSeries as EnumUnionSeries,
|
|
135
136
|
scout_compute_api_EqualityOperator as EqualityOperator,
|
|
@@ -144,6 +145,7 @@ from .._impl import (
|
|
|
144
145
|
scout_compute_api_ExcludeNegativeValues as ExcludeNegativeValues,
|
|
145
146
|
scout_compute_api_ExponentialCurve as ExponentialCurve,
|
|
146
147
|
scout_compute_api_ExponentialResultDetails as ExponentialResultDetails,
|
|
148
|
+
scout_compute_api_ExtractStructFromStructSeries as ExtractStructFromStructSeries,
|
|
147
149
|
scout_compute_api_Fft as Fft,
|
|
148
150
|
scout_compute_api_FftWindow as FftWindow,
|
|
149
151
|
scout_compute_api_FilterByExpressionSeries as FilterByExpressionSeries,
|
|
@@ -211,7 +213,6 @@ from .._impl import (
|
|
|
211
213
|
scout_compute_api_MinMaxThresholdRanges as MinMaxThresholdRanges,
|
|
212
214
|
scout_compute_api_MinSeries as MinSeries,
|
|
213
215
|
scout_compute_api_Minimum as Minimum,
|
|
214
|
-
scout_compute_api_ModuleApplicationDerivedSeries as ModuleApplicationDerivedSeries,
|
|
215
216
|
scout_compute_api_ModuleVersionReference as ModuleVersionReference,
|
|
216
217
|
scout_compute_api_ModuleVersionReferenceVisitor as ModuleVersionReferenceVisitor,
|
|
217
218
|
scout_compute_api_NegativeValueConfiguration as NegativeValueConfiguration,
|
|
@@ -288,9 +289,13 @@ from .._impl import (
|
|
|
288
289
|
scout_compute_api_RangesNumericAggregation as RangesNumericAggregation,
|
|
289
290
|
scout_compute_api_RangesSummary as RangesSummary,
|
|
290
291
|
scout_compute_api_Reference as Reference,
|
|
292
|
+
scout_compute_api_RefpropProperty as RefpropProperty,
|
|
293
|
+
scout_compute_api_RefpropSeries as RefpropSeries,
|
|
294
|
+
scout_compute_api_RefpropSubstance as RefpropSubstance,
|
|
291
295
|
scout_compute_api_RollingOperationSeries as RollingOperationSeries,
|
|
292
296
|
scout_compute_api_RollingOperator as RollingOperator,
|
|
293
297
|
scout_compute_api_RollingOperatorVisitor as RollingOperatorVisitor,
|
|
298
|
+
scout_compute_api_RootMeanSquare as RootMeanSquare,
|
|
294
299
|
scout_compute_api_RunChannel as RunChannel,
|
|
295
300
|
scout_compute_api_ScaleSeries as ScaleSeries,
|
|
296
301
|
scout_compute_api_Scatter as Scatter,
|
|
@@ -326,6 +331,8 @@ from .._impl import (
|
|
|
326
331
|
scout_compute_api_StringConstantVisitor as StringConstantVisitor,
|
|
327
332
|
scout_compute_api_StringSetConstant as StringSetConstant,
|
|
328
333
|
scout_compute_api_StringSetConstantVisitor as StringSetConstantVisitor,
|
|
334
|
+
scout_compute_api_StructSeries as StructSeries,
|
|
335
|
+
scout_compute_api_StructSeriesVisitor as StructSeriesVisitor,
|
|
329
336
|
scout_compute_api_Sum as Sum,
|
|
330
337
|
scout_compute_api_SumSeries as SumSeries,
|
|
331
338
|
scout_compute_api_SummarizationStrategy as SummarizationStrategy,
|
|
@@ -508,6 +515,7 @@ __all__ = [
|
|
|
508
515
|
'EnumSeriesEqualityRanges',
|
|
509
516
|
'EnumTimeRangeFilterSeries',
|
|
510
517
|
'EnumTimeShiftSeries',
|
|
518
|
+
'EnumToNumericSeries',
|
|
511
519
|
'EnumUnionOperation',
|
|
512
520
|
'EnumUnionSeries',
|
|
513
521
|
'EqualityOperator',
|
|
@@ -522,6 +530,7 @@ __all__ = [
|
|
|
522
530
|
'ExcludeNegativeValues',
|
|
523
531
|
'ExponentialCurve',
|
|
524
532
|
'ExponentialResultDetails',
|
|
533
|
+
'ExtractStructFromStructSeries',
|
|
525
534
|
'Fft',
|
|
526
535
|
'FftWindow',
|
|
527
536
|
'FilterByExpressionSeries',
|
|
@@ -589,7 +598,6 @@ __all__ = [
|
|
|
589
598
|
'MinMaxThresholdRanges',
|
|
590
599
|
'MinSeries',
|
|
591
600
|
'Minimum',
|
|
592
|
-
'ModuleApplicationDerivedSeries',
|
|
593
601
|
'ModuleVersionReference',
|
|
594
602
|
'ModuleVersionReferenceVisitor',
|
|
595
603
|
'NegativeValueConfiguration',
|
|
@@ -666,9 +674,13 @@ __all__ = [
|
|
|
666
674
|
'RangesNumericAggregation',
|
|
667
675
|
'RangesSummary',
|
|
668
676
|
'Reference',
|
|
677
|
+
'RefpropProperty',
|
|
678
|
+
'RefpropSeries',
|
|
679
|
+
'RefpropSubstance',
|
|
669
680
|
'RollingOperationSeries',
|
|
670
681
|
'RollingOperator',
|
|
671
682
|
'RollingOperatorVisitor',
|
|
683
|
+
'RootMeanSquare',
|
|
672
684
|
'RunChannel',
|
|
673
685
|
'ScaleSeries',
|
|
674
686
|
'Scatter',
|
|
@@ -704,6 +716,8 @@ __all__ = [
|
|
|
704
716
|
'StringConstantVisitor',
|
|
705
717
|
'StringSetConstant',
|
|
706
718
|
'StringSetConstantVisitor',
|
|
719
|
+
'StructSeries',
|
|
720
|
+
'StructSeriesVisitor',
|
|
707
721
|
'Sum',
|
|
708
722
|
'SumSeries',
|
|
709
723
|
'SummarizationStrategy',
|
|
@@ -40,9 +40,11 @@ from .._impl import (
|
|
|
40
40
|
scout_compute_resolved_api_EnumSeriesNodeVisitor as EnumSeriesNodeVisitor,
|
|
41
41
|
scout_compute_resolved_api_EnumTimeRangeFilterSeriesNode as EnumTimeRangeFilterSeriesNode,
|
|
42
42
|
scout_compute_resolved_api_EnumTimeShiftSeriesNode as EnumTimeShiftSeriesNode,
|
|
43
|
+
scout_compute_resolved_api_EnumToNumericSeriesNode as EnumToNumericSeriesNode,
|
|
43
44
|
scout_compute_resolved_api_EnumUnionSeriesNode as EnumUnionSeriesNode,
|
|
44
45
|
scout_compute_resolved_api_EventSearchNode as EventSearchNode,
|
|
45
46
|
scout_compute_resolved_api_ExponentialCurve as ExponentialCurve,
|
|
47
|
+
scout_compute_resolved_api_ExtractStructFromStructSeriesNode as ExtractStructFromStructSeriesNode,
|
|
46
48
|
scout_compute_resolved_api_ExtremaRangesNode as ExtremaRangesNode,
|
|
47
49
|
scout_compute_resolved_api_FftNode as FftNode,
|
|
48
50
|
scout_compute_resolved_api_FilterByExpressionSeriesNode as FilterByExpressionSeriesNode,
|
|
@@ -111,6 +113,7 @@ from .._impl import (
|
|
|
111
113
|
scout_compute_resolved_api_RawLogSeriesNode as RawLogSeriesNode,
|
|
112
114
|
scout_compute_resolved_api_RawNumericSeriesNode as RawNumericSeriesNode,
|
|
113
115
|
scout_compute_resolved_api_RawUntypedSeriesNode as RawUntypedSeriesNode,
|
|
116
|
+
scout_compute_resolved_api_RefpropSeriesNode as RefpropSeriesNode,
|
|
114
117
|
scout_compute_resolved_api_ResampleConfiguration as ResampleConfiguration,
|
|
115
118
|
scout_compute_resolved_api_ResampleInterpolationConfiguration as ResampleInterpolationConfiguration,
|
|
116
119
|
scout_compute_resolved_api_ResampleInterpolationConfigurationVisitor as ResampleInterpolationConfigurationVisitor,
|
|
@@ -140,6 +143,8 @@ from .._impl import (
|
|
|
140
143
|
scout_compute_resolved_api_StaleRangesNode as StaleRangesNode,
|
|
141
144
|
scout_compute_resolved_api_StorageLocator as StorageLocator,
|
|
142
145
|
scout_compute_resolved_api_StorageLocatorVisitor as StorageLocatorVisitor,
|
|
146
|
+
scout_compute_resolved_api_StructSeriesNode as StructSeriesNode,
|
|
147
|
+
scout_compute_resolved_api_StructSeriesNodeVisitor as StructSeriesNodeVisitor,
|
|
143
148
|
scout_compute_resolved_api_SumSeriesNode as SumSeriesNode,
|
|
144
149
|
scout_compute_resolved_api_SummarizeCartesian3dNode as SummarizeCartesian3dNode,
|
|
145
150
|
scout_compute_resolved_api_SummarizeCartesianNode as SummarizeCartesianNode,
|
|
@@ -205,9 +210,11 @@ __all__ = [
|
|
|
205
210
|
'EnumSeriesNodeVisitor',
|
|
206
211
|
'EnumTimeRangeFilterSeriesNode',
|
|
207
212
|
'EnumTimeShiftSeriesNode',
|
|
213
|
+
'EnumToNumericSeriesNode',
|
|
208
214
|
'EnumUnionSeriesNode',
|
|
209
215
|
'EventSearchNode',
|
|
210
216
|
'ExponentialCurve',
|
|
217
|
+
'ExtractStructFromStructSeriesNode',
|
|
211
218
|
'ExtremaRangesNode',
|
|
212
219
|
'FftNode',
|
|
213
220
|
'FilterByExpressionSeriesNode',
|
|
@@ -276,6 +283,7 @@ __all__ = [
|
|
|
276
283
|
'RawLogSeriesNode',
|
|
277
284
|
'RawNumericSeriesNode',
|
|
278
285
|
'RawUntypedSeriesNode',
|
|
286
|
+
'RefpropSeriesNode',
|
|
279
287
|
'ResampleConfiguration',
|
|
280
288
|
'ResampleInterpolationConfiguration',
|
|
281
289
|
'ResampleInterpolationConfigurationVisitor',
|
|
@@ -305,6 +313,8 @@ __all__ = [
|
|
|
305
313
|
'StaleRangesNode',
|
|
306
314
|
'StorageLocator',
|
|
307
315
|
'StorageLocatorVisitor',
|
|
316
|
+
'StructSeriesNode',
|
|
317
|
+
'StructSeriesNodeVisitor',
|
|
308
318
|
'SumSeriesNode',
|
|
309
319
|
'SummarizeCartesian3dNode',
|
|
310
320
|
'SummarizeCartesianNode',
|
|
@@ -19,7 +19,12 @@ from .._impl import (
|
|
|
19
19
|
scout_integrations_api_SimpleWebhookIntegration as SimpleWebhookIntegration,
|
|
20
20
|
scout_integrations_api_SlackInstanceType as SlackInstanceType,
|
|
21
21
|
scout_integrations_api_SlackWebhookIntegration as SlackWebhookIntegration,
|
|
22
|
+
scout_integrations_api_UpdateIntegrationDetails as UpdateIntegrationDetails,
|
|
23
|
+
scout_integrations_api_UpdateIntegrationDetailsRequest as UpdateIntegrationDetailsRequest,
|
|
24
|
+
scout_integrations_api_UpdateIntegrationDetailsVisitor as UpdateIntegrationDetailsVisitor,
|
|
22
25
|
scout_integrations_api_UpdateIntegrationRequest as UpdateIntegrationRequest,
|
|
26
|
+
scout_integrations_api_UpdateOpsgenieIntegrationDetails as UpdateOpsgenieIntegrationDetails,
|
|
27
|
+
scout_integrations_api_UpdateSimpleWebhookDetails as UpdateSimpleWebhookDetails,
|
|
23
28
|
)
|
|
24
29
|
|
|
25
30
|
__all__ = [
|
|
@@ -41,7 +46,12 @@ __all__ = [
|
|
|
41
46
|
'SimpleWebhookIntegration',
|
|
42
47
|
'SlackInstanceType',
|
|
43
48
|
'SlackWebhookIntegration',
|
|
49
|
+
'UpdateIntegrationDetails',
|
|
50
|
+
'UpdateIntegrationDetailsVisitor',
|
|
51
|
+
'UpdateIntegrationDetailsRequest',
|
|
44
52
|
'UpdateIntegrationRequest',
|
|
53
|
+
'UpdateOpsgenieIntegrationDetails',
|
|
54
|
+
'UpdateSimpleWebhookDetails',
|
|
45
55
|
'IntegrationsService',
|
|
46
56
|
]
|
|
47
57
|
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
+
scout_savedviews_api_AssetMetricColumn as AssetMetricColumn,
|
|
4
|
+
scout_savedviews_api_AssetMetricColumnTimeRange as AssetMetricColumnTimeRange,
|
|
5
|
+
scout_savedviews_api_AssetMetricColumnTimeRangeVisitor as AssetMetricColumnTimeRangeVisitor,
|
|
6
|
+
scout_savedviews_api_AssetMetricColumns as AssetMetricColumns,
|
|
3
7
|
scout_savedviews_api_AssetSearchState as AssetSearchState,
|
|
4
8
|
scout_savedviews_api_BatchGetSavedViewsResponse as BatchGetSavedViewsResponse,
|
|
5
9
|
scout_savedviews_api_ChecklistSearchState as ChecklistSearchState,
|
|
@@ -10,6 +14,16 @@ from .._impl import (
|
|
|
10
14
|
scout_savedviews_api_DisplayState as DisplayState,
|
|
11
15
|
scout_savedviews_api_DisplayStateVisitor as DisplayStateVisitor,
|
|
12
16
|
scout_savedviews_api_GetSavedViewResponse as GetSavedViewResponse,
|
|
17
|
+
scout_savedviews_api_MetricColumnAggregation as MetricColumnAggregation,
|
|
18
|
+
scout_savedviews_api_MetricColumnData as MetricColumnData,
|
|
19
|
+
scout_savedviews_api_MetricColumnDataVisitor as MetricColumnDataVisitor,
|
|
20
|
+
scout_savedviews_api_MetricColumnMetadata as MetricColumnMetadata,
|
|
21
|
+
scout_savedviews_api_MetricColumnStyle as MetricColumnStyle,
|
|
22
|
+
scout_savedviews_api_MetricColumnThreshold as MetricColumnThreshold,
|
|
23
|
+
scout_savedviews_api_MetricColumnThresholdType as MetricColumnThresholdType,
|
|
24
|
+
scout_savedviews_api_MetricColumns as MetricColumns,
|
|
25
|
+
scout_savedviews_api_MetricColumnsVisitor as MetricColumnsVisitor,
|
|
26
|
+
scout_savedviews_api_MostRecentRun as MostRecentRun,
|
|
13
27
|
scout_savedviews_api_ResourceType as ResourceType,
|
|
14
28
|
scout_savedviews_api_RunSearchState as RunSearchState,
|
|
15
29
|
scout_savedviews_api_SavedView as SavedView,
|
|
@@ -37,6 +51,10 @@ from .._impl import (
|
|
|
37
51
|
)
|
|
38
52
|
|
|
39
53
|
__all__ = [
|
|
54
|
+
'AssetMetricColumn',
|
|
55
|
+
'AssetMetricColumnTimeRange',
|
|
56
|
+
'AssetMetricColumnTimeRangeVisitor',
|
|
57
|
+
'AssetMetricColumns',
|
|
40
58
|
'AssetSearchState',
|
|
41
59
|
'BatchGetSavedViewsResponse',
|
|
42
60
|
'ChecklistSearchState',
|
|
@@ -47,6 +65,16 @@ __all__ = [
|
|
|
47
65
|
'DisplayState',
|
|
48
66
|
'DisplayStateVisitor',
|
|
49
67
|
'GetSavedViewResponse',
|
|
68
|
+
'MetricColumnAggregation',
|
|
69
|
+
'MetricColumnData',
|
|
70
|
+
'MetricColumnDataVisitor',
|
|
71
|
+
'MetricColumnMetadata',
|
|
72
|
+
'MetricColumnStyle',
|
|
73
|
+
'MetricColumnThreshold',
|
|
74
|
+
'MetricColumnThresholdType',
|
|
75
|
+
'MetricColumns',
|
|
76
|
+
'MetricColumnsVisitor',
|
|
77
|
+
'MostRecentRun',
|
|
50
78
|
'ResourceType',
|
|
51
79
|
'RunSearchState',
|
|
52
80
|
'SavedView',
|
|
@@ -12,6 +12,8 @@ from .._impl import (
|
|
|
12
12
|
scout_video_api_ErrorIngestStatus as ErrorIngestStatus,
|
|
13
13
|
scout_video_api_ErrorType as ErrorType,
|
|
14
14
|
scout_video_api_FileSummary as FileSummary,
|
|
15
|
+
scout_video_api_GenerateWhepStreamResponse as GenerateWhepStreamResponse,
|
|
16
|
+
scout_video_api_GenerateWhipStreamResponse as GenerateWhipStreamResponse,
|
|
15
17
|
scout_video_api_GetEnrichedVideoIngestStatusRequest as GetEnrichedVideoIngestStatusRequest,
|
|
16
18
|
scout_video_api_GetFileSummariesRequest as GetFileSummariesRequest,
|
|
17
19
|
scout_video_api_GetFileSummariesResponse as GetFileSummariesResponse,
|
|
@@ -21,6 +23,7 @@ from .._impl import (
|
|
|
21
23
|
scout_video_api_GetSegmentSummariesInBoundsRequest as GetSegmentSummariesInBoundsRequest,
|
|
22
24
|
scout_video_api_GetVideosRequest as GetVideosRequest,
|
|
23
25
|
scout_video_api_GetVideosResponse as GetVideosResponse,
|
|
26
|
+
scout_video_api_IceServer as IceServer,
|
|
24
27
|
scout_video_api_IngestError as IngestError,
|
|
25
28
|
scout_video_api_ListFilesInVideoRequest as ListFilesInVideoRequest,
|
|
26
29
|
scout_video_api_ListFilesInVideoResponse as ListFilesInVideoResponse,
|
|
@@ -74,6 +77,8 @@ __all__ = [
|
|
|
74
77
|
'ErrorIngestStatus',
|
|
75
78
|
'ErrorType',
|
|
76
79
|
'FileSummary',
|
|
80
|
+
'GenerateWhepStreamResponse',
|
|
81
|
+
'GenerateWhipStreamResponse',
|
|
77
82
|
'GetEnrichedVideoIngestStatusRequest',
|
|
78
83
|
'GetFileSummariesRequest',
|
|
79
84
|
'GetFileSummariesResponse',
|
|
@@ -83,6 +88,7 @@ __all__ = [
|
|
|
83
88
|
'GetSegmentSummariesInBoundsRequest',
|
|
84
89
|
'GetVideosRequest',
|
|
85
90
|
'GetVideosResponse',
|
|
91
|
+
'IceServer',
|
|
86
92
|
'IngestError',
|
|
87
93
|
'ListFilesInVideoRequest',
|
|
88
94
|
'ListFilesInVideoResponse',
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
3
|
secrets_api_CreateSecretRequest as CreateSecretRequest,
|
|
4
|
+
secrets_api_DecryptedSecret as DecryptedSecret,
|
|
4
5
|
secrets_api_GetSecretsRequest as GetSecretsRequest,
|
|
5
6
|
secrets_api_GetSecretsResponse as GetSecretsResponse,
|
|
7
|
+
secrets_api_InternalSecretService as InternalSecretService,
|
|
6
8
|
secrets_api_SearchSecretsQuery as SearchSecretsQuery,
|
|
7
9
|
secrets_api_SearchSecretsQueryVisitor as SearchSecretsQueryVisitor,
|
|
8
10
|
secrets_api_SearchSecretsRequest as SearchSecretsRequest,
|
|
@@ -17,6 +19,7 @@ from .._impl import (
|
|
|
17
19
|
|
|
18
20
|
__all__ = [
|
|
19
21
|
'CreateSecretRequest',
|
|
22
|
+
'DecryptedSecret',
|
|
20
23
|
'GetSecretsRequest',
|
|
21
24
|
'GetSecretsResponse',
|
|
22
25
|
'SearchSecretsQuery',
|
|
@@ -28,6 +31,7 @@ __all__ = [
|
|
|
28
31
|
'SortField',
|
|
29
32
|
'SortOptions',
|
|
30
33
|
'UpdateSecretRequest',
|
|
34
|
+
'InternalSecretService',
|
|
31
35
|
'SecretService',
|
|
32
36
|
]
|
|
33
37
|
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
from .._impl import (
|
|
3
3
|
security_api_workspace_PreferredRefNameConfiguration as PreferredRefNameConfiguration,
|
|
4
4
|
security_api_workspace_PreferredRefNameConfigurationVisitor as PreferredRefNameConfigurationVisitor,
|
|
5
|
+
security_api_workspace_ProcedureSettings as ProcedureSettings,
|
|
6
|
+
security_api_workspace_ProcedureSettingsV1 as ProcedureSettingsV1,
|
|
7
|
+
security_api_workspace_ProcedureSettingsVisitor as ProcedureSettingsVisitor,
|
|
5
8
|
security_api_workspace_RemoveType as RemoveType,
|
|
6
9
|
security_api_workspace_UpdateOrRemoveWorkspaceDisplayName as UpdateOrRemoveWorkspaceDisplayName,
|
|
7
10
|
security_api_workspace_UpdateOrRemoveWorkspaceDisplayNameVisitor as UpdateOrRemoveWorkspaceDisplayNameVisitor,
|
|
@@ -18,6 +21,9 @@ from .._impl import (
|
|
|
18
21
|
__all__ = [
|
|
19
22
|
'PreferredRefNameConfiguration',
|
|
20
23
|
'PreferredRefNameConfigurationVisitor',
|
|
24
|
+
'ProcedureSettings',
|
|
25
|
+
'ProcedureSettingsVisitor',
|
|
26
|
+
'ProcedureSettingsV1',
|
|
21
27
|
'RemoveType',
|
|
22
28
|
'UpdateOrRemoveWorkspaceDisplayName',
|
|
23
29
|
'UpdateOrRemoveWorkspaceDisplayNameVisitor',
|
|
@@ -24,11 +24,13 @@ from .._impl import (
|
|
|
24
24
|
storage_writer_api_RecordsBatchExternal as RecordsBatchExternal,
|
|
25
25
|
storage_writer_api_StringArrayPoint as StringArrayPoint,
|
|
26
26
|
storage_writer_api_StringPoint as StringPoint,
|
|
27
|
+
storage_writer_api_StructPoint as StructPoint,
|
|
27
28
|
storage_writer_api_TelegrafMetric as TelegrafMetric,
|
|
28
29
|
storage_writer_api_WriteBatchesRequest as WriteBatchesRequest,
|
|
29
30
|
storage_writer_api_WriteBatchesRequestExternal as WriteBatchesRequestExternal,
|
|
30
31
|
storage_writer_api_WriteColumnBatchesRequest as WriteColumnBatchesRequest,
|
|
31
32
|
storage_writer_api_WriteLogsRequest as WriteLogsRequest,
|
|
33
|
+
storage_writer_api_WriteStructsRequest as WriteStructsRequest,
|
|
32
34
|
storage_writer_api_WriteTelegrafBatchesRequest as WriteTelegrafBatchesRequest,
|
|
33
35
|
)
|
|
34
36
|
|
|
@@ -55,11 +57,13 @@ __all__ = [
|
|
|
55
57
|
'RecordsBatchExternal',
|
|
56
58
|
'StringArrayPoint',
|
|
57
59
|
'StringPoint',
|
|
60
|
+
'StructPoint',
|
|
58
61
|
'TelegrafMetric',
|
|
59
62
|
'WriteBatchesRequest',
|
|
60
63
|
'WriteBatchesRequestExternal',
|
|
61
64
|
'WriteColumnBatchesRequest',
|
|
62
65
|
'WriteLogsRequest',
|
|
66
|
+
'WriteStructsRequest',
|
|
63
67
|
'WriteTelegrafBatchesRequest',
|
|
64
68
|
'DirectNominalChannelWriterService',
|
|
65
69
|
'NominalChannelWriterService',
|