nominal-api 0.551.0__py3-none-any.whl → 0.552.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 -2
- nominal_api/_impl.py +640 -594
- nominal_api/api/__init__.py +8 -0
- nominal_api/datasource/__init__.py +0 -1
- nominal_api/datasource_logset_api/__init__.py +0 -1
- nominal_api/ingest_api/__init__.py +0 -6
- nominal_api/scout_api/__init__.py +0 -1
- nominal_api/scout_catalog/__init__.py +0 -6
- nominal_api/scout_compute_api/__init__.py +9 -1
- nominal_api/scout_datasource_connection_api/__init__.py +0 -1
- nominal_api/scout_rids_api/__init__.py +0 -1
- nominal_api/scout_video_api/__init__.py +0 -3
- nominal_api/timeseries_logicalseries_api/__init__.py +0 -1
- {nominal_api-0.551.0.dist-info → nominal_api-0.552.0.dist-info}/METADATA +1 -1
- {nominal_api-0.551.0.dist-info → nominal_api-0.552.0.dist-info}/RECORD +17 -18
- nominal_api/scout_backend/__init__.py +0 -5
- {nominal_api-0.551.0.dist-info → nominal_api-0.552.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.551.0.dist-info → nominal_api-0.552.0.dist-info}/top_level.txt +0 -0
nominal_api/_impl.py
CHANGED
|
@@ -59,6 +59,35 @@ api_Empty.__qualname__ = "Empty"
|
|
|
59
59
|
api_Empty.__module__ = "nominal_api.api"
|
|
60
60
|
|
|
61
61
|
|
|
62
|
+
class api_ErrorResult(ConjureBeanType):
|
|
63
|
+
|
|
64
|
+
@builtins.classmethod
|
|
65
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
66
|
+
return {
|
|
67
|
+
'error_type': ConjureFieldDefinition('errorType', api_ErrorType),
|
|
68
|
+
'message': ConjureFieldDefinition('message', str)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
__slots__: List[str] = ['_error_type', '_message']
|
|
72
|
+
|
|
73
|
+
def __init__(self, error_type: str, message: str) -> None:
|
|
74
|
+
self._error_type = error_type
|
|
75
|
+
self._message = message
|
|
76
|
+
|
|
77
|
+
@builtins.property
|
|
78
|
+
def error_type(self) -> str:
|
|
79
|
+
return self._error_type
|
|
80
|
+
|
|
81
|
+
@builtins.property
|
|
82
|
+
def message(self) -> str:
|
|
83
|
+
return self._message
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
api_ErrorResult.__name__ = "ErrorResult"
|
|
87
|
+
api_ErrorResult.__qualname__ = "ErrorResult"
|
|
88
|
+
api_ErrorResult.__module__ = "nominal_api.api"
|
|
89
|
+
|
|
90
|
+
|
|
62
91
|
class api_Granularity(ConjureEnumType):
|
|
63
92
|
|
|
64
93
|
PICOSECONDS = 'PICOSECONDS'
|
|
@@ -133,6 +162,140 @@ api_HandleVisitor.__qualname__ = "HandleVisitor"
|
|
|
133
162
|
api_HandleVisitor.__module__ = "nominal_api.api"
|
|
134
163
|
|
|
135
164
|
|
|
165
|
+
class api_InProgressResult(ConjureBeanType):
|
|
166
|
+
|
|
167
|
+
@builtins.classmethod
|
|
168
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
169
|
+
return {
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
__slots__: List[str] = []
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
api_InProgressResult.__name__ = "InProgressResult"
|
|
177
|
+
api_InProgressResult.__qualname__ = "InProgressResult"
|
|
178
|
+
api_InProgressResult.__module__ = "nominal_api.api"
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
class api_IngestStatus(ConjureEnumType):
|
|
182
|
+
|
|
183
|
+
SUCCEEDED = 'SUCCEEDED'
|
|
184
|
+
'''SUCCEEDED'''
|
|
185
|
+
FAILED = 'FAILED'
|
|
186
|
+
'''FAILED'''
|
|
187
|
+
IN_PROGRESS = 'IN_PROGRESS'
|
|
188
|
+
'''IN_PROGRESS'''
|
|
189
|
+
UNKNOWN = 'UNKNOWN'
|
|
190
|
+
'''UNKNOWN'''
|
|
191
|
+
|
|
192
|
+
def __reduce_ex__(self, proto):
|
|
193
|
+
return self.__class__, (self.name,)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
api_IngestStatus.__name__ = "IngestStatus"
|
|
197
|
+
api_IngestStatus.__qualname__ = "IngestStatus"
|
|
198
|
+
api_IngestStatus.__module__ = "nominal_api.api"
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
class api_IngestStatusV2(ConjureUnionType):
|
|
202
|
+
_success: Optional["api_SuccessResult"] = None
|
|
203
|
+
_error: Optional["api_ErrorResult"] = None
|
|
204
|
+
_in_progress: Optional["api_InProgressResult"] = None
|
|
205
|
+
|
|
206
|
+
@builtins.classmethod
|
|
207
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
208
|
+
return {
|
|
209
|
+
'success': ConjureFieldDefinition('success', api_SuccessResult),
|
|
210
|
+
'error': ConjureFieldDefinition('error', api_ErrorResult),
|
|
211
|
+
'in_progress': ConjureFieldDefinition('inProgress', api_InProgressResult)
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
def __init__(
|
|
215
|
+
self,
|
|
216
|
+
success: Optional["api_SuccessResult"] = None,
|
|
217
|
+
error: Optional["api_ErrorResult"] = None,
|
|
218
|
+
in_progress: Optional["api_InProgressResult"] = None,
|
|
219
|
+
type_of_union: Optional[str] = None
|
|
220
|
+
) -> None:
|
|
221
|
+
if type_of_union is None:
|
|
222
|
+
if (success is not None) + (error is not None) + (in_progress is not None) != 1:
|
|
223
|
+
raise ValueError('a union must contain a single member')
|
|
224
|
+
|
|
225
|
+
if success is not None:
|
|
226
|
+
self._success = success
|
|
227
|
+
self._type = 'success'
|
|
228
|
+
if error is not None:
|
|
229
|
+
self._error = error
|
|
230
|
+
self._type = 'error'
|
|
231
|
+
if in_progress is not None:
|
|
232
|
+
self._in_progress = in_progress
|
|
233
|
+
self._type = 'inProgress'
|
|
234
|
+
|
|
235
|
+
elif type_of_union == 'success':
|
|
236
|
+
if success is None:
|
|
237
|
+
raise ValueError('a union value must not be None')
|
|
238
|
+
self._success = success
|
|
239
|
+
self._type = 'success'
|
|
240
|
+
elif type_of_union == 'error':
|
|
241
|
+
if error is None:
|
|
242
|
+
raise ValueError('a union value must not be None')
|
|
243
|
+
self._error = error
|
|
244
|
+
self._type = 'error'
|
|
245
|
+
elif type_of_union == 'inProgress':
|
|
246
|
+
if in_progress is None:
|
|
247
|
+
raise ValueError('a union value must not be None')
|
|
248
|
+
self._in_progress = in_progress
|
|
249
|
+
self._type = 'inProgress'
|
|
250
|
+
|
|
251
|
+
@builtins.property
|
|
252
|
+
def success(self) -> Optional["api_SuccessResult"]:
|
|
253
|
+
return self._success
|
|
254
|
+
|
|
255
|
+
@builtins.property
|
|
256
|
+
def error(self) -> Optional["api_ErrorResult"]:
|
|
257
|
+
return self._error
|
|
258
|
+
|
|
259
|
+
@builtins.property
|
|
260
|
+
def in_progress(self) -> Optional["api_InProgressResult"]:
|
|
261
|
+
return self._in_progress
|
|
262
|
+
|
|
263
|
+
def accept(self, visitor) -> Any:
|
|
264
|
+
if not isinstance(visitor, api_IngestStatusV2Visitor):
|
|
265
|
+
raise ValueError('{} is not an instance of api_IngestStatusV2Visitor'.format(visitor.__class__.__name__))
|
|
266
|
+
if self._type == 'success' and self.success is not None:
|
|
267
|
+
return visitor._success(self.success)
|
|
268
|
+
if self._type == 'error' and self.error is not None:
|
|
269
|
+
return visitor._error(self.error)
|
|
270
|
+
if self._type == 'inProgress' and self.in_progress is not None:
|
|
271
|
+
return visitor._in_progress(self.in_progress)
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
api_IngestStatusV2.__name__ = "IngestStatusV2"
|
|
275
|
+
api_IngestStatusV2.__qualname__ = "IngestStatusV2"
|
|
276
|
+
api_IngestStatusV2.__module__ = "nominal_api.api"
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
class api_IngestStatusV2Visitor:
|
|
280
|
+
|
|
281
|
+
@abstractmethod
|
|
282
|
+
def _success(self, success: "api_SuccessResult") -> Any:
|
|
283
|
+
pass
|
|
284
|
+
|
|
285
|
+
@abstractmethod
|
|
286
|
+
def _error(self, error: "api_ErrorResult") -> Any:
|
|
287
|
+
pass
|
|
288
|
+
|
|
289
|
+
@abstractmethod
|
|
290
|
+
def _in_progress(self, in_progress: "api_InProgressResult") -> Any:
|
|
291
|
+
pass
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
api_IngestStatusV2Visitor.__name__ = "IngestStatusV2Visitor"
|
|
295
|
+
api_IngestStatusV2Visitor.__qualname__ = "IngestStatusV2Visitor"
|
|
296
|
+
api_IngestStatusV2Visitor.__module__ = "nominal_api.api"
|
|
297
|
+
|
|
298
|
+
|
|
136
299
|
class api_McapChannelLocator(ConjureUnionType):
|
|
137
300
|
"""Locator for a channel in an mcap file. Channel name is not guaranteed to be unique, so channel ID should
|
|
138
301
|
be used for mcap files with duplicate channel names."""
|
|
@@ -306,6 +469,22 @@ api_SeriesDataType.__qualname__ = "SeriesDataType"
|
|
|
306
469
|
api_SeriesDataType.__module__ = "nominal_api.api"
|
|
307
470
|
|
|
308
471
|
|
|
472
|
+
class api_SuccessResult(ConjureBeanType):
|
|
473
|
+
|
|
474
|
+
@builtins.classmethod
|
|
475
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
476
|
+
return {
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
__slots__: List[str] = []
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
api_SuccessResult.__name__ = "SuccessResult"
|
|
484
|
+
api_SuccessResult.__qualname__ = "SuccessResult"
|
|
485
|
+
api_SuccessResult.__module__ = "nominal_api.api"
|
|
486
|
+
|
|
487
|
+
|
|
309
488
|
class api_TimeUnit(ConjureEnumType):
|
|
310
489
|
|
|
311
490
|
DAYS = 'DAYS'
|
|
@@ -1710,7 +1889,7 @@ class authentication_api_SearchUsersRequest(ConjureBeanType):
|
|
|
1710
1889
|
return {
|
|
1711
1890
|
'query': ConjureFieldDefinition('query', authentication_api_SearchUsersQuery),
|
|
1712
1891
|
'sort_by': ConjureFieldDefinition('sortBy', OptionalTypeWrapper[authentication_api_SortBy]),
|
|
1713
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
1892
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
1714
1893
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
1715
1894
|
}
|
|
1716
1895
|
|
|
@@ -1756,7 +1935,7 @@ class authentication_api_SearchUsersResponseV2(ConjureBeanType):
|
|
|
1756
1935
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
1757
1936
|
return {
|
|
1758
1937
|
'results': ConjureFieldDefinition('results', List[authentication_api_UserV2]),
|
|
1759
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
1938
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
1760
1939
|
}
|
|
1761
1940
|
|
|
1762
1941
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -2599,7 +2778,7 @@ class authorization_ListApiKeyRequest(ConjureBeanType):
|
|
|
2599
2778
|
'include_deleted': ConjureFieldDefinition('includeDeleted', OptionalTypeWrapper[bool]),
|
|
2600
2779
|
'include_expired': ConjureFieldDefinition('includeExpired', OptionalTypeWrapper[bool]),
|
|
2601
2780
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
2602
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
2781
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
2603
2782
|
}
|
|
2604
2783
|
|
|
2605
2784
|
__slots__: List[str] = ['_include_deleted', '_include_expired', '_page_size', '_next_page_token']
|
|
@@ -2647,7 +2826,7 @@ class authorization_ListApiKeyResponse(ConjureBeanType):
|
|
|
2647
2826
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
2648
2827
|
return {
|
|
2649
2828
|
'api_keys': ConjureFieldDefinition('apiKeys', List[authorization_ApiKey]),
|
|
2650
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
2829
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
2651
2830
|
}
|
|
2652
2831
|
|
|
2653
2832
|
__slots__: List[str] = ['_api_keys', '_next_page_token']
|
|
@@ -4166,7 +4345,7 @@ class datasource_api_SearchChannelsRequest(ConjureBeanType):
|
|
|
4166
4345
|
'exact_match': ConjureFieldDefinition('exactMatch', List[str]),
|
|
4167
4346
|
'data_sources': ConjureFieldDefinition('dataSources', List[api_rids_DataSourceRid]),
|
|
4168
4347
|
'previously_selected_channels': ConjureFieldDefinition('previouslySelectedChannels', OptionalTypeWrapper[Dict[api_rids_DataSourceRid, List[api_Channel]]]),
|
|
4169
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
4348
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
4170
4349
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
4171
4350
|
}
|
|
4172
4351
|
|
|
@@ -4227,7 +4406,7 @@ class datasource_api_SearchChannelsResponse(ConjureBeanType):
|
|
|
4227
4406
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
4228
4407
|
return {
|
|
4229
4408
|
'results': ConjureFieldDefinition('results', List[datasource_api_ChannelMetadata]),
|
|
4230
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
4409
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
4231
4410
|
}
|
|
4232
4411
|
|
|
4233
4412
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -5062,7 +5241,7 @@ class datasource_logset_api_SearchLogSetsRequest(ConjureBeanType):
|
|
|
5062
5241
|
@builtins.classmethod
|
|
5063
5242
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5064
5243
|
return {
|
|
5065
|
-
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[
|
|
5244
|
+
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[api_Token]),
|
|
5066
5245
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
5067
5246
|
}
|
|
5068
5247
|
|
|
@@ -5095,7 +5274,7 @@ class datasource_logset_api_SearchLogSetsResponse(ConjureBeanType):
|
|
|
5095
5274
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5096
5275
|
return {
|
|
5097
5276
|
'values': ConjureFieldDefinition('values', List[datasource_logset_api_LogSetMetadata]),
|
|
5098
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
5277
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
5099
5278
|
}
|
|
5100
5279
|
|
|
5101
5280
|
__slots__: List[str] = ['_values', '_next_page_token']
|
|
@@ -5123,7 +5302,7 @@ class datasource_logset_api_SearchLogsRequest(ConjureBeanType):
|
|
|
5123
5302
|
@builtins.classmethod
|
|
5124
5303
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5125
5304
|
return {
|
|
5126
|
-
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[
|
|
5305
|
+
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[api_Token]),
|
|
5127
5306
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
5128
5307
|
}
|
|
5129
5308
|
|
|
@@ -5156,7 +5335,7 @@ class datasource_logset_api_SearchLogsResponse(ConjureBeanType):
|
|
|
5156
5335
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5157
5336
|
return {
|
|
5158
5337
|
'logs': ConjureFieldDefinition('logs', List[datasource_logset_api_Log]),
|
|
5159
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
5338
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
5160
5339
|
}
|
|
5161
5340
|
|
|
5162
5341
|
__slots__: List[str] = ['_logs', '_next_page_token']
|
|
@@ -5765,7 +5944,7 @@ class event_SearchEventsRequest(ConjureBeanType):
|
|
|
5765
5944
|
return {
|
|
5766
5945
|
'sort': ConjureFieldDefinition('sort', event_SortOptions),
|
|
5767
5946
|
'page_size': ConjureFieldDefinition('pageSize', int),
|
|
5768
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
5947
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
5769
5948
|
'query': ConjureFieldDefinition('query', event_SearchQuery),
|
|
5770
5949
|
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
5771
5950
|
}
|
|
@@ -5817,7 +5996,7 @@ class event_SearchEventsResponse(ConjureBeanType):
|
|
|
5817
5996
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
5818
5997
|
return {
|
|
5819
5998
|
'results': ConjureFieldDefinition('results', List[event_Event]),
|
|
5820
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
5999
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
5821
6000
|
}
|
|
5822
6001
|
|
|
5823
6002
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -6801,35 +6980,6 @@ ingest_api_EpochTimestamp.__qualname__ = "EpochTimestamp"
|
|
|
6801
6980
|
ingest_api_EpochTimestamp.__module__ = "nominal_api.ingest_api"
|
|
6802
6981
|
|
|
6803
6982
|
|
|
6804
|
-
class ingest_api_ErrorResult(ConjureBeanType):
|
|
6805
|
-
|
|
6806
|
-
@builtins.classmethod
|
|
6807
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
6808
|
-
return {
|
|
6809
|
-
'error_type': ConjureFieldDefinition('errorType', ingest_api_ErrorType),
|
|
6810
|
-
'message': ConjureFieldDefinition('message', str)
|
|
6811
|
-
}
|
|
6812
|
-
|
|
6813
|
-
__slots__: List[str] = ['_error_type', '_message']
|
|
6814
|
-
|
|
6815
|
-
def __init__(self, error_type: str, message: str) -> None:
|
|
6816
|
-
self._error_type = error_type
|
|
6817
|
-
self._message = message
|
|
6818
|
-
|
|
6819
|
-
@builtins.property
|
|
6820
|
-
def error_type(self) -> str:
|
|
6821
|
-
return self._error_type
|
|
6822
|
-
|
|
6823
|
-
@builtins.property
|
|
6824
|
-
def message(self) -> str:
|
|
6825
|
-
return self._message
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
ingest_api_ErrorResult.__name__ = "ErrorResult"
|
|
6829
|
-
ingest_api_ErrorResult.__qualname__ = "ErrorResult"
|
|
6830
|
-
ingest_api_ErrorResult.__module__ = "nominal_api.ingest_api"
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
6983
|
class ingest_api_ExistingDatasetIngestDestination(ConjureBeanType):
|
|
6834
6984
|
|
|
6835
6985
|
@builtins.classmethod
|
|
@@ -6876,22 +7026,6 @@ ingest_api_GcsIngestSource.__qualname__ = "GcsIngestSource"
|
|
|
6876
7026
|
ingest_api_GcsIngestSource.__module__ = "nominal_api.ingest_api"
|
|
6877
7027
|
|
|
6878
7028
|
|
|
6879
|
-
class ingest_api_InProgressResult(ConjureBeanType):
|
|
6880
|
-
|
|
6881
|
-
@builtins.classmethod
|
|
6882
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
6883
|
-
return {
|
|
6884
|
-
}
|
|
6885
|
-
|
|
6886
|
-
__slots__: List[str] = []
|
|
6887
|
-
|
|
6888
|
-
|
|
6889
|
-
|
|
6890
|
-
ingest_api_InProgressResult.__name__ = "InProgressResult"
|
|
6891
|
-
ingest_api_InProgressResult.__qualname__ = "InProgressResult"
|
|
6892
|
-
ingest_api_InProgressResult.__module__ = "nominal_api.ingest_api"
|
|
6893
|
-
|
|
6894
|
-
|
|
6895
7029
|
class ingest_api_IngestDataSource(ConjureUnionType):
|
|
6896
7030
|
_existing_data_source: Optional[str] = None
|
|
6897
7031
|
_new_data_source: Optional["ingest_api_DeprecatedNewDataSource"] = None
|
|
@@ -7379,13 +7513,13 @@ class ingest_api_IngestProgressV2(ConjureBeanType):
|
|
|
7379
7513
|
return {
|
|
7380
7514
|
'start_time': ConjureFieldDefinition('startTime', str),
|
|
7381
7515
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[str]),
|
|
7382
|
-
'ingest_status': ConjureFieldDefinition('ingestStatus',
|
|
7516
|
+
'ingest_status': ConjureFieldDefinition('ingestStatus', api_IngestStatusV2),
|
|
7383
7517
|
'incalculable': ConjureFieldDefinition('incalculable', OptionalTypeWrapper[bool])
|
|
7384
7518
|
}
|
|
7385
7519
|
|
|
7386
7520
|
__slots__: List[str] = ['_start_time', '_end_time', '_ingest_status', '_incalculable']
|
|
7387
7521
|
|
|
7388
|
-
def __init__(self, ingest_status: "
|
|
7522
|
+
def __init__(self, ingest_status: "api_IngestStatusV2", start_time: str, end_time: Optional[str] = None, incalculable: Optional[bool] = None) -> None:
|
|
7389
7523
|
self._start_time = start_time
|
|
7390
7524
|
self._end_time = end_time
|
|
7391
7525
|
self._ingest_status = ingest_status
|
|
@@ -7406,7 +7540,7 @@ class ingest_api_IngestProgressV2(ConjureBeanType):
|
|
|
7406
7540
|
return self._end_time
|
|
7407
7541
|
|
|
7408
7542
|
@builtins.property
|
|
7409
|
-
def ingest_status(self) -> "
|
|
7543
|
+
def ingest_status(self) -> "api_IngestStatusV2":
|
|
7410
7544
|
"""
|
|
7411
7545
|
Status of ingest, contains error if failed
|
|
7412
7546
|
"""
|
|
@@ -7957,104 +8091,6 @@ ingest_api_IngestStatus.__qualname__ = "IngestStatus"
|
|
|
7957
8091
|
ingest_api_IngestStatus.__module__ = "nominal_api.ingest_api"
|
|
7958
8092
|
|
|
7959
8093
|
|
|
7960
|
-
class ingest_api_IngestStatusV2(ConjureUnionType):
|
|
7961
|
-
_success: Optional["ingest_api_SuccessResult"] = None
|
|
7962
|
-
_error: Optional["ingest_api_ErrorResult"] = None
|
|
7963
|
-
_in_progress: Optional["ingest_api_InProgressResult"] = None
|
|
7964
|
-
|
|
7965
|
-
@builtins.classmethod
|
|
7966
|
-
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
7967
|
-
return {
|
|
7968
|
-
'success': ConjureFieldDefinition('success', ingest_api_SuccessResult),
|
|
7969
|
-
'error': ConjureFieldDefinition('error', ingest_api_ErrorResult),
|
|
7970
|
-
'in_progress': ConjureFieldDefinition('inProgress', ingest_api_InProgressResult)
|
|
7971
|
-
}
|
|
7972
|
-
|
|
7973
|
-
def __init__(
|
|
7974
|
-
self,
|
|
7975
|
-
success: Optional["ingest_api_SuccessResult"] = None,
|
|
7976
|
-
error: Optional["ingest_api_ErrorResult"] = None,
|
|
7977
|
-
in_progress: Optional["ingest_api_InProgressResult"] = None,
|
|
7978
|
-
type_of_union: Optional[str] = None
|
|
7979
|
-
) -> None:
|
|
7980
|
-
if type_of_union is None:
|
|
7981
|
-
if (success is not None) + (error is not None) + (in_progress is not None) != 1:
|
|
7982
|
-
raise ValueError('a union must contain a single member')
|
|
7983
|
-
|
|
7984
|
-
if success is not None:
|
|
7985
|
-
self._success = success
|
|
7986
|
-
self._type = 'success'
|
|
7987
|
-
if error is not None:
|
|
7988
|
-
self._error = error
|
|
7989
|
-
self._type = 'error'
|
|
7990
|
-
if in_progress is not None:
|
|
7991
|
-
self._in_progress = in_progress
|
|
7992
|
-
self._type = 'inProgress'
|
|
7993
|
-
|
|
7994
|
-
elif type_of_union == 'success':
|
|
7995
|
-
if success is None:
|
|
7996
|
-
raise ValueError('a union value must not be None')
|
|
7997
|
-
self._success = success
|
|
7998
|
-
self._type = 'success'
|
|
7999
|
-
elif type_of_union == 'error':
|
|
8000
|
-
if error is None:
|
|
8001
|
-
raise ValueError('a union value must not be None')
|
|
8002
|
-
self._error = error
|
|
8003
|
-
self._type = 'error'
|
|
8004
|
-
elif type_of_union == 'inProgress':
|
|
8005
|
-
if in_progress is None:
|
|
8006
|
-
raise ValueError('a union value must not be None')
|
|
8007
|
-
self._in_progress = in_progress
|
|
8008
|
-
self._type = 'inProgress'
|
|
8009
|
-
|
|
8010
|
-
@builtins.property
|
|
8011
|
-
def success(self) -> Optional["ingest_api_SuccessResult"]:
|
|
8012
|
-
return self._success
|
|
8013
|
-
|
|
8014
|
-
@builtins.property
|
|
8015
|
-
def error(self) -> Optional["ingest_api_ErrorResult"]:
|
|
8016
|
-
return self._error
|
|
8017
|
-
|
|
8018
|
-
@builtins.property
|
|
8019
|
-
def in_progress(self) -> Optional["ingest_api_InProgressResult"]:
|
|
8020
|
-
return self._in_progress
|
|
8021
|
-
|
|
8022
|
-
def accept(self, visitor) -> Any:
|
|
8023
|
-
if not isinstance(visitor, ingest_api_IngestStatusV2Visitor):
|
|
8024
|
-
raise ValueError('{} is not an instance of ingest_api_IngestStatusV2Visitor'.format(visitor.__class__.__name__))
|
|
8025
|
-
if self._type == 'success' and self.success is not None:
|
|
8026
|
-
return visitor._success(self.success)
|
|
8027
|
-
if self._type == 'error' and self.error is not None:
|
|
8028
|
-
return visitor._error(self.error)
|
|
8029
|
-
if self._type == 'inProgress' and self.in_progress is not None:
|
|
8030
|
-
return visitor._in_progress(self.in_progress)
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
ingest_api_IngestStatusV2.__name__ = "IngestStatusV2"
|
|
8034
|
-
ingest_api_IngestStatusV2.__qualname__ = "IngestStatusV2"
|
|
8035
|
-
ingest_api_IngestStatusV2.__module__ = "nominal_api.ingest_api"
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
class ingest_api_IngestStatusV2Visitor:
|
|
8039
|
-
|
|
8040
|
-
@abstractmethod
|
|
8041
|
-
def _success(self, success: "ingest_api_SuccessResult") -> Any:
|
|
8042
|
-
pass
|
|
8043
|
-
|
|
8044
|
-
@abstractmethod
|
|
8045
|
-
def _error(self, error: "ingest_api_ErrorResult") -> Any:
|
|
8046
|
-
pass
|
|
8047
|
-
|
|
8048
|
-
@abstractmethod
|
|
8049
|
-
def _in_progress(self, in_progress: "ingest_api_InProgressResult") -> Any:
|
|
8050
|
-
pass
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
ingest_api_IngestStatusV2Visitor.__name__ = "IngestStatusV2Visitor"
|
|
8054
|
-
ingest_api_IngestStatusV2Visitor.__qualname__ = "IngestStatusV2Visitor"
|
|
8055
|
-
ingest_api_IngestStatusV2Visitor.__module__ = "nominal_api.ingest_api"
|
|
8056
|
-
|
|
8057
|
-
|
|
8058
8094
|
class ingest_api_IngestVideoDestination(ConjureUnionType):
|
|
8059
8095
|
_new_video: Optional["ingest_api_NewVideoIngestDestination"] = None
|
|
8060
8096
|
|
|
@@ -9287,22 +9323,6 @@ ingest_api_SkipRowsConfig.__qualname__ = "SkipRowsConfig"
|
|
|
9287
9323
|
ingest_api_SkipRowsConfig.__module__ = "nominal_api.ingest_api"
|
|
9288
9324
|
|
|
9289
9325
|
|
|
9290
|
-
class ingest_api_SuccessResult(ConjureBeanType):
|
|
9291
|
-
|
|
9292
|
-
@builtins.classmethod
|
|
9293
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
9294
|
-
return {
|
|
9295
|
-
}
|
|
9296
|
-
|
|
9297
|
-
__slots__: List[str] = []
|
|
9298
|
-
|
|
9299
|
-
|
|
9300
|
-
|
|
9301
|
-
ingest_api_SuccessResult.__name__ = "SuccessResult"
|
|
9302
|
-
ingest_api_SuccessResult.__qualname__ = "SuccessResult"
|
|
9303
|
-
ingest_api_SuccessResult.__module__ = "nominal_api.ingest_api"
|
|
9304
|
-
|
|
9305
|
-
|
|
9306
9326
|
class ingest_api_TimeOffsetSpec(ConjureUnionType):
|
|
9307
9327
|
_nanos: Optional["scout_run_api_Duration"] = None
|
|
9308
9328
|
|
|
@@ -12436,7 +12456,7 @@ class scout_asset_api_SearchAssetChannelsRequest(ConjureBeanType):
|
|
|
12436
12456
|
return {
|
|
12437
12457
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
12438
12458
|
'data_scope_name_filter': ConjureFieldDefinition('dataScopeNameFilter', OptionalTypeWrapper[List[scout_asset_api_DataScopeName]]),
|
|
12439
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
12459
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
12440
12460
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
12441
12461
|
}
|
|
12442
12462
|
|
|
@@ -12482,7 +12502,7 @@ class scout_asset_api_SearchAssetChannelsResponse(ConjureBeanType):
|
|
|
12482
12502
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12483
12503
|
return {
|
|
12484
12504
|
'results': ConjureFieldDefinition('results', List[scout_asset_api_ChannelMetadata]),
|
|
12485
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
12505
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
12486
12506
|
}
|
|
12487
12507
|
|
|
12488
12508
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -12694,7 +12714,7 @@ class scout_asset_api_SearchAssetsRequest(ConjureBeanType):
|
|
|
12694
12714
|
return {
|
|
12695
12715
|
'sort': ConjureFieldDefinition('sort', scout_asset_api_SortOptions),
|
|
12696
12716
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
12697
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
12717
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
12698
12718
|
'query': ConjureFieldDefinition('query', scout_asset_api_SearchAssetsQuery),
|
|
12699
12719
|
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
12700
12720
|
}
|
|
@@ -12746,7 +12766,7 @@ class scout_asset_api_SearchAssetsResponse(ConjureBeanType):
|
|
|
12746
12766
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12747
12767
|
return {
|
|
12748
12768
|
'results': ConjureFieldDefinition('results', List[scout_asset_api_Asset]),
|
|
12749
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
12769
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
12750
12770
|
}
|
|
12751
12771
|
|
|
12752
12772
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -12895,7 +12915,7 @@ class scout_asset_api_SearchTypesRequest(ConjureBeanType):
|
|
|
12895
12915
|
return {
|
|
12896
12916
|
'sort': ConjureFieldDefinition('sort', scout_asset_api_SortOptions),
|
|
12897
12917
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
12898
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
12918
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
12899
12919
|
'query': ConjureFieldDefinition('query', scout_asset_api_SearchTypesQuery),
|
|
12900
12920
|
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
12901
12921
|
}
|
|
@@ -12947,7 +12967,7 @@ class scout_asset_api_SearchTypesResponse(ConjureBeanType):
|
|
|
12947
12967
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12948
12968
|
return {
|
|
12949
12969
|
'results': ConjureFieldDefinition('results', List[scout_asset_api_Type]),
|
|
12950
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
12970
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
12951
12971
|
}
|
|
12952
12972
|
|
|
12953
12973
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -14159,7 +14179,7 @@ a file, primarily CSV.
|
|
|
14159
14179
|
_decoder = ConjureDecoder()
|
|
14160
14180
|
return _decoder.decode(_response.json(), scout_catalog_SearchDatasetsResponse, self._return_none_for_unknown_union_types)
|
|
14161
14181
|
|
|
14162
|
-
def update_dataset_ingest_status_v2(self, auth_header: str, details: "scout_catalog_UpdateIngestStatusV2") -> "
|
|
14182
|
+
def update_dataset_ingest_status_v2(self, auth_header: str, details: "scout_catalog_UpdateIngestStatusV2") -> "api_IngestStatusV2":
|
|
14163
14183
|
|
|
14164
14184
|
_headers: Dict[str, Any] = {
|
|
14165
14185
|
'Accept': 'application/json',
|
|
@@ -14186,7 +14206,7 @@ a file, primarily CSV.
|
|
|
14186
14206
|
json=_json)
|
|
14187
14207
|
|
|
14188
14208
|
_decoder = ConjureDecoder()
|
|
14189
|
-
return _decoder.decode(_response.json(),
|
|
14209
|
+
return _decoder.decode(_response.json(), api_IngestStatusV2, self._return_none_for_unknown_union_types)
|
|
14190
14210
|
|
|
14191
14211
|
def get_ingest_progress_v2(self, auth_header: str, dataset_rid: str) -> "scout_catalog_IngestProgressV2":
|
|
14192
14212
|
|
|
@@ -14986,13 +15006,13 @@ class scout_catalog_DatasetFile(ConjureBeanType):
|
|
|
14986
15006
|
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_catalog_Bounds]),
|
|
14987
15007
|
'uploaded_at': ConjureFieldDefinition('uploadedAt', str),
|
|
14988
15008
|
'ingested_at': ConjureFieldDefinition('ingestedAt', OptionalTypeWrapper[str]),
|
|
14989
|
-
'ingest_status': ConjureFieldDefinition('ingestStatus',
|
|
15009
|
+
'ingest_status': ConjureFieldDefinition('ingestStatus', api_IngestStatusV2),
|
|
14990
15010
|
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[scout_catalog_TimestampMetadata])
|
|
14991
15011
|
}
|
|
14992
15012
|
|
|
14993
15013
|
__slots__: List[str] = ['_id', '_dataset_rid', '_name', '_handle', '_bounds', '_uploaded_at', '_ingested_at', '_ingest_status', '_timestamp_metadata']
|
|
14994
15014
|
|
|
14995
|
-
def __init__(self, dataset_rid: str, handle: "scout_catalog_Handle", id: str, ingest_status: "
|
|
15015
|
+
def __init__(self, dataset_rid: str, handle: "scout_catalog_Handle", id: str, ingest_status: "api_IngestStatusV2", name: str, uploaded_at: str, bounds: Optional["scout_catalog_Bounds"] = None, ingested_at: Optional[str] = None, timestamp_metadata: Optional["scout_catalog_TimestampMetadata"] = None) -> None:
|
|
14996
15016
|
self._id = id
|
|
14997
15017
|
self._dataset_rid = dataset_rid
|
|
14998
15018
|
self._name = name
|
|
@@ -15039,7 +15059,7 @@ ingested for any reason or is still being processed, then this value will be emp
|
|
|
15039
15059
|
return self._ingested_at
|
|
15040
15060
|
|
|
15041
15061
|
@builtins.property
|
|
15042
|
-
def ingest_status(self) -> "
|
|
15062
|
+
def ingest_status(self) -> "api_IngestStatusV2":
|
|
15043
15063
|
return self._ingest_status
|
|
15044
15064
|
|
|
15045
15065
|
@builtins.property
|
|
@@ -15085,7 +15105,7 @@ class scout_catalog_DatasetFilesPage(ConjureBeanType):
|
|
|
15085
15105
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15086
15106
|
return {
|
|
15087
15107
|
'files': ConjureFieldDefinition('files', List[scout_catalog_DatasetFile]),
|
|
15088
|
-
'next_page': ConjureFieldDefinition('nextPage', OptionalTypeWrapper[
|
|
15108
|
+
'next_page': ConjureFieldDefinition('nextPage', OptionalTypeWrapper[api_Token])
|
|
15089
15109
|
}
|
|
15090
15110
|
|
|
15091
15111
|
__slots__: List[str] = ['_files', '_next_page']
|
|
@@ -15252,7 +15272,7 @@ class scout_catalog_EnrichedDataset(ConjureBeanType):
|
|
|
15252
15272
|
'ingest_date': ConjureFieldDefinition('ingestDate', str),
|
|
15253
15273
|
'ingest_status': ConjureFieldDefinition('ingestStatus', OptionalTypeWrapper[scout_catalog_IngestStatus]),
|
|
15254
15274
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_catalog_DatasetOriginMetadata),
|
|
15255
|
-
'last_ingest_status': ConjureFieldDefinition('lastIngestStatus',
|
|
15275
|
+
'last_ingest_status': ConjureFieldDefinition('lastIngestStatus', api_IngestStatusV2),
|
|
15256
15276
|
'retention_policy': ConjureFieldDefinition('retentionPolicy', scout_catalog_RetentionPolicy),
|
|
15257
15277
|
'source': ConjureFieldDefinition('source', OptionalTypeWrapper[str]),
|
|
15258
15278
|
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_catalog_Bounds]),
|
|
@@ -15264,7 +15284,7 @@ class scout_catalog_EnrichedDataset(ConjureBeanType):
|
|
|
15264
15284
|
|
|
15265
15285
|
__slots__: List[str] = ['_rid', '_uuid', '_name', '_description', '_display_name', '_metadata', '_handle', '_ingest_date', '_ingest_status', '_origin_metadata', '_last_ingest_status', '_retention_policy', '_source', '_bounds', '_timestamp_type', '_labels', '_properties', '_granularity']
|
|
15266
15286
|
|
|
15267
|
-
def __init__(self, display_name: str, granularity: "api_Granularity", ingest_date: str, labels: List[str], last_ingest_status: "
|
|
15287
|
+
def __init__(self, display_name: str, granularity: "api_Granularity", ingest_date: str, labels: List[str], last_ingest_status: "api_IngestStatusV2", name: str, origin_metadata: "scout_catalog_DatasetOriginMetadata", properties: Dict[str, str], retention_policy: "scout_catalog_RetentionPolicy", rid: str, timestamp_type: "scout_catalog_WeakTimestampType", uuid: str, bounds: Optional["scout_catalog_Bounds"] = None, description: Optional[str] = None, handle: Optional["scout_catalog_Handle"] = None, ingest_status: Optional["scout_catalog_IngestStatus"] = None, metadata: Optional[Dict[str, str]] = None, source: Optional[str] = None) -> None:
|
|
15268
15288
|
self._rid = rid
|
|
15269
15289
|
self._uuid = uuid
|
|
15270
15290
|
self._name = name
|
|
@@ -15325,7 +15345,7 @@ class scout_catalog_EnrichedDataset(ConjureBeanType):
|
|
|
15325
15345
|
return self._origin_metadata
|
|
15326
15346
|
|
|
15327
15347
|
@builtins.property
|
|
15328
|
-
def last_ingest_status(self) -> "
|
|
15348
|
+
def last_ingest_status(self) -> "api_IngestStatusV2":
|
|
15329
15349
|
return self._last_ingest_status
|
|
15330
15350
|
|
|
15331
15351
|
@builtins.property
|
|
@@ -15385,35 +15405,6 @@ scout_catalog_EpochTimestamp.__qualname__ = "EpochTimestamp"
|
|
|
15385
15405
|
scout_catalog_EpochTimestamp.__module__ = "nominal_api.scout_catalog"
|
|
15386
15406
|
|
|
15387
15407
|
|
|
15388
|
-
class scout_catalog_ErrorResult(ConjureBeanType):
|
|
15389
|
-
|
|
15390
|
-
@builtins.classmethod
|
|
15391
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15392
|
-
return {
|
|
15393
|
-
'error_type': ConjureFieldDefinition('errorType', scout_catalog_ErrorType),
|
|
15394
|
-
'message': ConjureFieldDefinition('message', str)
|
|
15395
|
-
}
|
|
15396
|
-
|
|
15397
|
-
__slots__: List[str] = ['_error_type', '_message']
|
|
15398
|
-
|
|
15399
|
-
def __init__(self, error_type: str, message: str) -> None:
|
|
15400
|
-
self._error_type = error_type
|
|
15401
|
-
self._message = message
|
|
15402
|
-
|
|
15403
|
-
@builtins.property
|
|
15404
|
-
def error_type(self) -> str:
|
|
15405
|
-
return self._error_type
|
|
15406
|
-
|
|
15407
|
-
@builtins.property
|
|
15408
|
-
def message(self) -> str:
|
|
15409
|
-
return self._message
|
|
15410
|
-
|
|
15411
|
-
|
|
15412
|
-
scout_catalog_ErrorResult.__name__ = "ErrorResult"
|
|
15413
|
-
scout_catalog_ErrorResult.__qualname__ = "ErrorResult"
|
|
15414
|
-
scout_catalog_ErrorResult.__module__ = "nominal_api.scout_catalog"
|
|
15415
|
-
|
|
15416
|
-
|
|
15417
15408
|
class scout_catalog_GetChannelsForDatasetsRequest(ConjureBeanType):
|
|
15418
15409
|
|
|
15419
15410
|
@builtins.classmethod
|
|
@@ -15691,22 +15682,6 @@ scout_catalog_HandleVisitor.__qualname__ = "HandleVisitor"
|
|
|
15691
15682
|
scout_catalog_HandleVisitor.__module__ = "nominal_api.scout_catalog"
|
|
15692
15683
|
|
|
15693
15684
|
|
|
15694
|
-
class scout_catalog_InProgressResult(ConjureBeanType):
|
|
15695
|
-
|
|
15696
|
-
@builtins.classmethod
|
|
15697
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15698
|
-
return {
|
|
15699
|
-
}
|
|
15700
|
-
|
|
15701
|
-
__slots__: List[str] = []
|
|
15702
|
-
|
|
15703
|
-
|
|
15704
|
-
|
|
15705
|
-
scout_catalog_InProgressResult.__name__ = "InProgressResult"
|
|
15706
|
-
scout_catalog_InProgressResult.__qualname__ = "InProgressResult"
|
|
15707
|
-
scout_catalog_InProgressResult.__module__ = "nominal_api.scout_catalog"
|
|
15708
|
-
|
|
15709
|
-
|
|
15710
15685
|
class scout_catalog_IngestProgressV2(ConjureBeanType):
|
|
15711
15686
|
|
|
15712
15687
|
@builtins.classmethod
|
|
@@ -15714,13 +15689,13 @@ class scout_catalog_IngestProgressV2(ConjureBeanType):
|
|
|
15714
15689
|
return {
|
|
15715
15690
|
'start_time': ConjureFieldDefinition('startTime', str),
|
|
15716
15691
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[str]),
|
|
15717
|
-
'ingest_status': ConjureFieldDefinition('ingestStatus',
|
|
15692
|
+
'ingest_status': ConjureFieldDefinition('ingestStatus', api_IngestStatusV2),
|
|
15718
15693
|
'incalculable': ConjureFieldDefinition('incalculable', OptionalTypeWrapper[bool])
|
|
15719
15694
|
}
|
|
15720
15695
|
|
|
15721
15696
|
__slots__: List[str] = ['_start_time', '_end_time', '_ingest_status', '_incalculable']
|
|
15722
15697
|
|
|
15723
|
-
def __init__(self, ingest_status: "
|
|
15698
|
+
def __init__(self, ingest_status: "api_IngestStatusV2", start_time: str, end_time: Optional[str] = None, incalculable: Optional[bool] = None) -> None:
|
|
15724
15699
|
self._start_time = start_time
|
|
15725
15700
|
self._end_time = end_time
|
|
15726
15701
|
self._ingest_status = ingest_status
|
|
@@ -15741,7 +15716,7 @@ class scout_catalog_IngestProgressV2(ConjureBeanType):
|
|
|
15741
15716
|
return self._end_time
|
|
15742
15717
|
|
|
15743
15718
|
@builtins.property
|
|
15744
|
-
def ingest_status(self) -> "
|
|
15719
|
+
def ingest_status(self) -> "api_IngestStatusV2":
|
|
15745
15720
|
"""
|
|
15746
15721
|
Status of ingest, contains error if failed
|
|
15747
15722
|
"""
|
|
@@ -15780,104 +15755,6 @@ scout_catalog_IngestStatus.__qualname__ = "IngestStatus"
|
|
|
15780
15755
|
scout_catalog_IngestStatus.__module__ = "nominal_api.scout_catalog"
|
|
15781
15756
|
|
|
15782
15757
|
|
|
15783
|
-
class scout_catalog_IngestStatusV2(ConjureUnionType):
|
|
15784
|
-
_success: Optional["scout_catalog_SuccessResult"] = None
|
|
15785
|
-
_error: Optional["scout_catalog_ErrorResult"] = None
|
|
15786
|
-
_in_progress: Optional["scout_catalog_InProgressResult"] = None
|
|
15787
|
-
|
|
15788
|
-
@builtins.classmethod
|
|
15789
|
-
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15790
|
-
return {
|
|
15791
|
-
'success': ConjureFieldDefinition('success', scout_catalog_SuccessResult),
|
|
15792
|
-
'error': ConjureFieldDefinition('error', scout_catalog_ErrorResult),
|
|
15793
|
-
'in_progress': ConjureFieldDefinition('inProgress', scout_catalog_InProgressResult)
|
|
15794
|
-
}
|
|
15795
|
-
|
|
15796
|
-
def __init__(
|
|
15797
|
-
self,
|
|
15798
|
-
success: Optional["scout_catalog_SuccessResult"] = None,
|
|
15799
|
-
error: Optional["scout_catalog_ErrorResult"] = None,
|
|
15800
|
-
in_progress: Optional["scout_catalog_InProgressResult"] = None,
|
|
15801
|
-
type_of_union: Optional[str] = None
|
|
15802
|
-
) -> None:
|
|
15803
|
-
if type_of_union is None:
|
|
15804
|
-
if (success is not None) + (error is not None) + (in_progress is not None) != 1:
|
|
15805
|
-
raise ValueError('a union must contain a single member')
|
|
15806
|
-
|
|
15807
|
-
if success is not None:
|
|
15808
|
-
self._success = success
|
|
15809
|
-
self._type = 'success'
|
|
15810
|
-
if error is not None:
|
|
15811
|
-
self._error = error
|
|
15812
|
-
self._type = 'error'
|
|
15813
|
-
if in_progress is not None:
|
|
15814
|
-
self._in_progress = in_progress
|
|
15815
|
-
self._type = 'inProgress'
|
|
15816
|
-
|
|
15817
|
-
elif type_of_union == 'success':
|
|
15818
|
-
if success is None:
|
|
15819
|
-
raise ValueError('a union value must not be None')
|
|
15820
|
-
self._success = success
|
|
15821
|
-
self._type = 'success'
|
|
15822
|
-
elif type_of_union == 'error':
|
|
15823
|
-
if error is None:
|
|
15824
|
-
raise ValueError('a union value must not be None')
|
|
15825
|
-
self._error = error
|
|
15826
|
-
self._type = 'error'
|
|
15827
|
-
elif type_of_union == 'inProgress':
|
|
15828
|
-
if in_progress is None:
|
|
15829
|
-
raise ValueError('a union value must not be None')
|
|
15830
|
-
self._in_progress = in_progress
|
|
15831
|
-
self._type = 'inProgress'
|
|
15832
|
-
|
|
15833
|
-
@builtins.property
|
|
15834
|
-
def success(self) -> Optional["scout_catalog_SuccessResult"]:
|
|
15835
|
-
return self._success
|
|
15836
|
-
|
|
15837
|
-
@builtins.property
|
|
15838
|
-
def error(self) -> Optional["scout_catalog_ErrorResult"]:
|
|
15839
|
-
return self._error
|
|
15840
|
-
|
|
15841
|
-
@builtins.property
|
|
15842
|
-
def in_progress(self) -> Optional["scout_catalog_InProgressResult"]:
|
|
15843
|
-
return self._in_progress
|
|
15844
|
-
|
|
15845
|
-
def accept(self, visitor) -> Any:
|
|
15846
|
-
if not isinstance(visitor, scout_catalog_IngestStatusV2Visitor):
|
|
15847
|
-
raise ValueError('{} is not an instance of scout_catalog_IngestStatusV2Visitor'.format(visitor.__class__.__name__))
|
|
15848
|
-
if self._type == 'success' and self.success is not None:
|
|
15849
|
-
return visitor._success(self.success)
|
|
15850
|
-
if self._type == 'error' and self.error is not None:
|
|
15851
|
-
return visitor._error(self.error)
|
|
15852
|
-
if self._type == 'inProgress' and self.in_progress is not None:
|
|
15853
|
-
return visitor._in_progress(self.in_progress)
|
|
15854
|
-
|
|
15855
|
-
|
|
15856
|
-
scout_catalog_IngestStatusV2.__name__ = "IngestStatusV2"
|
|
15857
|
-
scout_catalog_IngestStatusV2.__qualname__ = "IngestStatusV2"
|
|
15858
|
-
scout_catalog_IngestStatusV2.__module__ = "nominal_api.scout_catalog"
|
|
15859
|
-
|
|
15860
|
-
|
|
15861
|
-
class scout_catalog_IngestStatusV2Visitor:
|
|
15862
|
-
|
|
15863
|
-
@abstractmethod
|
|
15864
|
-
def _success(self, success: "scout_catalog_SuccessResult") -> Any:
|
|
15865
|
-
pass
|
|
15866
|
-
|
|
15867
|
-
@abstractmethod
|
|
15868
|
-
def _error(self, error: "scout_catalog_ErrorResult") -> Any:
|
|
15869
|
-
pass
|
|
15870
|
-
|
|
15871
|
-
@abstractmethod
|
|
15872
|
-
def _in_progress(self, in_progress: "scout_catalog_InProgressResult") -> Any:
|
|
15873
|
-
pass
|
|
15874
|
-
|
|
15875
|
-
|
|
15876
|
-
scout_catalog_IngestStatusV2Visitor.__name__ = "IngestStatusV2Visitor"
|
|
15877
|
-
scout_catalog_IngestStatusV2Visitor.__qualname__ = "IngestStatusV2Visitor"
|
|
15878
|
-
scout_catalog_IngestStatusV2Visitor.__module__ = "nominal_api.scout_catalog"
|
|
15879
|
-
|
|
15880
|
-
|
|
15881
15758
|
class scout_catalog_Iso8601Timestamp(ConjureBeanType):
|
|
15882
15759
|
|
|
15883
15760
|
@builtins.classmethod
|
|
@@ -15928,16 +15805,16 @@ class scout_catalog_MarkFileIngestError(ConjureBeanType):
|
|
|
15928
15805
|
@builtins.classmethod
|
|
15929
15806
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15930
15807
|
return {
|
|
15931
|
-
'error_result': ConjureFieldDefinition('errorResult',
|
|
15808
|
+
'error_result': ConjureFieldDefinition('errorResult', api_ErrorResult)
|
|
15932
15809
|
}
|
|
15933
15810
|
|
|
15934
15811
|
__slots__: List[str] = ['_error_result']
|
|
15935
15812
|
|
|
15936
|
-
def __init__(self, error_result: "
|
|
15813
|
+
def __init__(self, error_result: "api_ErrorResult") -> None:
|
|
15937
15814
|
self._error_result = error_result
|
|
15938
15815
|
|
|
15939
15816
|
@builtins.property
|
|
15940
|
-
def error_result(self) -> "
|
|
15817
|
+
def error_result(self) -> "api_ErrorResult":
|
|
15941
15818
|
return self._error_result
|
|
15942
15819
|
|
|
15943
15820
|
|
|
@@ -16423,7 +16300,7 @@ class scout_catalog_SearchDatasetsRequest(ConjureBeanType):
|
|
|
16423
16300
|
return {
|
|
16424
16301
|
'query': ConjureFieldDefinition('query', scout_catalog_SearchDatasetsQuery),
|
|
16425
16302
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
16426
|
-
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[
|
|
16303
|
+
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[api_Token]),
|
|
16427
16304
|
'sort_options': ConjureFieldDefinition('sortOptions', scout_catalog_SortOptions)
|
|
16428
16305
|
}
|
|
16429
16306
|
|
|
@@ -16466,7 +16343,7 @@ class scout_catalog_SearchDatasetsResponse(ConjureBeanType):
|
|
|
16466
16343
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
16467
16344
|
return {
|
|
16468
16345
|
'results': ConjureFieldDefinition('results', List[scout_catalog_EnrichedDataset]),
|
|
16469
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
16346
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
16470
16347
|
}
|
|
16471
16348
|
|
|
16472
16349
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -16616,22 +16493,6 @@ scout_catalog_SortOptions.__qualname__ = "SortOptions"
|
|
|
16616
16493
|
scout_catalog_SortOptions.__module__ = "nominal_api.scout_catalog"
|
|
16617
16494
|
|
|
16618
16495
|
|
|
16619
|
-
class scout_catalog_SuccessResult(ConjureBeanType):
|
|
16620
|
-
|
|
16621
|
-
@builtins.classmethod
|
|
16622
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
16623
|
-
return {
|
|
16624
|
-
}
|
|
16625
|
-
|
|
16626
|
-
__slots__: List[str] = []
|
|
16627
|
-
|
|
16628
|
-
|
|
16629
|
-
|
|
16630
|
-
scout_catalog_SuccessResult.__name__ = "SuccessResult"
|
|
16631
|
-
scout_catalog_SuccessResult.__qualname__ = "SuccessResult"
|
|
16632
|
-
scout_catalog_SuccessResult.__module__ = "nominal_api.scout_catalog"
|
|
16633
|
-
|
|
16634
|
-
|
|
16635
16496
|
class scout_catalog_TimestampMetadata(ConjureBeanType):
|
|
16636
16497
|
|
|
16637
16498
|
@builtins.classmethod
|
|
@@ -16862,18 +16723,18 @@ class scout_catalog_UpdateIngestStatusV2(ConjureBeanType):
|
|
|
16862
16723
|
@builtins.classmethod
|
|
16863
16724
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
16864
16725
|
return {
|
|
16865
|
-
'status': ConjureFieldDefinition('status',
|
|
16726
|
+
'status': ConjureFieldDefinition('status', api_IngestStatusV2),
|
|
16866
16727
|
'dataset_uuid': ConjureFieldDefinition('datasetUuid', str)
|
|
16867
16728
|
}
|
|
16868
16729
|
|
|
16869
16730
|
__slots__: List[str] = ['_status', '_dataset_uuid']
|
|
16870
16731
|
|
|
16871
|
-
def __init__(self, dataset_uuid: str, status: "
|
|
16732
|
+
def __init__(self, dataset_uuid: str, status: "api_IngestStatusV2") -> None:
|
|
16872
16733
|
self._status = status
|
|
16873
16734
|
self._dataset_uuid = dataset_uuid
|
|
16874
16735
|
|
|
16875
16736
|
@builtins.property
|
|
16876
|
-
def status(self) -> "
|
|
16737
|
+
def status(self) -> "api_IngestStatusV2":
|
|
16877
16738
|
return self._status
|
|
16878
16739
|
|
|
16879
16740
|
@builtins.property
|
|
@@ -24446,7 +24307,7 @@ class scout_checks_api_SearchChecklistsRequest(ConjureBeanType):
|
|
|
24446
24307
|
return {
|
|
24447
24308
|
'query': ConjureFieldDefinition('query', scout_checks_api_ChecklistSearchQuery),
|
|
24448
24309
|
'sort_by': ConjureFieldDefinition('sortBy', OptionalTypeWrapper[scout_checks_api_SortOptions]),
|
|
24449
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
24310
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
24450
24311
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
24451
24312
|
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
24452
24313
|
}
|
|
@@ -25550,7 +25411,7 @@ class scout_checks_api_VersionedChecklistPage(ConjureBeanType):
|
|
|
25550
25411
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
25551
25412
|
return {
|
|
25552
25413
|
'values': ConjureFieldDefinition('values', List[scout_checks_api_VersionedChecklist]),
|
|
25553
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
25414
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
25554
25415
|
}
|
|
25555
25416
|
|
|
25556
25417
|
__slots__: List[str] = ['_values', '_next_page_token']
|
|
@@ -26796,19 +26657,19 @@ class scout_comparisonnotebook_api_SupplementalComparisonWorkbookContext(Conjure
|
|
|
26796
26657
|
"""This is used to allow variables to specify additional context that does not fit well into the general shape of
|
|
26797
26658
|
a compute node. For example, a range aggregation variable represents a bulk computation across several inputs,
|
|
26798
26659
|
whose context is specified here instead."""
|
|
26799
|
-
_none: Optional["
|
|
26660
|
+
_none: Optional["api_Empty"] = None
|
|
26800
26661
|
_range_aggregation: Optional["scout_comparisonnotebook_api_RangeAggregationContext"] = None
|
|
26801
26662
|
|
|
26802
26663
|
@builtins.classmethod
|
|
26803
26664
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
26804
26665
|
return {
|
|
26805
|
-
'none': ConjureFieldDefinition('none',
|
|
26666
|
+
'none': ConjureFieldDefinition('none', api_Empty),
|
|
26806
26667
|
'range_aggregation': ConjureFieldDefinition('rangeAggregation', scout_comparisonnotebook_api_RangeAggregationContext)
|
|
26807
26668
|
}
|
|
26808
26669
|
|
|
26809
26670
|
def __init__(
|
|
26810
26671
|
self,
|
|
26811
|
-
none: Optional["
|
|
26672
|
+
none: Optional["api_Empty"] = None,
|
|
26812
26673
|
range_aggregation: Optional["scout_comparisonnotebook_api_RangeAggregationContext"] = None,
|
|
26813
26674
|
type_of_union: Optional[str] = None
|
|
26814
26675
|
) -> None:
|
|
@@ -26835,7 +26696,7 @@ whose context is specified here instead."""
|
|
|
26835
26696
|
self._type = 'rangeAggregation'
|
|
26836
26697
|
|
|
26837
26698
|
@builtins.property
|
|
26838
|
-
def none(self) -> Optional["
|
|
26699
|
+
def none(self) -> Optional["api_Empty"]:
|
|
26839
26700
|
return self._none
|
|
26840
26701
|
|
|
26841
26702
|
@builtins.property
|
|
@@ -26859,7 +26720,7 @@ scout_comparisonnotebook_api_SupplementalComparisonWorkbookContext.__module__ =
|
|
|
26859
26720
|
class scout_comparisonnotebook_api_SupplementalComparisonWorkbookContextVisitor:
|
|
26860
26721
|
|
|
26861
26722
|
@abstractmethod
|
|
26862
|
-
def _none(self, none: "
|
|
26723
|
+
def _none(self, none: "api_Empty") -> Any:
|
|
26863
26724
|
pass
|
|
26864
26725
|
|
|
26865
26726
|
@abstractmethod
|
|
@@ -30079,6 +29940,136 @@ scout_compute_api_DataSourceChannel.__qualname__ = "DataSourceChannel"
|
|
|
30079
29940
|
scout_compute_api_DataSourceChannel.__module__ = "nominal_api.scout_compute_api"
|
|
30080
29941
|
|
|
30081
29942
|
|
|
29943
|
+
class scout_compute_api_DecimateStrategy(ConjureUnionType):
|
|
29944
|
+
_resolution: Optional["scout_compute_api_DecimateWithResolution"] = None
|
|
29945
|
+
_buckets: Optional["scout_compute_api_DecimateWithBuckets"] = None
|
|
29946
|
+
|
|
29947
|
+
@builtins.classmethod
|
|
29948
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
29949
|
+
return {
|
|
29950
|
+
'resolution': ConjureFieldDefinition('resolution', scout_compute_api_DecimateWithResolution),
|
|
29951
|
+
'buckets': ConjureFieldDefinition('buckets', scout_compute_api_DecimateWithBuckets)
|
|
29952
|
+
}
|
|
29953
|
+
|
|
29954
|
+
def __init__(
|
|
29955
|
+
self,
|
|
29956
|
+
resolution: Optional["scout_compute_api_DecimateWithResolution"] = None,
|
|
29957
|
+
buckets: Optional["scout_compute_api_DecimateWithBuckets"] = None,
|
|
29958
|
+
type_of_union: Optional[str] = None
|
|
29959
|
+
) -> None:
|
|
29960
|
+
if type_of_union is None:
|
|
29961
|
+
if (resolution is not None) + (buckets is not None) != 1:
|
|
29962
|
+
raise ValueError('a union must contain a single member')
|
|
29963
|
+
|
|
29964
|
+
if resolution is not None:
|
|
29965
|
+
self._resolution = resolution
|
|
29966
|
+
self._type = 'resolution'
|
|
29967
|
+
if buckets is not None:
|
|
29968
|
+
self._buckets = buckets
|
|
29969
|
+
self._type = 'buckets'
|
|
29970
|
+
|
|
29971
|
+
elif type_of_union == 'resolution':
|
|
29972
|
+
if resolution is None:
|
|
29973
|
+
raise ValueError('a union value must not be None')
|
|
29974
|
+
self._resolution = resolution
|
|
29975
|
+
self._type = 'resolution'
|
|
29976
|
+
elif type_of_union == 'buckets':
|
|
29977
|
+
if buckets is None:
|
|
29978
|
+
raise ValueError('a union value must not be None')
|
|
29979
|
+
self._buckets = buckets
|
|
29980
|
+
self._type = 'buckets'
|
|
29981
|
+
|
|
29982
|
+
@builtins.property
|
|
29983
|
+
def resolution(self) -> Optional["scout_compute_api_DecimateWithResolution"]:
|
|
29984
|
+
return self._resolution
|
|
29985
|
+
|
|
29986
|
+
@builtins.property
|
|
29987
|
+
def buckets(self) -> Optional["scout_compute_api_DecimateWithBuckets"]:
|
|
29988
|
+
return self._buckets
|
|
29989
|
+
|
|
29990
|
+
def accept(self, visitor) -> Any:
|
|
29991
|
+
if not isinstance(visitor, scout_compute_api_DecimateStrategyVisitor):
|
|
29992
|
+
raise ValueError('{} is not an instance of scout_compute_api_DecimateStrategyVisitor'.format(visitor.__class__.__name__))
|
|
29993
|
+
if self._type == 'resolution' and self.resolution is not None:
|
|
29994
|
+
return visitor._resolution(self.resolution)
|
|
29995
|
+
if self._type == 'buckets' and self.buckets is not None:
|
|
29996
|
+
return visitor._buckets(self.buckets)
|
|
29997
|
+
|
|
29998
|
+
|
|
29999
|
+
scout_compute_api_DecimateStrategy.__name__ = "DecimateStrategy"
|
|
30000
|
+
scout_compute_api_DecimateStrategy.__qualname__ = "DecimateStrategy"
|
|
30001
|
+
scout_compute_api_DecimateStrategy.__module__ = "nominal_api.scout_compute_api"
|
|
30002
|
+
|
|
30003
|
+
|
|
30004
|
+
class scout_compute_api_DecimateStrategyVisitor:
|
|
30005
|
+
|
|
30006
|
+
@abstractmethod
|
|
30007
|
+
def _resolution(self, resolution: "scout_compute_api_DecimateWithResolution") -> Any:
|
|
30008
|
+
pass
|
|
30009
|
+
|
|
30010
|
+
@abstractmethod
|
|
30011
|
+
def _buckets(self, buckets: "scout_compute_api_DecimateWithBuckets") -> Any:
|
|
30012
|
+
pass
|
|
30013
|
+
|
|
30014
|
+
|
|
30015
|
+
scout_compute_api_DecimateStrategyVisitor.__name__ = "DecimateStrategyVisitor"
|
|
30016
|
+
scout_compute_api_DecimateStrategyVisitor.__qualname__ = "DecimateStrategyVisitor"
|
|
30017
|
+
scout_compute_api_DecimateStrategyVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
30018
|
+
|
|
30019
|
+
|
|
30020
|
+
class scout_compute_api_DecimateWithBuckets(ConjureBeanType):
|
|
30021
|
+
|
|
30022
|
+
@builtins.classmethod
|
|
30023
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
30024
|
+
return {
|
|
30025
|
+
'buckets': ConjureFieldDefinition('buckets', int)
|
|
30026
|
+
}
|
|
30027
|
+
|
|
30028
|
+
__slots__: List[str] = ['_buckets']
|
|
30029
|
+
|
|
30030
|
+
def __init__(self, buckets: int) -> None:
|
|
30031
|
+
self._buckets = buckets
|
|
30032
|
+
|
|
30033
|
+
@builtins.property
|
|
30034
|
+
def buckets(self) -> int:
|
|
30035
|
+
"""
|
|
30036
|
+
Number of points to generate in the output series.
|
|
30037
|
+
"""
|
|
30038
|
+
return self._buckets
|
|
30039
|
+
|
|
30040
|
+
|
|
30041
|
+
scout_compute_api_DecimateWithBuckets.__name__ = "DecimateWithBuckets"
|
|
30042
|
+
scout_compute_api_DecimateWithBuckets.__qualname__ = "DecimateWithBuckets"
|
|
30043
|
+
scout_compute_api_DecimateWithBuckets.__module__ = "nominal_api.scout_compute_api"
|
|
30044
|
+
|
|
30045
|
+
|
|
30046
|
+
class scout_compute_api_DecimateWithResolution(ConjureBeanType):
|
|
30047
|
+
|
|
30048
|
+
@builtins.classmethod
|
|
30049
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
30050
|
+
return {
|
|
30051
|
+
'resolution': ConjureFieldDefinition('resolution', int)
|
|
30052
|
+
}
|
|
30053
|
+
|
|
30054
|
+
__slots__: List[str] = ['_resolution']
|
|
30055
|
+
|
|
30056
|
+
def __init__(self, resolution: int) -> None:
|
|
30057
|
+
self._resolution = resolution
|
|
30058
|
+
|
|
30059
|
+
@builtins.property
|
|
30060
|
+
def resolution(self) -> int:
|
|
30061
|
+
"""
|
|
30062
|
+
Resolution of the output series specifying time interval between decimated points.
|
|
30063
|
+
Picoseconds for picosecond-granularity dataset, nanoseconds otherwise.
|
|
30064
|
+
"""
|
|
30065
|
+
return self._resolution
|
|
30066
|
+
|
|
30067
|
+
|
|
30068
|
+
scout_compute_api_DecimateWithResolution.__name__ = "DecimateWithResolution"
|
|
30069
|
+
scout_compute_api_DecimateWithResolution.__qualname__ = "DecimateWithResolution"
|
|
30070
|
+
scout_compute_api_DecimateWithResolution.__module__ = "nominal_api.scout_compute_api"
|
|
30071
|
+
|
|
30072
|
+
|
|
30082
30073
|
class scout_compute_api_DerivativeSeries(ConjureBeanType):
|
|
30083
30074
|
"""
|
|
30084
30075
|
Calculates the rate of change between subsequent points.
|
|
@@ -30277,22 +30268,6 @@ scout_compute_api_DurationConstantVisitor.__qualname__ = "DurationConstantVisito
|
|
|
30277
30268
|
scout_compute_api_DurationConstantVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
30278
30269
|
|
|
30279
30270
|
|
|
30280
|
-
class scout_compute_api_Empty(ConjureBeanType):
|
|
30281
|
-
|
|
30282
|
-
@builtins.classmethod
|
|
30283
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
30284
|
-
return {
|
|
30285
|
-
}
|
|
30286
|
-
|
|
30287
|
-
__slots__: List[str] = []
|
|
30288
|
-
|
|
30289
|
-
|
|
30290
|
-
|
|
30291
|
-
scout_compute_api_Empty.__name__ = "Empty"
|
|
30292
|
-
scout_compute_api_Empty.__qualname__ = "Empty"
|
|
30293
|
-
scout_compute_api_Empty.__module__ = "nominal_api.scout_compute_api"
|
|
30294
|
-
|
|
30295
|
-
|
|
30296
30271
|
class scout_compute_api_EnumAggregationFunction(ConjureEnumType):
|
|
30297
30272
|
|
|
30298
30273
|
MIN = 'MIN'
|
|
@@ -34482,6 +34457,95 @@ scout_compute_api_OutputRangeStartVisitor.__qualname__ = "OutputRangeStartVisito
|
|
|
34482
34457
|
scout_compute_api_OutputRangeStartVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
34483
34458
|
|
|
34484
34459
|
|
|
34460
|
+
class scout_compute_api_PageInfo(ConjureBeanType):
|
|
34461
|
+
"""
|
|
34462
|
+
Specification of a page for a series. Returns raw undecimated points beginning nearest to the given page
|
|
34463
|
+
token timestamp, advancing pageSize points in the time direction specified by the sign of the page size.
|
|
34464
|
+
"""
|
|
34465
|
+
|
|
34466
|
+
@builtins.classmethod
|
|
34467
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
34468
|
+
return {
|
|
34469
|
+
'page_token': ConjureFieldDefinition('pageToken', api_Timestamp),
|
|
34470
|
+
'page_size': ConjureFieldDefinition('pageSize', int)
|
|
34471
|
+
}
|
|
34472
|
+
|
|
34473
|
+
__slots__: List[str] = ['_page_token', '_page_size']
|
|
34474
|
+
|
|
34475
|
+
def __init__(self, page_size: int, page_token: "api_Timestamp") -> None:
|
|
34476
|
+
self._page_token = page_token
|
|
34477
|
+
self._page_size = page_size
|
|
34478
|
+
|
|
34479
|
+
@builtins.property
|
|
34480
|
+
def page_token(self) -> "api_Timestamp":
|
|
34481
|
+
return self._page_token
|
|
34482
|
+
|
|
34483
|
+
@builtins.property
|
|
34484
|
+
def page_size(self) -> int:
|
|
34485
|
+
return self._page_size
|
|
34486
|
+
|
|
34487
|
+
|
|
34488
|
+
scout_compute_api_PageInfo.__name__ = "PageInfo"
|
|
34489
|
+
scout_compute_api_PageInfo.__qualname__ = "PageInfo"
|
|
34490
|
+
scout_compute_api_PageInfo.__module__ = "nominal_api.scout_compute_api"
|
|
34491
|
+
|
|
34492
|
+
|
|
34493
|
+
class scout_compute_api_PageStrategy(ConjureUnionType):
|
|
34494
|
+
_page_info: Optional["scout_compute_api_PageInfo"] = None
|
|
34495
|
+
|
|
34496
|
+
@builtins.classmethod
|
|
34497
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
34498
|
+
return {
|
|
34499
|
+
'page_info': ConjureFieldDefinition('pageInfo', scout_compute_api_PageInfo)
|
|
34500
|
+
}
|
|
34501
|
+
|
|
34502
|
+
def __init__(
|
|
34503
|
+
self,
|
|
34504
|
+
page_info: Optional["scout_compute_api_PageInfo"] = None,
|
|
34505
|
+
type_of_union: Optional[str] = None
|
|
34506
|
+
) -> None:
|
|
34507
|
+
if type_of_union is None:
|
|
34508
|
+
if (page_info is not None) != 1:
|
|
34509
|
+
raise ValueError('a union must contain a single member')
|
|
34510
|
+
|
|
34511
|
+
if page_info is not None:
|
|
34512
|
+
self._page_info = page_info
|
|
34513
|
+
self._type = 'pageInfo'
|
|
34514
|
+
|
|
34515
|
+
elif type_of_union == 'pageInfo':
|
|
34516
|
+
if page_info is None:
|
|
34517
|
+
raise ValueError('a union value must not be None')
|
|
34518
|
+
self._page_info = page_info
|
|
34519
|
+
self._type = 'pageInfo'
|
|
34520
|
+
|
|
34521
|
+
@builtins.property
|
|
34522
|
+
def page_info(self) -> Optional["scout_compute_api_PageInfo"]:
|
|
34523
|
+
return self._page_info
|
|
34524
|
+
|
|
34525
|
+
def accept(self, visitor) -> Any:
|
|
34526
|
+
if not isinstance(visitor, scout_compute_api_PageStrategyVisitor):
|
|
34527
|
+
raise ValueError('{} is not an instance of scout_compute_api_PageStrategyVisitor'.format(visitor.__class__.__name__))
|
|
34528
|
+
if self._type == 'pageInfo' and self.page_info is not None:
|
|
34529
|
+
return visitor._page_info(self.page_info)
|
|
34530
|
+
|
|
34531
|
+
|
|
34532
|
+
scout_compute_api_PageStrategy.__name__ = "PageStrategy"
|
|
34533
|
+
scout_compute_api_PageStrategy.__qualname__ = "PageStrategy"
|
|
34534
|
+
scout_compute_api_PageStrategy.__module__ = "nominal_api.scout_compute_api"
|
|
34535
|
+
|
|
34536
|
+
|
|
34537
|
+
class scout_compute_api_PageStrategyVisitor:
|
|
34538
|
+
|
|
34539
|
+
@abstractmethod
|
|
34540
|
+
def _page_info(self, page_info: "scout_compute_api_PageInfo") -> Any:
|
|
34541
|
+
pass
|
|
34542
|
+
|
|
34543
|
+
|
|
34544
|
+
scout_compute_api_PageStrategyVisitor.__name__ = "PageStrategyVisitor"
|
|
34545
|
+
scout_compute_api_PageStrategyVisitor.__qualname__ = "PageStrategyVisitor"
|
|
34546
|
+
scout_compute_api_PageStrategyVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
34547
|
+
|
|
34548
|
+
|
|
34485
34549
|
class scout_compute_api_ParameterInput(ConjureBeanType):
|
|
34486
34550
|
|
|
34487
34551
|
@builtins.classmethod
|
|
@@ -34901,7 +34965,7 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
|
|
|
34901
34965
|
_min: Optional["scout_compute_api_Minimum"] = None
|
|
34902
34966
|
_max: Optional["scout_compute_api_Maximum"] = None
|
|
34903
34967
|
_standard_deviation: Optional["scout_compute_api_StandardDeviation"] = None
|
|
34904
|
-
_all: Optional["
|
|
34968
|
+
_all: Optional["api_Empty"] = None
|
|
34905
34969
|
|
|
34906
34970
|
@builtins.classmethod
|
|
34907
34971
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -34910,7 +34974,7 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
|
|
|
34910
34974
|
'min': ConjureFieldDefinition('min', scout_compute_api_Minimum),
|
|
34911
34975
|
'max': ConjureFieldDefinition('max', scout_compute_api_Maximum),
|
|
34912
34976
|
'standard_deviation': ConjureFieldDefinition('standardDeviation', scout_compute_api_StandardDeviation),
|
|
34913
|
-
'all': ConjureFieldDefinition('all',
|
|
34977
|
+
'all': ConjureFieldDefinition('all', api_Empty)
|
|
34914
34978
|
}
|
|
34915
34979
|
|
|
34916
34980
|
def __init__(
|
|
@@ -34919,7 +34983,7 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
|
|
|
34919
34983
|
min: Optional["scout_compute_api_Minimum"] = None,
|
|
34920
34984
|
max: Optional["scout_compute_api_Maximum"] = None,
|
|
34921
34985
|
standard_deviation: Optional["scout_compute_api_StandardDeviation"] = None,
|
|
34922
|
-
all: Optional["
|
|
34986
|
+
all: Optional["api_Empty"] = None,
|
|
34923
34987
|
type_of_union: Optional[str] = None
|
|
34924
34988
|
) -> None:
|
|
34925
34989
|
if type_of_union is None:
|
|
@@ -34985,7 +35049,7 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
|
|
|
34985
35049
|
return self._standard_deviation
|
|
34986
35050
|
|
|
34987
35051
|
@builtins.property
|
|
34988
|
-
def all(self) -> Optional["
|
|
35052
|
+
def all(self) -> Optional["api_Empty"]:
|
|
34989
35053
|
return self._all
|
|
34990
35054
|
|
|
34991
35055
|
def accept(self, visitor) -> Any:
|
|
@@ -35027,7 +35091,7 @@ class scout_compute_api_RangeAggregationOperationVisitor:
|
|
|
35027
35091
|
pass
|
|
35028
35092
|
|
|
35029
35093
|
@abstractmethod
|
|
35030
|
-
def _all(self, all: "
|
|
35094
|
+
def _all(self, all: "api_Empty") -> Any:
|
|
35031
35095
|
pass
|
|
35032
35096
|
|
|
35033
35097
|
|
|
@@ -35475,21 +35539,21 @@ scout_compute_api_RangeSummary.__module__ = "nominal_api.scout_compute_api"
|
|
|
35475
35539
|
class scout_compute_api_RangeValue(ConjureUnionType):
|
|
35476
35540
|
_double: Optional[float] = None
|
|
35477
35541
|
_aggregation: Optional["scout_compute_api_RangeAggregation"] = None
|
|
35478
|
-
_no_points_in_range: Optional["
|
|
35542
|
+
_no_points_in_range: Optional["api_Empty"] = None
|
|
35479
35543
|
|
|
35480
35544
|
@builtins.classmethod
|
|
35481
35545
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
35482
35546
|
return {
|
|
35483
35547
|
'double': ConjureFieldDefinition('double', float),
|
|
35484
35548
|
'aggregation': ConjureFieldDefinition('aggregation', scout_compute_api_RangeAggregation),
|
|
35485
|
-
'no_points_in_range': ConjureFieldDefinition('noPointsInRange',
|
|
35549
|
+
'no_points_in_range': ConjureFieldDefinition('noPointsInRange', api_Empty)
|
|
35486
35550
|
}
|
|
35487
35551
|
|
|
35488
35552
|
def __init__(
|
|
35489
35553
|
self,
|
|
35490
35554
|
double: Optional[float] = None,
|
|
35491
35555
|
aggregation: Optional["scout_compute_api_RangeAggregation"] = None,
|
|
35492
|
-
no_points_in_range: Optional["
|
|
35556
|
+
no_points_in_range: Optional["api_Empty"] = None,
|
|
35493
35557
|
type_of_union: Optional[str] = None
|
|
35494
35558
|
) -> None:
|
|
35495
35559
|
if type_of_union is None:
|
|
@@ -35531,7 +35595,7 @@ class scout_compute_api_RangeValue(ConjureUnionType):
|
|
|
35531
35595
|
return self._aggregation
|
|
35532
35596
|
|
|
35533
35597
|
@builtins.property
|
|
35534
|
-
def no_points_in_range(self) -> Optional["
|
|
35598
|
+
def no_points_in_range(self) -> Optional["api_Empty"]:
|
|
35535
35599
|
return self._no_points_in_range
|
|
35536
35600
|
|
|
35537
35601
|
def accept(self, visitor) -> Any:
|
|
@@ -35561,7 +35625,7 @@ class scout_compute_api_RangeValueVisitor:
|
|
|
35561
35625
|
pass
|
|
35562
35626
|
|
|
35563
35627
|
@abstractmethod
|
|
35564
|
-
def _no_points_in_range(self, no_points_in_range: "
|
|
35628
|
+
def _no_points_in_range(self, no_points_in_range: "api_Empty") -> Any:
|
|
35565
35629
|
pass
|
|
35566
35630
|
|
|
35567
35631
|
|
|
@@ -36980,6 +37044,83 @@ scout_compute_api_SumSeries.__qualname__ = "SumSeries"
|
|
|
36980
37044
|
scout_compute_api_SumSeries.__module__ = "nominal_api.scout_compute_api"
|
|
36981
37045
|
|
|
36982
37046
|
|
|
37047
|
+
class scout_compute_api_SummarizationStrategy(ConjureUnionType):
|
|
37048
|
+
_decimate: Optional["scout_compute_api_DecimateStrategy"] = None
|
|
37049
|
+
_page: Optional["scout_compute_api_PageStrategy"] = None
|
|
37050
|
+
|
|
37051
|
+
@builtins.classmethod
|
|
37052
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
37053
|
+
return {
|
|
37054
|
+
'decimate': ConjureFieldDefinition('decimate', scout_compute_api_DecimateStrategy),
|
|
37055
|
+
'page': ConjureFieldDefinition('page', scout_compute_api_PageStrategy)
|
|
37056
|
+
}
|
|
37057
|
+
|
|
37058
|
+
def __init__(
|
|
37059
|
+
self,
|
|
37060
|
+
decimate: Optional["scout_compute_api_DecimateStrategy"] = None,
|
|
37061
|
+
page: Optional["scout_compute_api_PageStrategy"] = None,
|
|
37062
|
+
type_of_union: Optional[str] = None
|
|
37063
|
+
) -> None:
|
|
37064
|
+
if type_of_union is None:
|
|
37065
|
+
if (decimate is not None) + (page is not None) != 1:
|
|
37066
|
+
raise ValueError('a union must contain a single member')
|
|
37067
|
+
|
|
37068
|
+
if decimate is not None:
|
|
37069
|
+
self._decimate = decimate
|
|
37070
|
+
self._type = 'decimate'
|
|
37071
|
+
if page is not None:
|
|
37072
|
+
self._page = page
|
|
37073
|
+
self._type = 'page'
|
|
37074
|
+
|
|
37075
|
+
elif type_of_union == 'decimate':
|
|
37076
|
+
if decimate is None:
|
|
37077
|
+
raise ValueError('a union value must not be None')
|
|
37078
|
+
self._decimate = decimate
|
|
37079
|
+
self._type = 'decimate'
|
|
37080
|
+
elif type_of_union == 'page':
|
|
37081
|
+
if page is None:
|
|
37082
|
+
raise ValueError('a union value must not be None')
|
|
37083
|
+
self._page = page
|
|
37084
|
+
self._type = 'page'
|
|
37085
|
+
|
|
37086
|
+
@builtins.property
|
|
37087
|
+
def decimate(self) -> Optional["scout_compute_api_DecimateStrategy"]:
|
|
37088
|
+
return self._decimate
|
|
37089
|
+
|
|
37090
|
+
@builtins.property
|
|
37091
|
+
def page(self) -> Optional["scout_compute_api_PageStrategy"]:
|
|
37092
|
+
return self._page
|
|
37093
|
+
|
|
37094
|
+
def accept(self, visitor) -> Any:
|
|
37095
|
+
if not isinstance(visitor, scout_compute_api_SummarizationStrategyVisitor):
|
|
37096
|
+
raise ValueError('{} is not an instance of scout_compute_api_SummarizationStrategyVisitor'.format(visitor.__class__.__name__))
|
|
37097
|
+
if self._type == 'decimate' and self.decimate is not None:
|
|
37098
|
+
return visitor._decimate(self.decimate)
|
|
37099
|
+
if self._type == 'page' and self.page is not None:
|
|
37100
|
+
return visitor._page(self.page)
|
|
37101
|
+
|
|
37102
|
+
|
|
37103
|
+
scout_compute_api_SummarizationStrategy.__name__ = "SummarizationStrategy"
|
|
37104
|
+
scout_compute_api_SummarizationStrategy.__qualname__ = "SummarizationStrategy"
|
|
37105
|
+
scout_compute_api_SummarizationStrategy.__module__ = "nominal_api.scout_compute_api"
|
|
37106
|
+
|
|
37107
|
+
|
|
37108
|
+
class scout_compute_api_SummarizationStrategyVisitor:
|
|
37109
|
+
|
|
37110
|
+
@abstractmethod
|
|
37111
|
+
def _decimate(self, decimate: "scout_compute_api_DecimateStrategy") -> Any:
|
|
37112
|
+
pass
|
|
37113
|
+
|
|
37114
|
+
@abstractmethod
|
|
37115
|
+
def _page(self, page: "scout_compute_api_PageStrategy") -> Any:
|
|
37116
|
+
pass
|
|
37117
|
+
|
|
37118
|
+
|
|
37119
|
+
scout_compute_api_SummarizationStrategyVisitor.__name__ = "SummarizationStrategyVisitor"
|
|
37120
|
+
scout_compute_api_SummarizationStrategyVisitor.__qualname__ = "SummarizationStrategyVisitor"
|
|
37121
|
+
scout_compute_api_SummarizationStrategyVisitor.__module__ = "nominal_api.scout_compute_api"
|
|
37122
|
+
|
|
37123
|
+
|
|
36983
37124
|
class scout_compute_api_SummarizeCartesian(ConjureBeanType):
|
|
36984
37125
|
|
|
36985
37126
|
@builtins.classmethod
|
|
@@ -37083,8 +37224,8 @@ scout_compute_api_SummarizeRanges.__module__ = "nominal_api.scout_compute_api"
|
|
|
37083
37224
|
|
|
37084
37225
|
class scout_compute_api_SummarizeSeries(ConjureBeanType):
|
|
37085
37226
|
"""
|
|
37086
|
-
Summarizes the output of a series node. The output can be a numeric, enum, or cartesian series.
|
|
37087
|
-
|
|
37227
|
+
Summarizes the output of a series node. The output can be a numeric, enum, log, or cartesian series.
|
|
37228
|
+
Summarization strategy should be specified.
|
|
37088
37229
|
"""
|
|
37089
37230
|
|
|
37090
37231
|
@builtins.classmethod
|
|
@@ -37092,15 +37233,17 @@ Only resolution or buckets should be specified, not both.
|
|
|
37092
37233
|
return {
|
|
37093
37234
|
'input': ConjureFieldDefinition('input', scout_compute_api_Series),
|
|
37094
37235
|
'resolution': ConjureFieldDefinition('resolution', OptionalTypeWrapper[int]),
|
|
37095
|
-
'buckets': ConjureFieldDefinition('buckets', OptionalTypeWrapper[int])
|
|
37236
|
+
'buckets': ConjureFieldDefinition('buckets', OptionalTypeWrapper[int]),
|
|
37237
|
+
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', OptionalTypeWrapper[scout_compute_api_SummarizationStrategy])
|
|
37096
37238
|
}
|
|
37097
37239
|
|
|
37098
|
-
__slots__: List[str] = ['_input', '_resolution', '_buckets']
|
|
37240
|
+
__slots__: List[str] = ['_input', '_resolution', '_buckets', '_summarization_strategy']
|
|
37099
37241
|
|
|
37100
|
-
def __init__(self, input: "scout_compute_api_Series", buckets: Optional[int] = None, resolution: Optional[int] = None) -> None:
|
|
37242
|
+
def __init__(self, input: "scout_compute_api_Series", buckets: Optional[int] = None, resolution: Optional[int] = None, summarization_strategy: Optional["scout_compute_api_SummarizationStrategy"] = None) -> None:
|
|
37101
37243
|
self._input = input
|
|
37102
37244
|
self._resolution = resolution
|
|
37103
37245
|
self._buckets = buckets
|
|
37246
|
+
self._summarization_strategy = summarization_strategy
|
|
37104
37247
|
|
|
37105
37248
|
@builtins.property
|
|
37106
37249
|
def input(self) -> "scout_compute_api_Series":
|
|
@@ -37121,6 +37264,13 @@ Picoseconds for picosecond-granularity dataset, nanoseconds otherwise.
|
|
|
37121
37264
|
"""
|
|
37122
37265
|
return self._buckets
|
|
37123
37266
|
|
|
37267
|
+
@builtins.property
|
|
37268
|
+
def summarization_strategy(self) -> Optional["scout_compute_api_SummarizationStrategy"]:
|
|
37269
|
+
"""
|
|
37270
|
+
The strategy to use when summarizing the series.
|
|
37271
|
+
"""
|
|
37272
|
+
return self._summarization_strategy
|
|
37273
|
+
|
|
37124
37274
|
|
|
37125
37275
|
scout_compute_api_SummarizeSeries.__name__ = "SummarizeSeries"
|
|
37126
37276
|
scout_compute_api_SummarizeSeries.__qualname__ = "SummarizeSeries"
|
|
@@ -45297,43 +45447,33 @@ scout_compute_resolved_api_SummarizeRangesNode.__module__ = "nominal_api.scout_c
|
|
|
45297
45447
|
|
|
45298
45448
|
class scout_compute_resolved_api_SummarizeSeriesNode(ConjureBeanType):
|
|
45299
45449
|
"""
|
|
45300
|
-
Summarizes the output of a series node. The output can be a numeric, enum, or cartesian series.
|
|
45301
|
-
|
|
45450
|
+
Summarizes the output of a series node. The output can be a numeric, enum, log, or cartesian series.
|
|
45451
|
+
Summarization strategy should be specified.
|
|
45302
45452
|
"""
|
|
45303
45453
|
|
|
45304
45454
|
@builtins.classmethod
|
|
45305
45455
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
45306
45456
|
return {
|
|
45307
45457
|
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_SeriesNode),
|
|
45308
|
-
'
|
|
45309
|
-
'buckets': ConjureFieldDefinition('buckets', OptionalTypeWrapper[int])
|
|
45458
|
+
'summarization_strategy': ConjureFieldDefinition('summarizationStrategy', scout_compute_api_SummarizationStrategy)
|
|
45310
45459
|
}
|
|
45311
45460
|
|
|
45312
|
-
__slots__: List[str] = ['_input', '
|
|
45461
|
+
__slots__: List[str] = ['_input', '_summarization_strategy']
|
|
45313
45462
|
|
|
45314
|
-
def __init__(self, input: "scout_compute_resolved_api_SeriesNode",
|
|
45463
|
+
def __init__(self, input: "scout_compute_resolved_api_SeriesNode", summarization_strategy: "scout_compute_api_SummarizationStrategy") -> None:
|
|
45315
45464
|
self._input = input
|
|
45316
|
-
self.
|
|
45317
|
-
self._buckets = buckets
|
|
45465
|
+
self._summarization_strategy = summarization_strategy
|
|
45318
45466
|
|
|
45319
45467
|
@builtins.property
|
|
45320
45468
|
def input(self) -> "scout_compute_resolved_api_SeriesNode":
|
|
45321
45469
|
return self._input
|
|
45322
45470
|
|
|
45323
45471
|
@builtins.property
|
|
45324
|
-
def
|
|
45472
|
+
def summarization_strategy(self) -> "scout_compute_api_SummarizationStrategy":
|
|
45325
45473
|
"""
|
|
45326
|
-
|
|
45327
|
-
Picoseconds for picosecond-granularity dataset, nanoseconds otherwise.
|
|
45474
|
+
The strategy to use when summarizing the series.
|
|
45328
45475
|
"""
|
|
45329
|
-
return self.
|
|
45330
|
-
|
|
45331
|
-
@builtins.property
|
|
45332
|
-
def buckets(self) -> Optional[int]:
|
|
45333
|
-
"""
|
|
45334
|
-
Number of points to generate in the output series.
|
|
45335
|
-
"""
|
|
45336
|
-
return self._buckets
|
|
45476
|
+
return self._summarization_strategy
|
|
45337
45477
|
|
|
45338
45478
|
|
|
45339
45479
|
scout_compute_resolved_api_SummarizeSeriesNode.__name__ = "SummarizeSeriesNode"
|
|
@@ -48501,7 +48641,7 @@ class scout_datareview_api_DataReviewPage(ConjureBeanType):
|
|
|
48501
48641
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
48502
48642
|
return {
|
|
48503
48643
|
'data_reviews': ConjureFieldDefinition('dataReviews', List[scout_datareview_api_DataReview]),
|
|
48504
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
48644
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
48505
48645
|
}
|
|
48506
48646
|
|
|
48507
48647
|
__slots__: List[str] = ['_data_reviews', '_next_page_token']
|
|
@@ -49296,7 +49436,7 @@ If commitId is omitted from a ChecklistRef, it will match all commits.
|
|
|
49296
49436
|
'run_rids': ConjureFieldDefinition('runRids', List[scout_run_api_RunRid]),
|
|
49297
49437
|
'asset_rids': ConjureFieldDefinition('assetRids', List[scout_rids_api_AssetRid]),
|
|
49298
49438
|
'checklist_refs': ConjureFieldDefinition('checklistRefs', List[scout_checks_api_ChecklistRef]),
|
|
49299
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
49439
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
49300
49440
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
49301
49441
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
49302
49442
|
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
@@ -50571,7 +50711,7 @@ class scout_datareview_api_SearchCheckAlertsRequest(ConjureBeanType):
|
|
|
50571
50711
|
@builtins.classmethod
|
|
50572
50712
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
50573
50713
|
return {
|
|
50574
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
50714
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
50575
50715
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
50576
50716
|
'sort_by': ConjureFieldDefinition('sortBy', OptionalTypeWrapper[scout_datareview_api_SearchCheckAlertsSortOptions]),
|
|
50577
50717
|
'search_text': ConjureFieldDefinition('searchText', OptionalTypeWrapper[str]),
|
|
@@ -50719,7 +50859,7 @@ class scout_datareview_api_SearchCheckAlertsResponse(ConjureBeanType):
|
|
|
50719
50859
|
@builtins.classmethod
|
|
50720
50860
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
50721
50861
|
return {
|
|
50722
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
50862
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
50723
50863
|
'check_alerts': ConjureFieldDefinition('checkAlerts', List[scout_datareview_api_CheckAlert])
|
|
50724
50864
|
}
|
|
50725
50865
|
|
|
@@ -52054,22 +52194,6 @@ scout_datasource_connection_api_Duration.__qualname__ = "Duration"
|
|
|
52054
52194
|
scout_datasource_connection_api_Duration.__module__ = "nominal_api.scout_datasource_connection_api"
|
|
52055
52195
|
|
|
52056
52196
|
|
|
52057
|
-
class scout_datasource_connection_api_Empty(ConjureBeanType):
|
|
52058
|
-
|
|
52059
|
-
@builtins.classmethod
|
|
52060
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52061
|
-
return {
|
|
52062
|
-
}
|
|
52063
|
-
|
|
52064
|
-
__slots__: List[str] = []
|
|
52065
|
-
|
|
52066
|
-
|
|
52067
|
-
|
|
52068
|
-
scout_datasource_connection_api_Empty.__name__ = "Empty"
|
|
52069
|
-
scout_datasource_connection_api_Empty.__qualname__ = "Empty"
|
|
52070
|
-
scout_datasource_connection_api_Empty.__module__ = "nominal_api.scout_datasource_connection_api"
|
|
52071
|
-
|
|
52072
|
-
|
|
52073
52197
|
class scout_datasource_connection_api_HeaderValue(ConjureUnionType):
|
|
52074
52198
|
_plain: Optional[str] = None
|
|
52075
52199
|
_secret_rid: Optional[str] = None
|
|
@@ -52245,25 +52369,25 @@ scout_datasource_connection_api_Influx2ConnectionDetails.__module__ = "nominal_a
|
|
|
52245
52369
|
|
|
52246
52370
|
|
|
52247
52371
|
class scout_datasource_connection_api_InfluxChannelNameComponent(ConjureUnionType):
|
|
52248
|
-
_bucket: Optional["
|
|
52249
|
-
_measurement: Optional["
|
|
52250
|
-
_field: Optional["
|
|
52372
|
+
_bucket: Optional["api_Empty"] = None
|
|
52373
|
+
_measurement: Optional["api_Empty"] = None
|
|
52374
|
+
_field: Optional["api_Empty"] = None
|
|
52251
52375
|
_tag_value: Optional[str] = None
|
|
52252
52376
|
|
|
52253
52377
|
@builtins.classmethod
|
|
52254
52378
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52255
52379
|
return {
|
|
52256
|
-
'bucket': ConjureFieldDefinition('bucket',
|
|
52257
|
-
'measurement': ConjureFieldDefinition('measurement',
|
|
52258
|
-
'field': ConjureFieldDefinition('field',
|
|
52380
|
+
'bucket': ConjureFieldDefinition('bucket', api_Empty),
|
|
52381
|
+
'measurement': ConjureFieldDefinition('measurement', api_Empty),
|
|
52382
|
+
'field': ConjureFieldDefinition('field', api_Empty),
|
|
52259
52383
|
'tag_value': ConjureFieldDefinition('tagValue', api_TagName)
|
|
52260
52384
|
}
|
|
52261
52385
|
|
|
52262
52386
|
def __init__(
|
|
52263
52387
|
self,
|
|
52264
|
-
bucket: Optional["
|
|
52265
|
-
measurement: Optional["
|
|
52266
|
-
field: Optional["
|
|
52388
|
+
bucket: Optional["api_Empty"] = None,
|
|
52389
|
+
measurement: Optional["api_Empty"] = None,
|
|
52390
|
+
field: Optional["api_Empty"] = None,
|
|
52267
52391
|
tag_value: Optional[str] = None,
|
|
52268
52392
|
type_of_union: Optional[str] = None
|
|
52269
52393
|
) -> None:
|
|
@@ -52306,15 +52430,15 @@ class scout_datasource_connection_api_InfluxChannelNameComponent(ConjureUnionTyp
|
|
|
52306
52430
|
self._type = 'tagValue'
|
|
52307
52431
|
|
|
52308
52432
|
@builtins.property
|
|
52309
|
-
def bucket(self) -> Optional["
|
|
52433
|
+
def bucket(self) -> Optional["api_Empty"]:
|
|
52310
52434
|
return self._bucket
|
|
52311
52435
|
|
|
52312
52436
|
@builtins.property
|
|
52313
|
-
def measurement(self) -> Optional["
|
|
52437
|
+
def measurement(self) -> Optional["api_Empty"]:
|
|
52314
52438
|
return self._measurement
|
|
52315
52439
|
|
|
52316
52440
|
@builtins.property
|
|
52317
|
-
def field(self) -> Optional["
|
|
52441
|
+
def field(self) -> Optional["api_Empty"]:
|
|
52318
52442
|
return self._field
|
|
52319
52443
|
|
|
52320
52444
|
@builtins.property
|
|
@@ -52345,15 +52469,15 @@ scout_datasource_connection_api_InfluxChannelNameComponent.__module__ = "nominal
|
|
|
52345
52469
|
class scout_datasource_connection_api_InfluxChannelNameComponentVisitor:
|
|
52346
52470
|
|
|
52347
52471
|
@abstractmethod
|
|
52348
|
-
def _bucket(self, bucket: "
|
|
52472
|
+
def _bucket(self, bucket: "api_Empty") -> Any:
|
|
52349
52473
|
pass
|
|
52350
52474
|
|
|
52351
52475
|
@abstractmethod
|
|
52352
|
-
def _measurement(self, measurement: "
|
|
52476
|
+
def _measurement(self, measurement: "api_Empty") -> Any:
|
|
52353
52477
|
pass
|
|
52354
52478
|
|
|
52355
52479
|
@abstractmethod
|
|
52356
|
-
def _field(self, field: "
|
|
52480
|
+
def _field(self, field: "api_Empty") -> Any:
|
|
52357
52481
|
pass
|
|
52358
52482
|
|
|
52359
52483
|
@abstractmethod
|
|
@@ -52559,19 +52683,19 @@ scout_datasource_connection_api_LimitsConfig.__module__ = "nominal_api.scout_dat
|
|
|
52559
52683
|
|
|
52560
52684
|
|
|
52561
52685
|
class scout_datasource_connection_api_NominalChannelNameComponent(ConjureUnionType):
|
|
52562
|
-
_channel: Optional["
|
|
52686
|
+
_channel: Optional["api_Empty"] = None
|
|
52563
52687
|
_value_of_tag_with_name: Optional[str] = None
|
|
52564
52688
|
|
|
52565
52689
|
@builtins.classmethod
|
|
52566
52690
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52567
52691
|
return {
|
|
52568
|
-
'channel': ConjureFieldDefinition('channel',
|
|
52692
|
+
'channel': ConjureFieldDefinition('channel', api_Empty),
|
|
52569
52693
|
'value_of_tag_with_name': ConjureFieldDefinition('valueOfTagWithName', api_TagName)
|
|
52570
52694
|
}
|
|
52571
52695
|
|
|
52572
52696
|
def __init__(
|
|
52573
52697
|
self,
|
|
52574
|
-
channel: Optional["
|
|
52698
|
+
channel: Optional["api_Empty"] = None,
|
|
52575
52699
|
value_of_tag_with_name: Optional[str] = None,
|
|
52576
52700
|
type_of_union: Optional[str] = None
|
|
52577
52701
|
) -> None:
|
|
@@ -52598,7 +52722,7 @@ class scout_datasource_connection_api_NominalChannelNameComponent(ConjureUnionTy
|
|
|
52598
52722
|
self._type = 'valueOfTagWithName'
|
|
52599
52723
|
|
|
52600
52724
|
@builtins.property
|
|
52601
|
-
def channel(self) -> Optional["
|
|
52725
|
+
def channel(self) -> Optional["api_Empty"]:
|
|
52602
52726
|
return self._channel
|
|
52603
52727
|
|
|
52604
52728
|
@builtins.property
|
|
@@ -52625,7 +52749,7 @@ scout_datasource_connection_api_NominalChannelNameComponent.__module__ = "nomina
|
|
|
52625
52749
|
class scout_datasource_connection_api_NominalChannelNameComponentVisitor:
|
|
52626
52750
|
|
|
52627
52751
|
@abstractmethod
|
|
52628
|
-
def _channel(self, channel: "
|
|
52752
|
+
def _channel(self, channel: "api_Empty") -> Any:
|
|
52629
52753
|
pass
|
|
52630
52754
|
|
|
52631
52755
|
@abstractmethod
|
|
@@ -52727,20 +52851,20 @@ scout_datasource_connection_api_PasswordCredentials.__module__ = "nominal_api.sc
|
|
|
52727
52851
|
|
|
52728
52852
|
|
|
52729
52853
|
class scout_datasource_connection_api_PivotedTimescaleChannelNameComponent(ConjureUnionType):
|
|
52730
|
-
_table: Optional["
|
|
52731
|
-
_name: Optional["
|
|
52854
|
+
_table: Optional["api_Empty"] = None
|
|
52855
|
+
_name: Optional["api_Empty"] = None
|
|
52732
52856
|
|
|
52733
52857
|
@builtins.classmethod
|
|
52734
52858
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
52735
52859
|
return {
|
|
52736
|
-
'table': ConjureFieldDefinition('table',
|
|
52737
|
-
'name': ConjureFieldDefinition('name',
|
|
52860
|
+
'table': ConjureFieldDefinition('table', api_Empty),
|
|
52861
|
+
'name': ConjureFieldDefinition('name', api_Empty)
|
|
52738
52862
|
}
|
|
52739
52863
|
|
|
52740
52864
|
def __init__(
|
|
52741
52865
|
self,
|
|
52742
|
-
table: Optional["
|
|
52743
|
-
name: Optional["
|
|
52866
|
+
table: Optional["api_Empty"] = None,
|
|
52867
|
+
name: Optional["api_Empty"] = None,
|
|
52744
52868
|
type_of_union: Optional[str] = None
|
|
52745
52869
|
) -> None:
|
|
52746
52870
|
if type_of_union is None:
|
|
@@ -52766,11 +52890,11 @@ class scout_datasource_connection_api_PivotedTimescaleChannelNameComponent(Conju
|
|
|
52766
52890
|
self._type = 'name'
|
|
52767
52891
|
|
|
52768
52892
|
@builtins.property
|
|
52769
|
-
def table(self) -> Optional["
|
|
52893
|
+
def table(self) -> Optional["api_Empty"]:
|
|
52770
52894
|
return self._table
|
|
52771
52895
|
|
|
52772
52896
|
@builtins.property
|
|
52773
|
-
def name(self) -> Optional["
|
|
52897
|
+
def name(self) -> Optional["api_Empty"]:
|
|
52774
52898
|
"""
|
|
52775
52899
|
The value of the name column.
|
|
52776
52900
|
"""
|
|
@@ -52793,11 +52917,11 @@ scout_datasource_connection_api_PivotedTimescaleChannelNameComponent.__module__
|
|
|
52793
52917
|
class scout_datasource_connection_api_PivotedTimescaleChannelNameComponentVisitor:
|
|
52794
52918
|
|
|
52795
52919
|
@abstractmethod
|
|
52796
|
-
def _table(self, table: "
|
|
52920
|
+
def _table(self, table: "api_Empty") -> Any:
|
|
52797
52921
|
pass
|
|
52798
52922
|
|
|
52799
52923
|
@abstractmethod
|
|
52800
|
-
def _name(self, name: "
|
|
52924
|
+
def _name(self, name: "api_Empty") -> Any:
|
|
52801
52925
|
pass
|
|
52802
52926
|
|
|
52803
52927
|
|
|
@@ -53260,25 +53384,25 @@ scout_datasource_connection_api_TimescaleScrapingFilterVisitor.__module__ = "nom
|
|
|
53260
53384
|
|
|
53261
53385
|
|
|
53262
53386
|
class scout_datasource_connection_api_TimestreamChannelNameComponent(ConjureUnionType):
|
|
53263
|
-
_table: Optional["
|
|
53264
|
-
_measure: Optional["
|
|
53265
|
-
_attribute: Optional["
|
|
53387
|
+
_table: Optional["api_Empty"] = None
|
|
53388
|
+
_measure: Optional["api_Empty"] = None
|
|
53389
|
+
_attribute: Optional["api_Empty"] = None
|
|
53266
53390
|
_value_of_tag_with_name: Optional[str] = None
|
|
53267
53391
|
|
|
53268
53392
|
@builtins.classmethod
|
|
53269
53393
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
53270
53394
|
return {
|
|
53271
|
-
'table': ConjureFieldDefinition('table',
|
|
53272
|
-
'measure': ConjureFieldDefinition('measure',
|
|
53273
|
-
'attribute': ConjureFieldDefinition('attribute',
|
|
53395
|
+
'table': ConjureFieldDefinition('table', api_Empty),
|
|
53396
|
+
'measure': ConjureFieldDefinition('measure', api_Empty),
|
|
53397
|
+
'attribute': ConjureFieldDefinition('attribute', api_Empty),
|
|
53274
53398
|
'value_of_tag_with_name': ConjureFieldDefinition('valueOfTagWithName', api_TagName)
|
|
53275
53399
|
}
|
|
53276
53400
|
|
|
53277
53401
|
def __init__(
|
|
53278
53402
|
self,
|
|
53279
|
-
table: Optional["
|
|
53280
|
-
measure: Optional["
|
|
53281
|
-
attribute: Optional["
|
|
53403
|
+
table: Optional["api_Empty"] = None,
|
|
53404
|
+
measure: Optional["api_Empty"] = None,
|
|
53405
|
+
attribute: Optional["api_Empty"] = None,
|
|
53282
53406
|
value_of_tag_with_name: Optional[str] = None,
|
|
53283
53407
|
type_of_union: Optional[str] = None
|
|
53284
53408
|
) -> None:
|
|
@@ -53321,15 +53445,15 @@ class scout_datasource_connection_api_TimestreamChannelNameComponent(ConjureUnio
|
|
|
53321
53445
|
self._type = 'valueOfTagWithName'
|
|
53322
53446
|
|
|
53323
53447
|
@builtins.property
|
|
53324
|
-
def table(self) -> Optional["
|
|
53448
|
+
def table(self) -> Optional["api_Empty"]:
|
|
53325
53449
|
return self._table
|
|
53326
53450
|
|
|
53327
53451
|
@builtins.property
|
|
53328
|
-
def measure(self) -> Optional["
|
|
53452
|
+
def measure(self) -> Optional["api_Empty"]:
|
|
53329
53453
|
return self._measure
|
|
53330
53454
|
|
|
53331
53455
|
@builtins.property
|
|
53332
|
-
def attribute(self) -> Optional["
|
|
53456
|
+
def attribute(self) -> Optional["api_Empty"]:
|
|
53333
53457
|
return self._attribute
|
|
53334
53458
|
|
|
53335
53459
|
@builtins.property
|
|
@@ -53360,15 +53484,15 @@ scout_datasource_connection_api_TimestreamChannelNameComponent.__module__ = "nom
|
|
|
53360
53484
|
class scout_datasource_connection_api_TimestreamChannelNameComponentVisitor:
|
|
53361
53485
|
|
|
53362
53486
|
@abstractmethod
|
|
53363
|
-
def _table(self, table: "
|
|
53487
|
+
def _table(self, table: "api_Empty") -> Any:
|
|
53364
53488
|
pass
|
|
53365
53489
|
|
|
53366
53490
|
@abstractmethod
|
|
53367
|
-
def _measure(self, measure: "
|
|
53491
|
+
def _measure(self, measure: "api_Empty") -> Any:
|
|
53368
53492
|
pass
|
|
53369
53493
|
|
|
53370
53494
|
@abstractmethod
|
|
53371
|
-
def _attribute(self, attribute: "
|
|
53495
|
+
def _attribute(self, attribute: "api_Empty") -> Any:
|
|
53372
53496
|
pass
|
|
53373
53497
|
|
|
53374
53498
|
@abstractmethod
|
|
@@ -56810,7 +56934,7 @@ class scout_notebook_api_SearchNotebooksRequest(ConjureBeanType):
|
|
|
56810
56934
|
'show_drafts': ConjureFieldDefinition('showDrafts', bool),
|
|
56811
56935
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
56812
56936
|
'sort_by': ConjureFieldDefinition('sortBy', OptionalTypeWrapper[scout_notebook_api_SortBy]),
|
|
56813
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
56937
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
56814
56938
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
56815
56939
|
}
|
|
56816
56940
|
|
|
@@ -56872,7 +56996,7 @@ class scout_notebook_api_SearchNotebooksResponse(ConjureBeanType):
|
|
|
56872
56996
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
56873
56997
|
return {
|
|
56874
56998
|
'results': ConjureFieldDefinition('results', List[scout_notebook_api_NotebookMetadataWithRid]),
|
|
56875
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
56999
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
56876
57000
|
}
|
|
56877
57001
|
|
|
56878
57002
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -57234,22 +57358,6 @@ scout_rids_api_ClosedWithIgnoreAlertState.__qualname__ = "ClosedWithIgnoreAlertS
|
|
|
57234
57358
|
scout_rids_api_ClosedWithIgnoreAlertState.__module__ = "nominal_api.scout_rids_api"
|
|
57235
57359
|
|
|
57236
57360
|
|
|
57237
|
-
class scout_rids_api_Empty(ConjureBeanType):
|
|
57238
|
-
|
|
57239
|
-
@builtins.classmethod
|
|
57240
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
57241
|
-
return {
|
|
57242
|
-
}
|
|
57243
|
-
|
|
57244
|
-
__slots__: List[str] = []
|
|
57245
|
-
|
|
57246
|
-
|
|
57247
|
-
|
|
57248
|
-
scout_rids_api_Empty.__name__ = "Empty"
|
|
57249
|
-
scout_rids_api_Empty.__qualname__ = "Empty"
|
|
57250
|
-
scout_rids_api_Empty.__module__ = "nominal_api.scout_rids_api"
|
|
57251
|
-
|
|
57252
|
-
|
|
57253
57361
|
class scout_rids_api_PendingReviewAlertState(ConjureBeanType):
|
|
57254
57362
|
|
|
57255
57363
|
@builtins.classmethod
|
|
@@ -58704,7 +58812,7 @@ class scout_run_api_SearchRunChannelsRequest(ConjureBeanType):
|
|
|
58704
58812
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
58705
58813
|
'ref_name_filter': ConjureFieldDefinition('refNameFilter', OptionalTypeWrapper[List[scout_api_DataSourceRefName]]),
|
|
58706
58814
|
'previously_selected_channels': ConjureFieldDefinition('previouslySelectedChannels', Dict[scout_api_DataSourceRefName, List[api_Channel]]),
|
|
58707
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
58815
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
58708
58816
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
58709
58817
|
}
|
|
58710
58818
|
|
|
@@ -58755,7 +58863,7 @@ class scout_run_api_SearchRunChannelsResponse(ConjureBeanType):
|
|
|
58755
58863
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58756
58864
|
return {
|
|
58757
58865
|
'results': ConjureFieldDefinition('results', List[scout_run_api_ChannelMetadata]),
|
|
58758
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
58866
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
58759
58867
|
}
|
|
58760
58868
|
|
|
58761
58869
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -58785,7 +58893,7 @@ class scout_run_api_SearchRunsRequest(ConjureBeanType):
|
|
|
58785
58893
|
return {
|
|
58786
58894
|
'sort': ConjureFieldDefinition('sort', scout_run_api_SortOptions),
|
|
58787
58895
|
'page_size': ConjureFieldDefinition('pageSize', int),
|
|
58788
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
58896
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
58789
58897
|
'query': ConjureFieldDefinition('query', scout_run_api_SearchQuery)
|
|
58790
58898
|
}
|
|
58791
58899
|
|
|
@@ -58828,7 +58936,7 @@ class scout_run_api_SearchRunsResponse(ConjureBeanType):
|
|
|
58828
58936
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58829
58937
|
return {
|
|
58830
58938
|
'results': ConjureFieldDefinition('results', List[scout_run_api_Run]),
|
|
58831
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
58939
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
58832
58940
|
}
|
|
58833
58941
|
|
|
58834
58942
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -58857,7 +58965,7 @@ class scout_run_api_SearchRunsWithDataReviewMetricsResponse(ConjureBeanType):
|
|
|
58857
58965
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58858
58966
|
return {
|
|
58859
58967
|
'results': ConjureFieldDefinition('results', List[scout_run_api_RunWithDataReviewMetrics]),
|
|
58860
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
58968
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
58861
58969
|
}
|
|
58862
58970
|
|
|
58863
58971
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -58886,7 +58994,7 @@ class scout_run_api_SearchRunsWithDataReviewSummaryResponse(ConjureBeanType):
|
|
|
58886
58994
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58887
58995
|
return {
|
|
58888
58996
|
'results': ConjureFieldDefinition('results', List[scout_run_api_RunWithDataReviewSummary]),
|
|
58889
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
58997
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
58890
58998
|
}
|
|
58891
58999
|
|
|
58892
59000
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -59637,7 +59745,7 @@ class scout_template_api_SearchTemplatesRequest(ConjureBeanType):
|
|
|
59637
59745
|
return {
|
|
59638
59746
|
'query': ConjureFieldDefinition('query', scout_template_api_SearchTemplatesQuery),
|
|
59639
59747
|
'sort_by': ConjureFieldDefinition('sortBy', OptionalTypeWrapper[scout_template_api_SortBy]),
|
|
59640
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
59748
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token]),
|
|
59641
59749
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
|
59642
59750
|
}
|
|
59643
59751
|
|
|
@@ -59683,7 +59791,7 @@ class scout_template_api_SearchTemplatesResponse(ConjureBeanType):
|
|
|
59683
59791
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
59684
59792
|
return {
|
|
59685
59793
|
'results': ConjureFieldDefinition('results', List[scout_template_api_TemplateSummary]),
|
|
59686
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
59794
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
59687
59795
|
}
|
|
59688
59796
|
|
|
59689
59797
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -60242,7 +60350,7 @@ class scout_versioning_api_CommitHistory(ConjureBeanType):
|
|
|
60242
60350
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
60243
60351
|
return {
|
|
60244
60352
|
'history': ConjureFieldDefinition('history', List[scout_versioning_api_Commit]),
|
|
60245
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
60353
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
60246
60354
|
}
|
|
60247
60355
|
|
|
60248
60356
|
__slots__: List[str] = ['_history', '_next_page_token']
|
|
@@ -61423,22 +61531,6 @@ scout_video_api_DetailedIngestStatusVisitor.__qualname__ = "DetailedIngestStatus
|
|
|
61423
61531
|
scout_video_api_DetailedIngestStatusVisitor.__module__ = "nominal_api.scout_video_api"
|
|
61424
61532
|
|
|
61425
61533
|
|
|
61426
|
-
class scout_video_api_Empty(ConjureBeanType):
|
|
61427
|
-
|
|
61428
|
-
@builtins.classmethod
|
|
61429
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61430
|
-
return {
|
|
61431
|
-
}
|
|
61432
|
-
|
|
61433
|
-
__slots__: List[str] = []
|
|
61434
|
-
|
|
61435
|
-
|
|
61436
|
-
|
|
61437
|
-
scout_video_api_Empty.__name__ = "Empty"
|
|
61438
|
-
scout_video_api_Empty.__qualname__ = "Empty"
|
|
61439
|
-
scout_video_api_Empty.__module__ = "nominal_api.scout_video_api"
|
|
61440
|
-
|
|
61441
|
-
|
|
61442
61534
|
class scout_video_api_ErrorIngestStatus(ConjureBeanType):
|
|
61443
61535
|
|
|
61444
61536
|
@builtins.classmethod
|
|
@@ -61560,26 +61652,6 @@ scout_video_api_IngestError.__qualname__ = "IngestError"
|
|
|
61560
61652
|
scout_video_api_IngestError.__module__ = "nominal_api.scout_video_api"
|
|
61561
61653
|
|
|
61562
61654
|
|
|
61563
|
-
class scout_video_api_IngestStatus(ConjureEnumType):
|
|
61564
|
-
|
|
61565
|
-
SUCCEEDED = 'SUCCEEDED'
|
|
61566
|
-
'''SUCCEEDED'''
|
|
61567
|
-
FAILED = 'FAILED'
|
|
61568
|
-
'''FAILED'''
|
|
61569
|
-
IN_PROGRESS = 'IN_PROGRESS'
|
|
61570
|
-
'''IN_PROGRESS'''
|
|
61571
|
-
UNKNOWN = 'UNKNOWN'
|
|
61572
|
-
'''UNKNOWN'''
|
|
61573
|
-
|
|
61574
|
-
def __reduce_ex__(self, proto):
|
|
61575
|
-
return self.__class__, (self.name,)
|
|
61576
|
-
|
|
61577
|
-
|
|
61578
|
-
scout_video_api_IngestStatus.__name__ = "IngestStatus"
|
|
61579
|
-
scout_video_api_IngestStatus.__qualname__ = "IngestStatus"
|
|
61580
|
-
scout_video_api_IngestStatus.__module__ = "nominal_api.scout_video_api"
|
|
61581
|
-
|
|
61582
|
-
|
|
61583
61655
|
class scout_video_api_McapTimestampManifest(ConjureBeanType):
|
|
61584
61656
|
"""
|
|
61585
61657
|
Timestamps are derived from the mcap file containing the video frames.
|
|
@@ -61752,7 +61824,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61752
61824
|
_property: Optional["api_Property"] = None
|
|
61753
61825
|
_and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61754
61826
|
_or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61755
|
-
_ingest_status: Optional["
|
|
61827
|
+
_ingest_status: Optional["api_IngestStatus"] = None
|
|
61756
61828
|
|
|
61757
61829
|
@builtins.classmethod
|
|
61758
61830
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -61762,7 +61834,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61762
61834
|
'property': ConjureFieldDefinition('property', api_Property),
|
|
61763
61835
|
'and_': ConjureFieldDefinition('and', List[scout_video_api_SearchVideosQuery]),
|
|
61764
61836
|
'or_': ConjureFieldDefinition('or', List[scout_video_api_SearchVideosQuery]),
|
|
61765
|
-
'ingest_status': ConjureFieldDefinition('ingestStatus',
|
|
61837
|
+
'ingest_status': ConjureFieldDefinition('ingestStatus', api_IngestStatus)
|
|
61766
61838
|
}
|
|
61767
61839
|
|
|
61768
61840
|
def __init__(
|
|
@@ -61772,7 +61844,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61772
61844
|
property: Optional["api_Property"] = None,
|
|
61773
61845
|
and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61774
61846
|
or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61775
|
-
ingest_status: Optional["
|
|
61847
|
+
ingest_status: Optional["api_IngestStatus"] = None,
|
|
61776
61848
|
type_of_union: Optional[str] = None
|
|
61777
61849
|
) -> None:
|
|
61778
61850
|
if type_of_union is None:
|
|
@@ -61850,7 +61922,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61850
61922
|
return self._or_
|
|
61851
61923
|
|
|
61852
61924
|
@builtins.property
|
|
61853
|
-
def ingest_status(self) -> Optional["
|
|
61925
|
+
def ingest_status(self) -> Optional["api_IngestStatus"]:
|
|
61854
61926
|
return self._ingest_status
|
|
61855
61927
|
|
|
61856
61928
|
def accept(self, visitor) -> Any:
|
|
@@ -61898,7 +61970,7 @@ class scout_video_api_SearchVideosQueryVisitor:
|
|
|
61898
61970
|
pass
|
|
61899
61971
|
|
|
61900
61972
|
@abstractmethod
|
|
61901
|
-
def _ingest_status(self, ingest_status: "
|
|
61973
|
+
def _ingest_status(self, ingest_status: "api_IngestStatus") -> Any:
|
|
61902
61974
|
pass
|
|
61903
61975
|
|
|
61904
61976
|
|
|
@@ -61914,7 +61986,7 @@ class scout_video_api_SearchVideosRequest(ConjureBeanType):
|
|
|
61914
61986
|
return {
|
|
61915
61987
|
'query': ConjureFieldDefinition('query', scout_video_api_SearchVideosQuery),
|
|
61916
61988
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
61917
|
-
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[
|
|
61989
|
+
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[api_Token]),
|
|
61918
61990
|
'sort_options': ConjureFieldDefinition('sortOptions', scout_video_api_SortOptions),
|
|
61919
61991
|
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
61920
61992
|
}
|
|
@@ -61966,7 +62038,7 @@ class scout_video_api_SearchVideosResponse(ConjureBeanType):
|
|
|
61966
62038
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61967
62039
|
return {
|
|
61968
62040
|
'results': ConjureFieldDefinition('results', List[scout_video_api_Video]),
|
|
61969
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
62041
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
61970
62042
|
}
|
|
61971
62043
|
|
|
61972
62044
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -61994,7 +62066,7 @@ class scout_video_api_Segment(ConjureBeanType):
|
|
|
61994
62066
|
@builtins.classmethod
|
|
61995
62067
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61996
62068
|
return {
|
|
61997
|
-
'rid': ConjureFieldDefinition('rid',
|
|
62069
|
+
'rid': ConjureFieldDefinition('rid', api_rids_SegmentRid),
|
|
61998
62070
|
'video_rid': ConjureFieldDefinition('videoRid', api_rids_VideoRid),
|
|
61999
62071
|
'data_handle': ConjureFieldDefinition('dataHandle', api_Handle),
|
|
62000
62072
|
'frame_rate': ConjureFieldDefinition('frameRate', float),
|
|
@@ -62275,21 +62347,21 @@ scout_video_api_TimestampMappings.__module__ = "nominal_api.scout_video_api"
|
|
|
62275
62347
|
class scout_video_api_UpdateIngestStatus(ConjureUnionType):
|
|
62276
62348
|
_success: Optional["scout_video_api_SuccessIngestStatus"] = None
|
|
62277
62349
|
_error: Optional["scout_video_api_ErrorIngestStatus"] = None
|
|
62278
|
-
_in_progress: Optional["
|
|
62350
|
+
_in_progress: Optional["api_Empty"] = None
|
|
62279
62351
|
|
|
62280
62352
|
@builtins.classmethod
|
|
62281
62353
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
62282
62354
|
return {
|
|
62283
62355
|
'success': ConjureFieldDefinition('success', scout_video_api_SuccessIngestStatus),
|
|
62284
62356
|
'error': ConjureFieldDefinition('error', scout_video_api_ErrorIngestStatus),
|
|
62285
|
-
'in_progress': ConjureFieldDefinition('inProgress',
|
|
62357
|
+
'in_progress': ConjureFieldDefinition('inProgress', api_Empty)
|
|
62286
62358
|
}
|
|
62287
62359
|
|
|
62288
62360
|
def __init__(
|
|
62289
62361
|
self,
|
|
62290
62362
|
success: Optional["scout_video_api_SuccessIngestStatus"] = None,
|
|
62291
62363
|
error: Optional["scout_video_api_ErrorIngestStatus"] = None,
|
|
62292
|
-
in_progress: Optional["
|
|
62364
|
+
in_progress: Optional["api_Empty"] = None,
|
|
62293
62365
|
type_of_union: Optional[str] = None
|
|
62294
62366
|
) -> None:
|
|
62295
62367
|
if type_of_union is None:
|
|
@@ -62331,7 +62403,7 @@ class scout_video_api_UpdateIngestStatus(ConjureUnionType):
|
|
|
62331
62403
|
return self._error
|
|
62332
62404
|
|
|
62333
62405
|
@builtins.property
|
|
62334
|
-
def in_progress(self) -> Optional["
|
|
62406
|
+
def in_progress(self) -> Optional["api_Empty"]:
|
|
62335
62407
|
return self._in_progress
|
|
62336
62408
|
|
|
62337
62409
|
def accept(self, visitor) -> Any:
|
|
@@ -62361,7 +62433,7 @@ class scout_video_api_UpdateIngestStatusVisitor:
|
|
|
62361
62433
|
pass
|
|
62362
62434
|
|
|
62363
62435
|
@abstractmethod
|
|
62364
|
-
def _in_progress(self, in_progress: "
|
|
62436
|
+
def _in_progress(self, in_progress: "api_Empty") -> Any:
|
|
62365
62437
|
pass
|
|
62366
62438
|
|
|
62367
62439
|
|
|
@@ -63141,7 +63213,7 @@ class secrets_api_SearchSecretsRequest(ConjureBeanType):
|
|
|
63141
63213
|
'query': ConjureFieldDefinition('query', secrets_api_SearchSecretsQuery),
|
|
63142
63214
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
63143
63215
|
'sort': ConjureFieldDefinition('sort', secrets_api_SortOptions),
|
|
63144
|
-
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[
|
|
63216
|
+
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[api_Token]),
|
|
63145
63217
|
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
63146
63218
|
}
|
|
63147
63219
|
|
|
@@ -63192,7 +63264,7 @@ class secrets_api_SearchSecretsResponse(ConjureBeanType):
|
|
|
63192
63264
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
63193
63265
|
return {
|
|
63194
63266
|
'results': ConjureFieldDefinition('results', List[secrets_api_Secret]),
|
|
63195
|
-
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[
|
|
63267
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_Token])
|
|
63196
63268
|
}
|
|
63197
63269
|
|
|
63198
63270
|
__slots__: List[str] = ['_results', '_next_page_token']
|
|
@@ -67383,22 +67455,6 @@ timeseries_logicalseries_api_CsvLocatorV2.__qualname__ = "CsvLocatorV2"
|
|
|
67383
67455
|
timeseries_logicalseries_api_CsvLocatorV2.__module__ = "nominal_api.timeseries_logicalseries_api"
|
|
67384
67456
|
|
|
67385
67457
|
|
|
67386
|
-
class timeseries_logicalseries_api_Empty(ConjureBeanType):
|
|
67387
|
-
|
|
67388
|
-
@builtins.classmethod
|
|
67389
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
67390
|
-
return {
|
|
67391
|
-
}
|
|
67392
|
-
|
|
67393
|
-
__slots__: List[str] = []
|
|
67394
|
-
|
|
67395
|
-
|
|
67396
|
-
|
|
67397
|
-
timeseries_logicalseries_api_Empty.__name__ = "Empty"
|
|
67398
|
-
timeseries_logicalseries_api_Empty.__qualname__ = "Empty"
|
|
67399
|
-
timeseries_logicalseries_api_Empty.__module__ = "nominal_api.timeseries_logicalseries_api"
|
|
67400
|
-
|
|
67401
|
-
|
|
67402
67458
|
class timeseries_logicalseries_api_GetSuggestedTagsRequest(ConjureBeanType):
|
|
67403
67459
|
|
|
67404
67460
|
@builtins.classmethod
|
|
@@ -68209,19 +68265,19 @@ timeseries_logicalseries_api_TimestreamLocator.__module__ = "nominal_api.timeser
|
|
|
68209
68265
|
class timeseries_logicalseries_api_UnitUpdate(ConjureUnionType):
|
|
68210
68266
|
"""UnitUpdate is used to either set a unit, or to clear an existing unit."""
|
|
68211
68267
|
_unit: Optional[str] = None
|
|
68212
|
-
_clear_unit: Optional["
|
|
68268
|
+
_clear_unit: Optional["api_Empty"] = None
|
|
68213
68269
|
|
|
68214
68270
|
@builtins.classmethod
|
|
68215
68271
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
68216
68272
|
return {
|
|
68217
68273
|
'unit': ConjureFieldDefinition('unit', api_Unit),
|
|
68218
|
-
'clear_unit': ConjureFieldDefinition('clearUnit',
|
|
68274
|
+
'clear_unit': ConjureFieldDefinition('clearUnit', api_Empty)
|
|
68219
68275
|
}
|
|
68220
68276
|
|
|
68221
68277
|
def __init__(
|
|
68222
68278
|
self,
|
|
68223
68279
|
unit: Optional[str] = None,
|
|
68224
|
-
clear_unit: Optional["
|
|
68280
|
+
clear_unit: Optional["api_Empty"] = None,
|
|
68225
68281
|
type_of_union: Optional[str] = None
|
|
68226
68282
|
) -> None:
|
|
68227
68283
|
if type_of_union is None:
|
|
@@ -68251,7 +68307,7 @@ class timeseries_logicalseries_api_UnitUpdate(ConjureUnionType):
|
|
|
68251
68307
|
return self._unit
|
|
68252
68308
|
|
|
68253
68309
|
@builtins.property
|
|
68254
|
-
def clear_unit(self) -> Optional["
|
|
68310
|
+
def clear_unit(self) -> Optional["api_Empty"]:
|
|
68255
68311
|
return self._clear_unit
|
|
68256
68312
|
|
|
68257
68313
|
def accept(self, visitor) -> Any:
|
|
@@ -68275,7 +68331,7 @@ class timeseries_logicalseries_api_UnitUpdateVisitor:
|
|
|
68275
68331
|
pass
|
|
68276
68332
|
|
|
68277
68333
|
@abstractmethod
|
|
68278
|
-
def _clear_unit(self, clear_unit: "
|
|
68334
|
+
def _clear_unit(self, clear_unit: "api_Empty") -> Any:
|
|
68279
68335
|
pass
|
|
68280
68336
|
|
|
68281
68337
|
|
|
@@ -69352,8 +69408,6 @@ timeseries_seriescache_api_Resolution = int
|
|
|
69352
69408
|
|
|
69353
69409
|
api_PropertyName = str
|
|
69354
69410
|
|
|
69355
|
-
scout_catalog_ErrorType = str
|
|
69356
|
-
|
|
69357
69411
|
scout_integrations_api_IntegrationRid = str
|
|
69358
69412
|
|
|
69359
69413
|
scout_api_DataSourceRefName = str
|
|
@@ -69382,8 +69436,6 @@ scout_rids_api_FunctionRid = str
|
|
|
69382
69436
|
|
|
69383
69437
|
scout_units_api_UnitSystem = str
|
|
69384
69438
|
|
|
69385
|
-
scout_video_api_SegmentRid = str
|
|
69386
|
-
|
|
69387
69439
|
secrets_api_SecretRid = str
|
|
69388
69440
|
|
|
69389
69441
|
timeseries_logicalseries_api_ColumnName = str
|
|
@@ -69400,8 +69452,6 @@ api_rids_ChunkRid = str
|
|
|
69400
69452
|
|
|
69401
69453
|
scout_rids_api_CheckAlertRid = str
|
|
69402
69454
|
|
|
69403
|
-
datasource_Token = str
|
|
69404
|
-
|
|
69405
69455
|
scout_chart_api_JsonString = str
|
|
69406
69456
|
|
|
69407
69457
|
scout_checks_api_JobRid = str
|
|
@@ -69424,8 +69474,6 @@ scout_run_api_RunRid = str
|
|
|
69424
69474
|
|
|
69425
69475
|
scout_datasource_connection_api_DatasetName = str
|
|
69426
69476
|
|
|
69427
|
-
scout_backend_Token = str
|
|
69428
|
-
|
|
69429
69477
|
api_TagValue = str
|
|
69430
69478
|
|
|
69431
69479
|
scout_versioning_api_TagName = str
|
|
@@ -69464,8 +69512,6 @@ scout_channelvariables_api_ComputeSpecV1 = str
|
|
|
69464
69512
|
|
|
69465
69513
|
timeseries_logicalseries_api_TableName = str
|
|
69466
69514
|
|
|
69467
|
-
scout_api_Token = str
|
|
69468
|
-
|
|
69469
69515
|
scout_rids_api_NotebookRid = str
|
|
69470
69516
|
|
|
69471
69517
|
scout_asset_api_SeriesTagValue = str
|
|
@@ -69476,8 +69522,6 @@ api_rids_DatasetRid = str
|
|
|
69476
69522
|
|
|
69477
69523
|
scout_units_api_UnitSymbol = str
|
|
69478
69524
|
|
|
69479
|
-
datasource_logset_api_Token = str
|
|
69480
|
-
|
|
69481
69525
|
timeseries_logicalseries_api_LocationName = str
|
|
69482
69526
|
|
|
69483
69527
|
api_rids_DataSourceRid = str
|
|
@@ -69492,8 +69536,6 @@ scout_video_api_ErrorType = str
|
|
|
69492
69536
|
|
|
69493
69537
|
scout_comparisonnotebook_api_ComparisonChannelVariableMap = Dict[scout_comparisonnotebook_api_VariableName, scout_comparisonnotebook_api_ChannelVariable]
|
|
69494
69538
|
|
|
69495
|
-
ingest_api_ErrorType = str
|
|
69496
|
-
|
|
69497
69539
|
timeseries_logicalseries_api_FieldName = str
|
|
69498
69540
|
|
|
69499
69541
|
scout_channelvariables_api_WorkbookChannelVariableMap = Dict[scout_channelvariables_api_ChannelVariableName, scout_channelvariables_api_ChannelVariable]
|
|
@@ -69508,6 +69550,8 @@ datasource_logset_api_LogSetRid = str
|
|
|
69508
69550
|
|
|
69509
69551
|
ingest_api_DataSourceRefName = str
|
|
69510
69552
|
|
|
69553
|
+
api_ErrorType = str
|
|
69554
|
+
|
|
69511
69555
|
scout_compute_api_ComputeWithUnitsRequest = scout_compute_api_ComputeNodeRequest
|
|
69512
69556
|
|
|
69513
69557
|
scout_compute_api_FunctionReference = str
|
|
@@ -69584,6 +69628,8 @@ scout_datasource_connection_api_OrganizationRid = str
|
|
|
69584
69628
|
|
|
69585
69629
|
scout_rids_api_CheckRid = str
|
|
69586
69630
|
|
|
69631
|
+
api_Token = str
|
|
69632
|
+
|
|
69587
69633
|
timeseries_logicalseries_api_ProjectName = str
|
|
69588
69634
|
|
|
69589
69635
|
api_Channel = str
|