nominal-api 0.546.0__py3-none-any.whl → 0.548.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nominal-api might be problematic. Click here for more details.
- nominal_api/__init__.py +1 -1
- nominal_api/_impl.py +494 -425
- nominal_api/api/__init__.py +5 -0
- nominal_api/api_rids/__init__.py +1 -0
- nominal_api/attachments_api/__init__.py +0 -4
- nominal_api/datasource/__init__.py +0 -4
- nominal_api/ingest_api/__init__.py +0 -3
- nominal_api/scout_compute_api/__init__.py +4 -0
- nominal_api/scout_compute_resolved_api/__init__.py +1 -0
- nominal_api/scout_rids_api/__init__.py +0 -1
- nominal_api/scout_run_api/__init__.py +0 -4
- nominal_api/scout_video_api/__init__.py +0 -5
- nominal_api/secrets_api/__init__.py +0 -5
- {nominal_api-0.546.0.dist-info → nominal_api-0.548.0.dist-info}/METADATA +1 -1
- {nominal_api-0.546.0.dist-info → nominal_api-0.548.0.dist-info}/RECORD +17 -17
- {nominal_api-0.546.0.dist-info → nominal_api-0.548.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.546.0.dist-info → nominal_api-0.548.0.dist-info}/top_level.txt +0 -0
nominal_api/_impl.py
CHANGED
|
@@ -25,6 +25,24 @@ from typing import (
|
|
|
25
25
|
Set,
|
|
26
26
|
)
|
|
27
27
|
|
|
28
|
+
class api_ArchivedStatus(ConjureEnumType):
|
|
29
|
+
|
|
30
|
+
NOT_ARCHIVED = 'NOT_ARCHIVED'
|
|
31
|
+
'''NOT_ARCHIVED'''
|
|
32
|
+
ARCHIVED = 'ARCHIVED'
|
|
33
|
+
'''ARCHIVED'''
|
|
34
|
+
UNKNOWN = 'UNKNOWN'
|
|
35
|
+
'''UNKNOWN'''
|
|
36
|
+
|
|
37
|
+
def __reduce_ex__(self, proto):
|
|
38
|
+
return self.__class__, (self.name,)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
api_ArchivedStatus.__name__ = "ArchivedStatus"
|
|
42
|
+
api_ArchivedStatus.__qualname__ = "ArchivedStatus"
|
|
43
|
+
api_ArchivedStatus.__module__ = "nominal_api.api"
|
|
44
|
+
|
|
45
|
+
|
|
28
46
|
class api_Empty(ConjureBeanType):
|
|
29
47
|
|
|
30
48
|
@builtins.classmethod
|
|
@@ -138,6 +156,35 @@ api_McapChannelLocatorVisitor.__qualname__ = "McapChannelLocatorVisitor"
|
|
|
138
156
|
api_McapChannelLocatorVisitor.__module__ = "nominal_api.api"
|
|
139
157
|
|
|
140
158
|
|
|
159
|
+
class api_Property(ConjureBeanType):
|
|
160
|
+
|
|
161
|
+
@builtins.classmethod
|
|
162
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
163
|
+
return {
|
|
164
|
+
'name': ConjureFieldDefinition('name', api_PropertyName),
|
|
165
|
+
'value': ConjureFieldDefinition('value', api_PropertyValue)
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
__slots__: List[str] = ['_name', '_value']
|
|
169
|
+
|
|
170
|
+
def __init__(self, name: str, value: str) -> None:
|
|
171
|
+
self._name = name
|
|
172
|
+
self._value = value
|
|
173
|
+
|
|
174
|
+
@builtins.property
|
|
175
|
+
def name(self) -> str:
|
|
176
|
+
return self._name
|
|
177
|
+
|
|
178
|
+
@builtins.property
|
|
179
|
+
def value(self) -> str:
|
|
180
|
+
return self._value
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
api_Property.__name__ = "Property"
|
|
184
|
+
api_Property.__qualname__ = "Property"
|
|
185
|
+
api_Property.__module__ = "nominal_api.api"
|
|
186
|
+
|
|
187
|
+
|
|
141
188
|
class api_SerializableError(ConjureBeanType):
|
|
142
189
|
"""
|
|
143
190
|
A SerializableError is a representation of a ServiceException that exists to send error
|
|
@@ -286,8 +333,8 @@ class attachments_api_Attachment(ConjureBeanType):
|
|
|
286
333
|
'file_type': ConjureFieldDefinition('fileType', str),
|
|
287
334
|
'description': ConjureFieldDefinition('description', str),
|
|
288
335
|
'created_by': ConjureFieldDefinition('createdBy', str),
|
|
289
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
290
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
336
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
337
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
291
338
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
292
339
|
'is_archived': ConjureFieldDefinition('isArchived', bool)
|
|
293
340
|
}
|
|
@@ -655,8 +702,8 @@ class attachments_api_CreateAttachmentRequest(ConjureBeanType):
|
|
|
655
702
|
's3_path': ConjureFieldDefinition('s3Path', attachments_api_S3Path),
|
|
656
703
|
'title': ConjureFieldDefinition('title', str),
|
|
657
704
|
'description': ConjureFieldDefinition('description', str),
|
|
658
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
659
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
705
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
706
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
660
707
|
}
|
|
661
708
|
|
|
662
709
|
__slots__: List[str] = ['_s3_path', '_title', '_description', '_properties', '_labels']
|
|
@@ -740,39 +787,10 @@ attachments_api_GetAttachmentsResponse.__qualname__ = "GetAttachmentsResponse"
|
|
|
740
787
|
attachments_api_GetAttachmentsResponse.__module__ = "nominal_api.attachments_api"
|
|
741
788
|
|
|
742
789
|
|
|
743
|
-
class attachments_api_Property(ConjureBeanType):
|
|
744
|
-
|
|
745
|
-
@builtins.classmethod
|
|
746
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
747
|
-
return {
|
|
748
|
-
'name': ConjureFieldDefinition('name', attachments_api_PropertyName),
|
|
749
|
-
'value': ConjureFieldDefinition('value', attachments_api_PropertyValue)
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
__slots__: List[str] = ['_name', '_value']
|
|
753
|
-
|
|
754
|
-
def __init__(self, name: str, value: str) -> None:
|
|
755
|
-
self._name = name
|
|
756
|
-
self._value = value
|
|
757
|
-
|
|
758
|
-
@builtins.property
|
|
759
|
-
def name(self) -> str:
|
|
760
|
-
return self._name
|
|
761
|
-
|
|
762
|
-
@builtins.property
|
|
763
|
-
def value(self) -> str:
|
|
764
|
-
return self._value
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
attachments_api_Property.__name__ = "Property"
|
|
768
|
-
attachments_api_Property.__qualname__ = "Property"
|
|
769
|
-
attachments_api_Property.__module__ = "nominal_api.attachments_api"
|
|
770
|
-
|
|
771
|
-
|
|
772
790
|
class attachments_api_SearchAttachmentsQuery(ConjureUnionType):
|
|
773
791
|
_search_text: Optional[str] = None
|
|
774
792
|
_label: Optional[str] = None
|
|
775
|
-
_property: Optional["
|
|
793
|
+
_property: Optional["api_Property"] = None
|
|
776
794
|
_and_: Optional[List["attachments_api_SearchAttachmentsQuery"]] = None
|
|
777
795
|
_or_: Optional[List["attachments_api_SearchAttachmentsQuery"]] = None
|
|
778
796
|
|
|
@@ -780,8 +798,8 @@ class attachments_api_SearchAttachmentsQuery(ConjureUnionType):
|
|
|
780
798
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
781
799
|
return {
|
|
782
800
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
783
|
-
'label': ConjureFieldDefinition('label',
|
|
784
|
-
'property': ConjureFieldDefinition('property',
|
|
801
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
802
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
785
803
|
'and_': ConjureFieldDefinition('and', List[attachments_api_SearchAttachmentsQuery]),
|
|
786
804
|
'or_': ConjureFieldDefinition('or', List[attachments_api_SearchAttachmentsQuery])
|
|
787
805
|
}
|
|
@@ -790,7 +808,7 @@ class attachments_api_SearchAttachmentsQuery(ConjureUnionType):
|
|
|
790
808
|
self,
|
|
791
809
|
search_text: Optional[str] = None,
|
|
792
810
|
label: Optional[str] = None,
|
|
793
|
-
property: Optional["
|
|
811
|
+
property: Optional["api_Property"] = None,
|
|
794
812
|
and_: Optional[List["attachments_api_SearchAttachmentsQuery"]] = None,
|
|
795
813
|
or_: Optional[List["attachments_api_SearchAttachmentsQuery"]] = None,
|
|
796
814
|
type_of_union: Optional[str] = None
|
|
@@ -850,7 +868,7 @@ class attachments_api_SearchAttachmentsQuery(ConjureUnionType):
|
|
|
850
868
|
return self._label
|
|
851
869
|
|
|
852
870
|
@builtins.property
|
|
853
|
-
def property(self) -> Optional["
|
|
871
|
+
def property(self) -> Optional["api_Property"]:
|
|
854
872
|
return self._property
|
|
855
873
|
|
|
856
874
|
@builtins.property
|
|
@@ -892,7 +910,7 @@ class attachments_api_SearchAttachmentsQueryVisitor:
|
|
|
892
910
|
pass
|
|
893
911
|
|
|
894
912
|
@abstractmethod
|
|
895
|
-
def _property(self, property: "
|
|
913
|
+
def _property(self, property: "api_Property") -> Any:
|
|
896
914
|
pass
|
|
897
915
|
|
|
898
916
|
@abstractmethod
|
|
@@ -916,8 +934,8 @@ class attachments_api_UpdateAttachmentRequest(ConjureBeanType):
|
|
|
916
934
|
return {
|
|
917
935
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
918
936
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
919
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
920
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
937
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
938
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]])
|
|
921
939
|
}
|
|
922
940
|
|
|
923
941
|
__slots__: List[str] = ['_title', '_description', '_properties', '_labels']
|
|
@@ -3472,35 +3490,6 @@ comments_api_ResourceType.__qualname__ = "ResourceType"
|
|
|
3472
3490
|
comments_api_ResourceType.__module__ = "nominal_api.comments_api"
|
|
3473
3491
|
|
|
3474
3492
|
|
|
3475
|
-
class datasource_Property(ConjureBeanType):
|
|
3476
|
-
|
|
3477
|
-
@builtins.classmethod
|
|
3478
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
3479
|
-
return {
|
|
3480
|
-
'name': ConjureFieldDefinition('name', datasource_PropertyName),
|
|
3481
|
-
'value': ConjureFieldDefinition('value', datasource_PropertyValue)
|
|
3482
|
-
}
|
|
3483
|
-
|
|
3484
|
-
__slots__: List[str] = ['_name', '_value']
|
|
3485
|
-
|
|
3486
|
-
def __init__(self, name: str, value: str) -> None:
|
|
3487
|
-
self._name = name
|
|
3488
|
-
self._value = value
|
|
3489
|
-
|
|
3490
|
-
@builtins.property
|
|
3491
|
-
def name(self) -> str:
|
|
3492
|
-
return self._name
|
|
3493
|
-
|
|
3494
|
-
@builtins.property
|
|
3495
|
-
def value(self) -> str:
|
|
3496
|
-
return self._value
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
datasource_Property.__name__ = "Property"
|
|
3500
|
-
datasource_Property.__qualname__ = "Property"
|
|
3501
|
-
datasource_Property.__module__ = "nominal_api.datasource"
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
3493
|
class datasource_TimestampType(ConjureEnumType):
|
|
3505
3494
|
|
|
3506
3495
|
RELATIVE = 'RELATIVE'
|
|
@@ -5234,8 +5223,8 @@ class event_CreateEvent(ConjureBeanType):
|
|
|
5234
5223
|
'duration': ConjureFieldDefinition('duration', scout_run_api_Duration),
|
|
5235
5224
|
'name': ConjureFieldDefinition('name', str),
|
|
5236
5225
|
'type': ConjureFieldDefinition('type', event_EventType),
|
|
5237
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
5238
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
5226
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
5227
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue])
|
|
5239
5228
|
}
|
|
5240
5229
|
|
|
5241
5230
|
__slots__: List[str] = ['_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_type', '_labels', '_properties']
|
|
@@ -5306,8 +5295,8 @@ class event_Event(ConjureBeanType):
|
|
|
5306
5295
|
'duration': ConjureFieldDefinition('duration', scout_run_api_Duration),
|
|
5307
5296
|
'name': ConjureFieldDefinition('name', str),
|
|
5308
5297
|
'type': ConjureFieldDefinition('type', event_EventType),
|
|
5309
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
5310
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
5298
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
5299
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
5311
5300
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
5312
5301
|
'created_by': ConjureFieldDefinition('createdBy', OptionalTypeWrapper[scout_rids_api_UserRid])
|
|
5313
5302
|
}
|
|
@@ -5720,12 +5709,12 @@ class event_SearchEventsRequest(ConjureBeanType):
|
|
|
5720
5709
|
'page_size': ConjureFieldDefinition('pageSize', int),
|
|
5721
5710
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
5722
5711
|
'query': ConjureFieldDefinition('query', event_SearchQuery),
|
|
5723
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
5712
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
5724
5713
|
}
|
|
5725
5714
|
|
|
5726
5715
|
__slots__: List[str] = ['_sort', '_page_size', '_next_page_token', '_query', '_archived_statuses']
|
|
5727
5716
|
|
|
5728
|
-
def __init__(self, page_size: int, query: "event_SearchQuery", sort: "event_SortOptions", archived_statuses: Optional[List["
|
|
5717
|
+
def __init__(self, page_size: int, query: "event_SearchQuery", sort: "event_SortOptions", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, next_page_token: Optional[str] = None) -> None:
|
|
5729
5718
|
self._sort = sort
|
|
5730
5719
|
self._page_size = page_size
|
|
5731
5720
|
self._next_page_token = next_page_token
|
|
@@ -5752,7 +5741,7 @@ class event_SearchEventsRequest(ConjureBeanType):
|
|
|
5752
5741
|
return self._query
|
|
5753
5742
|
|
|
5754
5743
|
@builtins.property
|
|
5755
|
-
def archived_statuses(self) -> Optional[List["
|
|
5744
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
5756
5745
|
"""
|
|
5757
5746
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived events in search.
|
|
5758
5747
|
"""
|
|
@@ -5799,7 +5788,7 @@ class event_SearchQuery(ConjureUnionType):
|
|
|
5799
5788
|
_before: Optional["api_Timestamp"] = None
|
|
5800
5789
|
_asset: Optional[str] = None
|
|
5801
5790
|
_label: Optional[str] = None
|
|
5802
|
-
_property: Optional["
|
|
5791
|
+
_property: Optional["api_Property"] = None
|
|
5803
5792
|
_and_: Optional[List["event_SearchQuery"]] = None
|
|
5804
5793
|
_or_: Optional[List["event_SearchQuery"]] = None
|
|
5805
5794
|
|
|
@@ -5810,8 +5799,8 @@ class event_SearchQuery(ConjureUnionType):
|
|
|
5810
5799
|
'after': ConjureFieldDefinition('after', api_Timestamp),
|
|
5811
5800
|
'before': ConjureFieldDefinition('before', api_Timestamp),
|
|
5812
5801
|
'asset': ConjureFieldDefinition('asset', scout_rids_api_AssetRid),
|
|
5813
|
-
'label': ConjureFieldDefinition('label',
|
|
5814
|
-
'property': ConjureFieldDefinition('property',
|
|
5802
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
5803
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
5815
5804
|
'and_': ConjureFieldDefinition('and', List[event_SearchQuery]),
|
|
5816
5805
|
'or_': ConjureFieldDefinition('or', List[event_SearchQuery])
|
|
5817
5806
|
}
|
|
@@ -5823,7 +5812,7 @@ class event_SearchQuery(ConjureUnionType):
|
|
|
5823
5812
|
before: Optional["api_Timestamp"] = None,
|
|
5824
5813
|
asset: Optional[str] = None,
|
|
5825
5814
|
label: Optional[str] = None,
|
|
5826
|
-
property: Optional["
|
|
5815
|
+
property: Optional["api_Property"] = None,
|
|
5827
5816
|
and_: Optional[List["event_SearchQuery"]] = None,
|
|
5828
5817
|
or_: Optional[List["event_SearchQuery"]] = None,
|
|
5829
5818
|
type_of_union: Optional[str] = None
|
|
@@ -5925,7 +5914,7 @@ class event_SearchQuery(ConjureUnionType):
|
|
|
5925
5914
|
return self._label
|
|
5926
5915
|
|
|
5927
5916
|
@builtins.property
|
|
5928
|
-
def property(self) -> Optional["
|
|
5917
|
+
def property(self) -> Optional["api_Property"]:
|
|
5929
5918
|
return self._property
|
|
5930
5919
|
|
|
5931
5920
|
@builtins.property
|
|
@@ -5985,7 +5974,7 @@ class event_SearchQueryVisitor:
|
|
|
5985
5974
|
pass
|
|
5986
5975
|
|
|
5987
5976
|
@abstractmethod
|
|
5988
|
-
def _property(self, property: "
|
|
5977
|
+
def _property(self, property: "api_Property") -> Any:
|
|
5989
5978
|
pass
|
|
5990
5979
|
|
|
5991
5980
|
@abstractmethod
|
|
@@ -6081,8 +6070,8 @@ class event_UpdateEvent(ConjureBeanType):
|
|
|
6081
6070
|
'duration': ConjureFieldDefinition('duration', OptionalTypeWrapper[scout_run_api_Duration]),
|
|
6082
6071
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
6083
6072
|
'type': ConjureFieldDefinition('type', OptionalTypeWrapper[event_EventType]),
|
|
6084
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
6085
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
6073
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
6074
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]])
|
|
6086
6075
|
}
|
|
6087
6076
|
|
|
6088
6077
|
__slots__: List[str] = ['_uuid', '_asset_rids', '_timestamp', '_duration', '_name', '_type', '_labels', '_properties']
|
|
@@ -7113,8 +7102,8 @@ class ingest_api_IngestMcapRequest(ConjureBeanType):
|
|
|
7113
7102
|
'sources': ConjureFieldDefinition('sources', List[ingest_api_IngestSource]),
|
|
7114
7103
|
'channel_config': ConjureFieldDefinition('channelConfig', List[ingest_api_McapChannelConfig]),
|
|
7115
7104
|
'channels': ConjureFieldDefinition('channels', OptionalTypeWrapper[ingest_api_McapChannels]),
|
|
7116
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
7117
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
7105
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
7106
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
7118
7107
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
7119
7108
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str])
|
|
7120
7109
|
}
|
|
@@ -7463,8 +7452,8 @@ class ingest_api_IngestRunRequest(ConjureBeanType):
|
|
|
7463
7452
|
'description': ConjureFieldDefinition('description', str),
|
|
7464
7453
|
'start_time': ConjureFieldDefinition('startTime', ingest_api_UtcTimestamp),
|
|
7465
7454
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[ingest_api_UtcTimestamp]),
|
|
7466
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
7467
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
7455
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
7456
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
7468
7457
|
'run_prefix': ConjureFieldDefinition('runPrefix', OptionalTypeWrapper[str]),
|
|
7469
7458
|
'data_sources': ConjureFieldDefinition('dataSources', Dict[ingest_api_DataSourceRefName, ingest_api_IngestRunDataSource])
|
|
7470
7459
|
}
|
|
@@ -8070,8 +8059,8 @@ class ingest_api_IngestVideoRequest(ConjureBeanType):
|
|
|
8070
8059
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
8071
8060
|
return {
|
|
8072
8061
|
'sources': ConjureFieldDefinition('sources', List[ingest_api_IngestSource]),
|
|
8073
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
8074
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
8062
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
8063
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
8075
8064
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
8076
8065
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
8077
8066
|
'timestamps': ConjureFieldDefinition('timestamps', ingest_api_VideoTimestampManifest)
|
|
@@ -8786,8 +8775,8 @@ class ingest_api_NewDataSource(ConjureBeanType):
|
|
|
8786
8775
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
8787
8776
|
return {
|
|
8788
8777
|
'source': ConjureFieldDefinition('source', ingest_api_IngestSource),
|
|
8789
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
8790
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
8778
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
8779
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
8791
8780
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
8792
8781
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
8793
8782
|
'time_column_spec': ConjureFieldDefinition('timeColumnSpec', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
|
@@ -8846,8 +8835,8 @@ class ingest_api_NewDatasetIngestDestination(ConjureBeanType):
|
|
|
8846
8835
|
return {
|
|
8847
8836
|
'dataset_name': ConjureFieldDefinition('datasetName', OptionalTypeWrapper[str]),
|
|
8848
8837
|
'dataset_description': ConjureFieldDefinition('datasetDescription', OptionalTypeWrapper[str]),
|
|
8849
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
8850
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
8838
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
8839
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
8851
8840
|
'channel_config': ConjureFieldDefinition('channelConfig', OptionalTypeWrapper[ingest_api_ChannelConfig])
|
|
8852
8841
|
}
|
|
8853
8842
|
|
|
@@ -8891,8 +8880,8 @@ class ingest_api_NewVideoIngestDestination(ConjureBeanType):
|
|
|
8891
8880
|
@builtins.classmethod
|
|
8892
8881
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
8893
8882
|
return {
|
|
8894
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
8895
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
8883
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
8884
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
8896
8885
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
8897
8886
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str])
|
|
8898
8887
|
}
|
|
@@ -9498,8 +9487,8 @@ class ingest_api_TriggerIngest(ConjureBeanType):
|
|
|
9498
9487
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
9499
9488
|
return {
|
|
9500
9489
|
'source': ConjureFieldDefinition('source', ingest_api_IngestSource),
|
|
9501
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
9502
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
9490
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
9491
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
9503
9492
|
'dataset_name': ConjureFieldDefinition('datasetName', OptionalTypeWrapper[str]),
|
|
9504
9493
|
'dataset_description': ConjureFieldDefinition('datasetDescription', OptionalTypeWrapper[str]),
|
|
9505
9494
|
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
|
@@ -11975,8 +11964,8 @@ class scout_asset_api_Asset(ConjureBeanType):
|
|
|
11975
11964
|
'rid': ConjureFieldDefinition('rid', scout_rids_api_AssetRid),
|
|
11976
11965
|
'title': ConjureFieldDefinition('title', str),
|
|
11977
11966
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
11978
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
11979
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
11967
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
11968
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
11980
11969
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
11981
11970
|
'data_scopes': ConjureFieldDefinition('dataScopes', List[scout_asset_api_AssetDataScope]),
|
|
11982
11971
|
'created_by': ConjureFieldDefinition('createdBy', OptionalTypeWrapper[str]),
|
|
@@ -12232,8 +12221,8 @@ class scout_asset_api_CreateAssetRequest(ConjureBeanType):
|
|
|
12232
12221
|
return {
|
|
12233
12222
|
'title': ConjureFieldDefinition('title', str),
|
|
12234
12223
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
12235
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
12236
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
12224
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
12225
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
12237
12226
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
12238
12227
|
'data_scopes': ConjureFieldDefinition('dataScopes', List[scout_asset_api_CreateAssetDataScope]),
|
|
12239
12228
|
'attachments': ConjureFieldDefinition('attachments', List[api_rids_AttachmentRid]),
|
|
@@ -12299,7 +12288,7 @@ class scout_asset_api_CreateTypeRequest(ConjureBeanType):
|
|
|
12299
12288
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12300
12289
|
return {
|
|
12301
12290
|
'name': ConjureFieldDefinition('name', str),
|
|
12302
|
-
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[
|
|
12291
|
+
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[api_PropertyName, scout_asset_api_PropertyConfig]),
|
|
12303
12292
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
12304
12293
|
'icon_name': ConjureFieldDefinition('iconName', OptionalTypeWrapper[str])
|
|
12305
12294
|
}
|
|
@@ -12461,7 +12450,7 @@ scout_asset_api_SearchAssetChannelsResponse.__module__ = "nominal_api.scout_asse
|
|
|
12461
12450
|
class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
12462
12451
|
_search_text: Optional[str] = None
|
|
12463
12452
|
_label: Optional[str] = None
|
|
12464
|
-
_property: Optional["
|
|
12453
|
+
_property: Optional["api_Property"] = None
|
|
12465
12454
|
_type_rid: Optional[str] = None
|
|
12466
12455
|
_and_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None
|
|
12467
12456
|
_or_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None
|
|
@@ -12471,8 +12460,8 @@ class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
|
12471
12460
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12472
12461
|
return {
|
|
12473
12462
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
12474
|
-
'label': ConjureFieldDefinition('label',
|
|
12475
|
-
'property': ConjureFieldDefinition('property',
|
|
12463
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
12464
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
12476
12465
|
'type_rid': ConjureFieldDefinition('typeRid', scout_rids_api_TypeRid),
|
|
12477
12466
|
'and_': ConjureFieldDefinition('and', List[scout_asset_api_SearchAssetsQuery]),
|
|
12478
12467
|
'or_': ConjureFieldDefinition('or', List[scout_asset_api_SearchAssetsQuery]),
|
|
@@ -12483,7 +12472,7 @@ class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
|
12483
12472
|
self,
|
|
12484
12473
|
search_text: Optional[str] = None,
|
|
12485
12474
|
label: Optional[str] = None,
|
|
12486
|
-
property: Optional["
|
|
12475
|
+
property: Optional["api_Property"] = None,
|
|
12487
12476
|
type_rid: Optional[str] = None,
|
|
12488
12477
|
and_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None,
|
|
12489
12478
|
or_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None,
|
|
@@ -12561,7 +12550,7 @@ class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
|
12561
12550
|
return self._label
|
|
12562
12551
|
|
|
12563
12552
|
@builtins.property
|
|
12564
|
-
def property(self) -> Optional["
|
|
12553
|
+
def property(self) -> Optional["api_Property"]:
|
|
12565
12554
|
return self._property
|
|
12566
12555
|
|
|
12567
12556
|
@builtins.property
|
|
@@ -12615,7 +12604,7 @@ class scout_asset_api_SearchAssetsQueryVisitor:
|
|
|
12615
12604
|
pass
|
|
12616
12605
|
|
|
12617
12606
|
@abstractmethod
|
|
12618
|
-
def _property(self, property: "
|
|
12607
|
+
def _property(self, property: "api_Property") -> Any:
|
|
12619
12608
|
pass
|
|
12620
12609
|
|
|
12621
12610
|
@abstractmethod
|
|
@@ -12649,12 +12638,12 @@ class scout_asset_api_SearchAssetsRequest(ConjureBeanType):
|
|
|
12649
12638
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
12650
12639
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
12651
12640
|
'query': ConjureFieldDefinition('query', scout_asset_api_SearchAssetsQuery),
|
|
12652
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
12641
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
12653
12642
|
}
|
|
12654
12643
|
|
|
12655
12644
|
__slots__: List[str] = ['_sort', '_page_size', '_next_page_token', '_query', '_archived_statuses']
|
|
12656
12645
|
|
|
12657
|
-
def __init__(self, query: "scout_asset_api_SearchAssetsQuery", sort: "scout_asset_api_SortOptions", archived_statuses: Optional[List["
|
|
12646
|
+
def __init__(self, query: "scout_asset_api_SearchAssetsQuery", sort: "scout_asset_api_SortOptions", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, next_page_token: Optional[str] = None, page_size: Optional[int] = None) -> None:
|
|
12658
12647
|
self._sort = sort
|
|
12659
12648
|
self._page_size = page_size
|
|
12660
12649
|
self._next_page_token = next_page_token
|
|
@@ -12681,7 +12670,7 @@ class scout_asset_api_SearchAssetsRequest(ConjureBeanType):
|
|
|
12681
12670
|
return self._query
|
|
12682
12671
|
|
|
12683
12672
|
@builtins.property
|
|
12684
|
-
def archived_statuses(self) -> Optional[List["
|
|
12673
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
12685
12674
|
"""
|
|
12686
12675
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived assets in search.
|
|
12687
12676
|
"""
|
|
@@ -12732,7 +12721,7 @@ class scout_asset_api_SearchTypesQuery(ConjureUnionType):
|
|
|
12732
12721
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12733
12722
|
return {
|
|
12734
12723
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
12735
|
-
'property': ConjureFieldDefinition('property',
|
|
12724
|
+
'property': ConjureFieldDefinition('property', api_PropertyName),
|
|
12736
12725
|
'and_': ConjureFieldDefinition('and', List[scout_asset_api_SearchTypesQuery]),
|
|
12737
12726
|
'or_': ConjureFieldDefinition('or', List[scout_asset_api_SearchTypesQuery])
|
|
12738
12727
|
}
|
|
@@ -12850,12 +12839,12 @@ class scout_asset_api_SearchTypesRequest(ConjureBeanType):
|
|
|
12850
12839
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
12851
12840
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
12852
12841
|
'query': ConjureFieldDefinition('query', scout_asset_api_SearchTypesQuery),
|
|
12853
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
12842
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
12854
12843
|
}
|
|
12855
12844
|
|
|
12856
12845
|
__slots__: List[str] = ['_sort', '_page_size', '_next_page_token', '_query', '_archived_statuses']
|
|
12857
12846
|
|
|
12858
|
-
def __init__(self, query: "scout_asset_api_SearchTypesQuery", sort: "scout_asset_api_SortOptions", archived_statuses: Optional[List["
|
|
12847
|
+
def __init__(self, query: "scout_asset_api_SearchTypesQuery", sort: "scout_asset_api_SortOptions", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, next_page_token: Optional[str] = None, page_size: Optional[int] = None) -> None:
|
|
12859
12848
|
self._sort = sort
|
|
12860
12849
|
self._page_size = page_size
|
|
12861
12850
|
self._next_page_token = next_page_token
|
|
@@ -12882,7 +12871,7 @@ class scout_asset_api_SearchTypesRequest(ConjureBeanType):
|
|
|
12882
12871
|
return self._query
|
|
12883
12872
|
|
|
12884
12873
|
@builtins.property
|
|
12885
|
-
def archived_statuses(self) -> Optional[List["
|
|
12874
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
12886
12875
|
"""
|
|
12887
12876
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived assets in search.
|
|
12888
12877
|
"""
|
|
@@ -12976,7 +12965,7 @@ class scout_asset_api_Type(ConjureBeanType):
|
|
|
12976
12965
|
'rid': ConjureFieldDefinition('rid', scout_rids_api_TypeRid),
|
|
12977
12966
|
'name': ConjureFieldDefinition('name', str),
|
|
12978
12967
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
12979
|
-
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[
|
|
12968
|
+
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[api_PropertyName, scout_asset_api_PropertyConfig]),
|
|
12980
12969
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
12981
12970
|
'icon_name': ConjureFieldDefinition('iconName', OptionalTypeWrapper[str])
|
|
12982
12971
|
}
|
|
@@ -13031,8 +13020,8 @@ class scout_asset_api_UpdateAssetRequest(ConjureBeanType):
|
|
|
13031
13020
|
return {
|
|
13032
13021
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
13033
13022
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
13034
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
13035
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
13023
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
13024
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
13036
13025
|
'links': ConjureFieldDefinition('links', OptionalTypeWrapper[List[scout_run_api_Link]]),
|
|
13037
13026
|
'data_scopes': ConjureFieldDefinition('dataScopes', OptionalTypeWrapper[List[scout_asset_api_CreateAssetDataScope]]),
|
|
13038
13027
|
'type': ConjureFieldDefinition('type', OptionalTypeWrapper[scout_asset_api_UpdateOrRemoveAssetType]),
|
|
@@ -13210,7 +13199,7 @@ specified in the request.
|
|
|
13210
13199
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
13211
13200
|
return {
|
|
13212
13201
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
13213
|
-
'property_configs': ConjureFieldDefinition('propertyConfigs', OptionalTypeWrapper[Dict[
|
|
13202
|
+
'property_configs': ConjureFieldDefinition('propertyConfigs', OptionalTypeWrapper[Dict[api_PropertyName, scout_asset_api_PropertyConfig]]),
|
|
13214
13203
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
13215
13204
|
'icon_name': ConjureFieldDefinition('iconName', OptionalTypeWrapper[str])
|
|
13216
13205
|
}
|
|
@@ -13842,8 +13831,8 @@ class scout_catalog_AllPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
13842
13831
|
@builtins.classmethod
|
|
13843
13832
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
13844
13833
|
return {
|
|
13845
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
13846
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
13834
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
13835
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
13847
13836
|
}
|
|
13848
13837
|
|
|
13849
13838
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -14753,8 +14742,8 @@ class scout_catalog_CreateDataset(ConjureBeanType):
|
|
|
14753
14742
|
'handle': ConjureFieldDefinition('handle', OptionalTypeWrapper[scout_catalog_Handle]),
|
|
14754
14743
|
'metadata': ConjureFieldDefinition('metadata', Dict[str, str]),
|
|
14755
14744
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_catalog_DatasetOriginMetadata),
|
|
14756
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
14757
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
14745
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
14746
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
14758
14747
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
14759
14748
|
'granularity': ConjureFieldDefinition('granularity', OptionalTypeWrapper[api_Granularity])
|
|
14760
14749
|
}
|
|
@@ -14867,8 +14856,8 @@ class scout_catalog_Dataset(ConjureBeanType):
|
|
|
14867
14856
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
14868
14857
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_catalog_DatasetOriginMetadata),
|
|
14869
14858
|
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_catalog_Bounds]),
|
|
14870
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
14871
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
14859
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
14860
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
14872
14861
|
'timestamp_type': ConjureFieldDefinition('timestampType', scout_catalog_WeakTimestampType)
|
|
14873
14862
|
}
|
|
14874
14863
|
|
|
@@ -15210,8 +15199,8 @@ class scout_catalog_EnrichedDataset(ConjureBeanType):
|
|
|
15210
15199
|
'source': ConjureFieldDefinition('source', OptionalTypeWrapper[str]),
|
|
15211
15200
|
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_catalog_Bounds]),
|
|
15212
15201
|
'timestamp_type': ConjureFieldDefinition('timestampType', scout_catalog_WeakTimestampType),
|
|
15213
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
15214
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
15202
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
15203
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
15215
15204
|
'granularity': ConjureFieldDefinition('granularity', api_Granularity)
|
|
15216
15205
|
}
|
|
15217
15206
|
|
|
@@ -16125,7 +16114,7 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16125
16114
|
_search_text: Optional[str] = None
|
|
16126
16115
|
_exact_match: Optional[str] = None
|
|
16127
16116
|
_label: Optional[str] = None
|
|
16128
|
-
_properties: Optional["
|
|
16117
|
+
_properties: Optional["api_Property"] = None
|
|
16129
16118
|
_ingest_status: Optional["scout_catalog_IngestStatus"] = None
|
|
16130
16119
|
_ingested_before_inclusive: Optional[str] = None
|
|
16131
16120
|
_ingested_after_inclusive: Optional[str] = None
|
|
@@ -16138,8 +16127,8 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16138
16127
|
return {
|
|
16139
16128
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
16140
16129
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
16141
|
-
'label': ConjureFieldDefinition('label',
|
|
16142
|
-
'properties': ConjureFieldDefinition('properties',
|
|
16130
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
16131
|
+
'properties': ConjureFieldDefinition('properties', api_Property),
|
|
16143
16132
|
'ingest_status': ConjureFieldDefinition('ingestStatus', scout_catalog_IngestStatus),
|
|
16144
16133
|
'ingested_before_inclusive': ConjureFieldDefinition('ingestedBeforeInclusive', str),
|
|
16145
16134
|
'ingested_after_inclusive': ConjureFieldDefinition('ingestedAfterInclusive', str),
|
|
@@ -16153,7 +16142,7 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16153
16142
|
search_text: Optional[str] = None,
|
|
16154
16143
|
exact_match: Optional[str] = None,
|
|
16155
16144
|
label: Optional[str] = None,
|
|
16156
|
-
properties: Optional["
|
|
16145
|
+
properties: Optional["api_Property"] = None,
|
|
16157
16146
|
ingest_status: Optional["scout_catalog_IngestStatus"] = None,
|
|
16158
16147
|
ingested_before_inclusive: Optional[str] = None,
|
|
16159
16148
|
ingested_after_inclusive: Optional[str] = None,
|
|
@@ -16264,7 +16253,7 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16264
16253
|
return self._label
|
|
16265
16254
|
|
|
16266
16255
|
@builtins.property
|
|
16267
|
-
def properties(self) -> Optional["
|
|
16256
|
+
def properties(self) -> Optional["api_Property"]:
|
|
16268
16257
|
return self._properties
|
|
16269
16258
|
|
|
16270
16259
|
@builtins.property
|
|
@@ -16336,7 +16325,7 @@ class scout_catalog_SearchDatasetsQueryVisitor:
|
|
|
16336
16325
|
pass
|
|
16337
16326
|
|
|
16338
16327
|
@abstractmethod
|
|
16339
|
-
def _properties(self, properties: "
|
|
16328
|
+
def _properties(self, properties: "api_Property") -> Any:
|
|
16340
16329
|
pass
|
|
16341
16330
|
|
|
16342
16331
|
@abstractmethod
|
|
@@ -16747,8 +16736,8 @@ class scout_catalog_UpdateDatasetMetadata(ConjureBeanType):
|
|
|
16747
16736
|
return {
|
|
16748
16737
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
16749
16738
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
16750
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
16751
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
16739
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
16740
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]])
|
|
16752
16741
|
}
|
|
16753
16742
|
|
|
16754
16743
|
__slots__: List[str] = ['_name', '_description', '_labels', '_properties']
|
|
@@ -22232,8 +22221,8 @@ class scout_checks_api_ChecklistMetadata(ConjureBeanType):
|
|
|
22232
22221
|
'title': ConjureFieldDefinition('title', str),
|
|
22233
22222
|
'description': ConjureFieldDefinition('description', str),
|
|
22234
22223
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
22235
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
22236
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
22224
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
22225
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
22237
22226
|
'last_used': ConjureFieldDefinition('lastUsed', OptionalTypeWrapper[str]),
|
|
22238
22227
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
22239
22228
|
'is_published': ConjureFieldDefinition('isPublished', bool)
|
|
@@ -22337,7 +22326,7 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22337
22326
|
_or_: Optional[List["scout_checks_api_ChecklistSearchQuery"]] = None
|
|
22338
22327
|
_search_text: Optional[str] = None
|
|
22339
22328
|
_label: Optional[str] = None
|
|
22340
|
-
_property: Optional["
|
|
22329
|
+
_property: Optional["api_Property"] = None
|
|
22341
22330
|
_author_rid: Optional[str] = None
|
|
22342
22331
|
_assignee_rid: Optional[str] = None
|
|
22343
22332
|
_is_published: Optional[bool] = None
|
|
@@ -22349,8 +22338,8 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22349
22338
|
'and_': ConjureFieldDefinition('and', List[scout_checks_api_ChecklistSearchQuery]),
|
|
22350
22339
|
'or_': ConjureFieldDefinition('or', List[scout_checks_api_ChecklistSearchQuery]),
|
|
22351
22340
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
22352
|
-
'label': ConjureFieldDefinition('label',
|
|
22353
|
-
'property': ConjureFieldDefinition('property',
|
|
22341
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
22342
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
22354
22343
|
'author_rid': ConjureFieldDefinition('authorRid', scout_rids_api_UserRid),
|
|
22355
22344
|
'assignee_rid': ConjureFieldDefinition('assigneeRid', scout_rids_api_UserRid),
|
|
22356
22345
|
'is_published': ConjureFieldDefinition('isPublished', bool),
|
|
@@ -22363,7 +22352,7 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22363
22352
|
or_: Optional[List["scout_checks_api_ChecklistSearchQuery"]] = None,
|
|
22364
22353
|
search_text: Optional[str] = None,
|
|
22365
22354
|
label: Optional[str] = None,
|
|
22366
|
-
property: Optional["
|
|
22355
|
+
property: Optional["api_Property"] = None,
|
|
22367
22356
|
author_rid: Optional[str] = None,
|
|
22368
22357
|
assignee_rid: Optional[str] = None,
|
|
22369
22358
|
is_published: Optional[bool] = None,
|
|
@@ -22465,7 +22454,7 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22465
22454
|
return self._label
|
|
22466
22455
|
|
|
22467
22456
|
@builtins.property
|
|
22468
|
-
def property(self) -> Optional["
|
|
22457
|
+
def property(self) -> Optional["api_Property"]:
|
|
22469
22458
|
return self._property
|
|
22470
22459
|
|
|
22471
22460
|
@builtins.property
|
|
@@ -22531,7 +22520,7 @@ class scout_checks_api_ChecklistSearchQueryVisitor:
|
|
|
22531
22520
|
pass
|
|
22532
22521
|
|
|
22533
22522
|
@abstractmethod
|
|
22534
|
-
def _property(self, property: "
|
|
22523
|
+
def _property(self, property: "api_Property") -> Any:
|
|
22535
22524
|
pass
|
|
22536
22525
|
|
|
22537
22526
|
@abstractmethod
|
|
@@ -23364,8 +23353,8 @@ class scout_checks_api_CreateChecklistRequest(ConjureBeanType):
|
|
|
23364
23353
|
'description': ConjureFieldDefinition('description', str),
|
|
23365
23354
|
'functions': ConjureFieldDefinition('functions', Dict[scout_compute_api_FunctionReference, scout_checks_api_CreateFunctionRequest]),
|
|
23366
23355
|
'checks': ConjureFieldDefinition('checks', List[scout_checks_api_CreateChecklistEntryRequest]),
|
|
23367
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
23368
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
23356
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
23357
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
23369
23358
|
'checklist_variables': ConjureFieldDefinition('checklistVariables', List[scout_checks_api_UnresolvedChecklistVariable]),
|
|
23370
23359
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool])
|
|
23371
23360
|
}
|
|
@@ -23752,8 +23741,8 @@ class scout_checks_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
23752
23741
|
@builtins.classmethod
|
|
23753
23742
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23754
23743
|
return {
|
|
23755
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
23756
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
23744
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
23745
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
23757
23746
|
}
|
|
23758
23747
|
|
|
23759
23748
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -24401,12 +24390,12 @@ class scout_checks_api_SearchChecklistsRequest(ConjureBeanType):
|
|
|
24401
24390
|
'sort_by': ConjureFieldDefinition('sortBy', OptionalTypeWrapper[scout_checks_api_SortOptions]),
|
|
24402
24391
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
24403
24392
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
24404
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
24393
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
24405
24394
|
}
|
|
24406
24395
|
|
|
24407
24396
|
__slots__: List[str] = ['_query', '_sort_by', '_next_page_token', '_page_size', '_archived_statuses']
|
|
24408
24397
|
|
|
24409
|
-
def __init__(self, query: "scout_checks_api_ChecklistSearchQuery", archived_statuses: Optional[List["
|
|
24398
|
+
def __init__(self, query: "scout_checks_api_ChecklistSearchQuery", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, next_page_token: Optional[str] = None, page_size: Optional[int] = None, sort_by: Optional["scout_checks_api_SortOptions"] = None) -> None:
|
|
24410
24399
|
self._query = query
|
|
24411
24400
|
self._sort_by = sort_by
|
|
24412
24401
|
self._next_page_token = next_page_token
|
|
@@ -24436,7 +24425,7 @@ class scout_checks_api_SearchChecklistsRequest(ConjureBeanType):
|
|
|
24436
24425
|
return self._page_size
|
|
24437
24426
|
|
|
24438
24427
|
@builtins.property
|
|
24439
|
-
def archived_statuses(self) -> Optional[List["
|
|
24428
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
24440
24429
|
"""
|
|
24441
24430
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived checklists in search.
|
|
24442
24431
|
"""
|
|
@@ -25172,8 +25161,8 @@ class scout_checks_api_UpdateChecklistMetadataRequest(ConjureBeanType):
|
|
|
25172
25161
|
'assignee_rid': ConjureFieldDefinition('assigneeRid', OptionalTypeWrapper[scout_rids_api_UserRid]),
|
|
25173
25162
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
25174
25163
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
25175
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
25176
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
25164
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
25165
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
25177
25166
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool])
|
|
25178
25167
|
}
|
|
25179
25168
|
|
|
@@ -27494,6 +27483,74 @@ scout_compute_api_AllowNegativeValues.__qualname__ = "AllowNegativeValues"
|
|
|
27494
27483
|
scout_compute_api_AllowNegativeValues.__module__ = "nominal_api.scout_compute_api"
|
|
27495
27484
|
|
|
27496
27485
|
|
|
27486
|
+
class scout_compute_api_ApproximateThresholdOperator(ConjureEnumType):
|
|
27487
|
+
|
|
27488
|
+
EQUAL_TO = 'EQUAL_TO'
|
|
27489
|
+
'''EQUAL_TO'''
|
|
27490
|
+
NOT_EQUAL_TO = 'NOT_EQUAL_TO'
|
|
27491
|
+
'''NOT_EQUAL_TO'''
|
|
27492
|
+
UNKNOWN = 'UNKNOWN'
|
|
27493
|
+
'''UNKNOWN'''
|
|
27494
|
+
|
|
27495
|
+
def __reduce_ex__(self, proto):
|
|
27496
|
+
return self.__class__, (self.name,)
|
|
27497
|
+
|
|
27498
|
+
|
|
27499
|
+
scout_compute_api_ApproximateThresholdOperator.__name__ = "ApproximateThresholdOperator"
|
|
27500
|
+
scout_compute_api_ApproximateThresholdOperator.__qualname__ = "ApproximateThresholdOperator"
|
|
27501
|
+
scout_compute_api_ApproximateThresholdOperator.__module__ = "nominal_api.scout_compute_api"
|
|
27502
|
+
|
|
27503
|
+
|
|
27504
|
+
class scout_compute_api_ApproximateThresholdRanges(ConjureBeanType):
|
|
27505
|
+
"""
|
|
27506
|
+
Produces a list of ranges for which the threshold condition is satisfied.
|
|
27507
|
+
"""
|
|
27508
|
+
|
|
27509
|
+
@builtins.classmethod
|
|
27510
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
27511
|
+
return {
|
|
27512
|
+
'input': ConjureFieldDefinition('input', scout_compute_api_NumericSeries),
|
|
27513
|
+
'threshold': ConjureFieldDefinition('threshold', scout_compute_api_DoubleConstant),
|
|
27514
|
+
'tolerance': ConjureFieldDefinition('tolerance', scout_compute_api_DoubleConstant),
|
|
27515
|
+
'operator': ConjureFieldDefinition('operator', scout_compute_api_ApproximateThresholdOperator),
|
|
27516
|
+
'persistence_window_configuration': ConjureFieldDefinition('persistenceWindowConfiguration', OptionalTypeWrapper[scout_compute_api_PersistenceWindowConfiguration])
|
|
27517
|
+
}
|
|
27518
|
+
|
|
27519
|
+
__slots__: List[str] = ['_input', '_threshold', '_tolerance', '_operator', '_persistence_window_configuration']
|
|
27520
|
+
|
|
27521
|
+
def __init__(self, input: "scout_compute_api_NumericSeries", operator: "scout_compute_api_ApproximateThresholdOperator", threshold: "scout_compute_api_DoubleConstant", tolerance: "scout_compute_api_DoubleConstant", persistence_window_configuration: Optional["scout_compute_api_PersistenceWindowConfiguration"] = None) -> None:
|
|
27522
|
+
self._input = input
|
|
27523
|
+
self._threshold = threshold
|
|
27524
|
+
self._tolerance = tolerance
|
|
27525
|
+
self._operator = operator
|
|
27526
|
+
self._persistence_window_configuration = persistence_window_configuration
|
|
27527
|
+
|
|
27528
|
+
@builtins.property
|
|
27529
|
+
def input(self) -> "scout_compute_api_NumericSeries":
|
|
27530
|
+
return self._input
|
|
27531
|
+
|
|
27532
|
+
@builtins.property
|
|
27533
|
+
def threshold(self) -> "scout_compute_api_DoubleConstant":
|
|
27534
|
+
return self._threshold
|
|
27535
|
+
|
|
27536
|
+
@builtins.property
|
|
27537
|
+
def tolerance(self) -> "scout_compute_api_DoubleConstant":
|
|
27538
|
+
return self._tolerance
|
|
27539
|
+
|
|
27540
|
+
@builtins.property
|
|
27541
|
+
def operator(self) -> "scout_compute_api_ApproximateThresholdOperator":
|
|
27542
|
+
return self._operator
|
|
27543
|
+
|
|
27544
|
+
@builtins.property
|
|
27545
|
+
def persistence_window_configuration(self) -> Optional["scout_compute_api_PersistenceWindowConfiguration"]:
|
|
27546
|
+
return self._persistence_window_configuration
|
|
27547
|
+
|
|
27548
|
+
|
|
27549
|
+
scout_compute_api_ApproximateThresholdRanges.__name__ = "ApproximateThresholdRanges"
|
|
27550
|
+
scout_compute_api_ApproximateThresholdRanges.__qualname__ = "ApproximateThresholdRanges"
|
|
27551
|
+
scout_compute_api_ApproximateThresholdRanges.__module__ = "nominal_api.scout_compute_api"
|
|
27552
|
+
|
|
27553
|
+
|
|
27497
27554
|
class scout_compute_api_ArithmeticSeries(ConjureBeanType):
|
|
27498
27555
|
|
|
27499
27556
|
@builtins.classmethod
|
|
@@ -30237,6 +30294,32 @@ scout_compute_api_EnumBucket.__qualname__ = "EnumBucket"
|
|
|
30237
30294
|
scout_compute_api_EnumBucket.__module__ = "nominal_api.scout_compute_api"
|
|
30238
30295
|
|
|
30239
30296
|
|
|
30297
|
+
class scout_compute_api_EnumCountDuplicateSeries(ConjureBeanType):
|
|
30298
|
+
"""
|
|
30299
|
+
Counts the number of points along each timestamp in the input series.
|
|
30300
|
+
"""
|
|
30301
|
+
|
|
30302
|
+
@builtins.classmethod
|
|
30303
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
30304
|
+
return {
|
|
30305
|
+
'inputs': ConjureFieldDefinition('inputs', List[scout_compute_api_EnumSeries])
|
|
30306
|
+
}
|
|
30307
|
+
|
|
30308
|
+
__slots__: List[str] = ['_inputs']
|
|
30309
|
+
|
|
30310
|
+
def __init__(self, inputs: List["scout_compute_api_EnumSeries"]) -> None:
|
|
30311
|
+
self._inputs = inputs
|
|
30312
|
+
|
|
30313
|
+
@builtins.property
|
|
30314
|
+
def inputs(self) -> List["scout_compute_api_EnumSeries"]:
|
|
30315
|
+
return self._inputs
|
|
30316
|
+
|
|
30317
|
+
|
|
30318
|
+
scout_compute_api_EnumCountDuplicateSeries.__name__ = "EnumCountDuplicateSeries"
|
|
30319
|
+
scout_compute_api_EnumCountDuplicateSeries.__qualname__ = "EnumCountDuplicateSeries"
|
|
30320
|
+
scout_compute_api_EnumCountDuplicateSeries.__module__ = "nominal_api.scout_compute_api"
|
|
30321
|
+
|
|
30322
|
+
|
|
30240
30323
|
class scout_compute_api_EnumFilterOperator(ConjureEnumType):
|
|
30241
30324
|
|
|
30242
30325
|
IS_IN = 'IS_IN'
|
|
@@ -32884,6 +32967,8 @@ class scout_compute_api_NumericAggregationFunction(ConjureEnumType):
|
|
|
32884
32967
|
'''MIN'''
|
|
32885
32968
|
MAX = 'MAX'
|
|
32886
32969
|
'''MAX'''
|
|
32970
|
+
COUNT = 'COUNT'
|
|
32971
|
+
'''COUNT'''
|
|
32887
32972
|
UNKNOWN = 'UNKNOWN'
|
|
32888
32973
|
'''UNKNOWN'''
|
|
32889
32974
|
|
|
@@ -32896,6 +32981,50 @@ scout_compute_api_NumericAggregationFunction.__qualname__ = "NumericAggregationF
|
|
|
32896
32981
|
scout_compute_api_NumericAggregationFunction.__module__ = "nominal_api.scout_compute_api"
|
|
32897
32982
|
|
|
32898
32983
|
|
|
32984
|
+
class scout_compute_api_NumericApproximateFilterSeries(ConjureBeanType):
|
|
32985
|
+
"""
|
|
32986
|
+
Outputs the values of the numeric plot value that are approximately equal to the threshold value.
|
|
32987
|
+
"""
|
|
32988
|
+
|
|
32989
|
+
@builtins.classmethod
|
|
32990
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
32991
|
+
return {
|
|
32992
|
+
'input': ConjureFieldDefinition('input', scout_compute_api_NumericSeries),
|
|
32993
|
+
'threshold': ConjureFieldDefinition('threshold', scout_compute_api_DoubleConstant),
|
|
32994
|
+
'tolerance': ConjureFieldDefinition('tolerance', scout_compute_api_DoubleConstant),
|
|
32995
|
+
'operator': ConjureFieldDefinition('operator', scout_compute_api_ApproximateThresholdOperator)
|
|
32996
|
+
}
|
|
32997
|
+
|
|
32998
|
+
__slots__: List[str] = ['_input', '_threshold', '_tolerance', '_operator']
|
|
32999
|
+
|
|
33000
|
+
def __init__(self, input: "scout_compute_api_NumericSeries", operator: "scout_compute_api_ApproximateThresholdOperator", threshold: "scout_compute_api_DoubleConstant", tolerance: "scout_compute_api_DoubleConstant") -> None:
|
|
33001
|
+
self._input = input
|
|
33002
|
+
self._threshold = threshold
|
|
33003
|
+
self._tolerance = tolerance
|
|
33004
|
+
self._operator = operator
|
|
33005
|
+
|
|
33006
|
+
@builtins.property
|
|
33007
|
+
def input(self) -> "scout_compute_api_NumericSeries":
|
|
33008
|
+
return self._input
|
|
33009
|
+
|
|
33010
|
+
@builtins.property
|
|
33011
|
+
def threshold(self) -> "scout_compute_api_DoubleConstant":
|
|
33012
|
+
return self._threshold
|
|
33013
|
+
|
|
33014
|
+
@builtins.property
|
|
33015
|
+
def tolerance(self) -> "scout_compute_api_DoubleConstant":
|
|
33016
|
+
return self._tolerance
|
|
33017
|
+
|
|
33018
|
+
@builtins.property
|
|
33019
|
+
def operator(self) -> "scout_compute_api_ApproximateThresholdOperator":
|
|
33020
|
+
return self._operator
|
|
33021
|
+
|
|
33022
|
+
|
|
33023
|
+
scout_compute_api_NumericApproximateFilterSeries.__name__ = "NumericApproximateFilterSeries"
|
|
33024
|
+
scout_compute_api_NumericApproximateFilterSeries.__qualname__ = "NumericApproximateFilterSeries"
|
|
33025
|
+
scout_compute_api_NumericApproximateFilterSeries.__module__ = "nominal_api.scout_compute_api"
|
|
33026
|
+
|
|
33027
|
+
|
|
32899
33028
|
class scout_compute_api_NumericBucket(ConjureBeanType):
|
|
32900
33029
|
|
|
32901
33030
|
@builtins.classmethod
|
|
@@ -33314,6 +33443,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33314
33443
|
_aggregate: Optional["scout_compute_api_AggregateNumericSeries"] = None
|
|
33315
33444
|
_arithmetic: Optional["scout_compute_api_ArithmeticSeries"] = None
|
|
33316
33445
|
_bit_operation: Optional["scout_compute_api_BitOperationSeries"] = None
|
|
33446
|
+
_count_duplicate: Optional["scout_compute_api_EnumCountDuplicateSeries"] = None
|
|
33317
33447
|
_cumulative_sum: Optional["scout_compute_api_CumulativeSumSeries"] = None
|
|
33318
33448
|
_derivative: Optional["scout_compute_api_DerivativeSeries"] = None
|
|
33319
33449
|
_function: Optional["scout_compute_api_NumericSeriesFunction"] = None
|
|
@@ -33340,6 +33470,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33340
33470
|
_value_difference: Optional["scout_compute_api_ValueDifferenceSeries"] = None
|
|
33341
33471
|
_filter_transformation: Optional["scout_compute_api_NumericFilterTransformationSeries"] = None
|
|
33342
33472
|
_threshold_filter: Optional["scout_compute_api_NumericThresholdFilterSeries"] = None
|
|
33473
|
+
_approximate_filter: Optional["scout_compute_api_NumericApproximateFilterSeries"] = None
|
|
33343
33474
|
|
|
33344
33475
|
@builtins.classmethod
|
|
33345
33476
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -33347,6 +33478,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33347
33478
|
'aggregate': ConjureFieldDefinition('aggregate', scout_compute_api_AggregateNumericSeries),
|
|
33348
33479
|
'arithmetic': ConjureFieldDefinition('arithmetic', scout_compute_api_ArithmeticSeries),
|
|
33349
33480
|
'bit_operation': ConjureFieldDefinition('bitOperation', scout_compute_api_BitOperationSeries),
|
|
33481
|
+
'count_duplicate': ConjureFieldDefinition('countDuplicate', scout_compute_api_EnumCountDuplicateSeries),
|
|
33350
33482
|
'cumulative_sum': ConjureFieldDefinition('cumulativeSum', scout_compute_api_CumulativeSumSeries),
|
|
33351
33483
|
'derivative': ConjureFieldDefinition('derivative', scout_compute_api_DerivativeSeries),
|
|
33352
33484
|
'function': ConjureFieldDefinition('function', scout_compute_api_NumericSeriesFunction),
|
|
@@ -33372,7 +33504,8 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33372
33504
|
'unit_conversion': ConjureFieldDefinition('unitConversion', scout_compute_api_UnitConversionSeries),
|
|
33373
33505
|
'value_difference': ConjureFieldDefinition('valueDifference', scout_compute_api_ValueDifferenceSeries),
|
|
33374
33506
|
'filter_transformation': ConjureFieldDefinition('filterTransformation', scout_compute_api_NumericFilterTransformationSeries),
|
|
33375
|
-
'threshold_filter': ConjureFieldDefinition('thresholdFilter', scout_compute_api_NumericThresholdFilterSeries)
|
|
33507
|
+
'threshold_filter': ConjureFieldDefinition('thresholdFilter', scout_compute_api_NumericThresholdFilterSeries),
|
|
33508
|
+
'approximate_filter': ConjureFieldDefinition('approximateFilter', scout_compute_api_NumericApproximateFilterSeries)
|
|
33376
33509
|
}
|
|
33377
33510
|
|
|
33378
33511
|
def __init__(
|
|
@@ -33380,6 +33513,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33380
33513
|
aggregate: Optional["scout_compute_api_AggregateNumericSeries"] = None,
|
|
33381
33514
|
arithmetic: Optional["scout_compute_api_ArithmeticSeries"] = None,
|
|
33382
33515
|
bit_operation: Optional["scout_compute_api_BitOperationSeries"] = None,
|
|
33516
|
+
count_duplicate: Optional["scout_compute_api_EnumCountDuplicateSeries"] = None,
|
|
33383
33517
|
cumulative_sum: Optional["scout_compute_api_CumulativeSumSeries"] = None,
|
|
33384
33518
|
derivative: Optional["scout_compute_api_DerivativeSeries"] = None,
|
|
33385
33519
|
function: Optional["scout_compute_api_NumericSeriesFunction"] = None,
|
|
@@ -33406,10 +33540,11 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33406
33540
|
value_difference: Optional["scout_compute_api_ValueDifferenceSeries"] = None,
|
|
33407
33541
|
filter_transformation: Optional["scout_compute_api_NumericFilterTransformationSeries"] = None,
|
|
33408
33542
|
threshold_filter: Optional["scout_compute_api_NumericThresholdFilterSeries"] = None,
|
|
33543
|
+
approximate_filter: Optional["scout_compute_api_NumericApproximateFilterSeries"] = None,
|
|
33409
33544
|
type_of_union: Optional[str] = None
|
|
33410
33545
|
) -> None:
|
|
33411
33546
|
if type_of_union is None:
|
|
33412
|
-
if (aggregate is not None) + (arithmetic is not None) + (bit_operation is not None) + (cumulative_sum is not None) + (derivative is not None) + (function is not None) + (integral is not None) + (max is not None) + (mean is not None) + (min is not None) + (offset is not None) + (product is not None) + (raw is not None) + (channel is not None) + (resample is not None) + (rolling_operation is not None) + (signal_filter is not None) + (sum is not None) + (scale is not None) + (time_difference is not None) + (time_range_filter is not None) + (time_shift is not None) + (unary_arithmetic is not None) + (binary_arithmetic is not None) + (union is not None) + (unit_conversion is not None) + (value_difference is not None) + (filter_transformation is not None) + (threshold_filter is not None) != 1:
|
|
33547
|
+
if (aggregate is not None) + (arithmetic is not None) + (bit_operation is not None) + (count_duplicate is not None) + (cumulative_sum is not None) + (derivative is not None) + (function is not None) + (integral is not None) + (max is not None) + (mean is not None) + (min is not None) + (offset is not None) + (product is not None) + (raw is not None) + (channel is not None) + (resample is not None) + (rolling_operation is not None) + (signal_filter is not None) + (sum is not None) + (scale is not None) + (time_difference is not None) + (time_range_filter is not None) + (time_shift is not None) + (unary_arithmetic is not None) + (binary_arithmetic is not None) + (union is not None) + (unit_conversion is not None) + (value_difference is not None) + (filter_transformation is not None) + (threshold_filter is not None) + (approximate_filter is not None) != 1:
|
|
33413
33548
|
raise ValueError('a union must contain a single member')
|
|
33414
33549
|
|
|
33415
33550
|
if aggregate is not None:
|
|
@@ -33421,6 +33556,9 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33421
33556
|
if bit_operation is not None:
|
|
33422
33557
|
self._bit_operation = bit_operation
|
|
33423
33558
|
self._type = 'bitOperation'
|
|
33559
|
+
if count_duplicate is not None:
|
|
33560
|
+
self._count_duplicate = count_duplicate
|
|
33561
|
+
self._type = 'countDuplicate'
|
|
33424
33562
|
if cumulative_sum is not None:
|
|
33425
33563
|
self._cumulative_sum = cumulative_sum
|
|
33426
33564
|
self._type = 'cumulativeSum'
|
|
@@ -33499,6 +33637,9 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33499
33637
|
if threshold_filter is not None:
|
|
33500
33638
|
self._threshold_filter = threshold_filter
|
|
33501
33639
|
self._type = 'thresholdFilter'
|
|
33640
|
+
if approximate_filter is not None:
|
|
33641
|
+
self._approximate_filter = approximate_filter
|
|
33642
|
+
self._type = 'approximateFilter'
|
|
33502
33643
|
|
|
33503
33644
|
elif type_of_union == 'aggregate':
|
|
33504
33645
|
if aggregate is None:
|
|
@@ -33515,6 +33656,11 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33515
33656
|
raise ValueError('a union value must not be None')
|
|
33516
33657
|
self._bit_operation = bit_operation
|
|
33517
33658
|
self._type = 'bitOperation'
|
|
33659
|
+
elif type_of_union == 'countDuplicate':
|
|
33660
|
+
if count_duplicate is None:
|
|
33661
|
+
raise ValueError('a union value must not be None')
|
|
33662
|
+
self._count_duplicate = count_duplicate
|
|
33663
|
+
self._type = 'countDuplicate'
|
|
33518
33664
|
elif type_of_union == 'cumulativeSum':
|
|
33519
33665
|
if cumulative_sum is None:
|
|
33520
33666
|
raise ValueError('a union value must not be None')
|
|
@@ -33645,6 +33791,11 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33645
33791
|
raise ValueError('a union value must not be None')
|
|
33646
33792
|
self._threshold_filter = threshold_filter
|
|
33647
33793
|
self._type = 'thresholdFilter'
|
|
33794
|
+
elif type_of_union == 'approximateFilter':
|
|
33795
|
+
if approximate_filter is None:
|
|
33796
|
+
raise ValueError('a union value must not be None')
|
|
33797
|
+
self._approximate_filter = approximate_filter
|
|
33798
|
+
self._type = 'approximateFilter'
|
|
33648
33799
|
|
|
33649
33800
|
@builtins.property
|
|
33650
33801
|
def aggregate(self) -> Optional["scout_compute_api_AggregateNumericSeries"]:
|
|
@@ -33658,6 +33809,10 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33658
33809
|
def bit_operation(self) -> Optional["scout_compute_api_BitOperationSeries"]:
|
|
33659
33810
|
return self._bit_operation
|
|
33660
33811
|
|
|
33812
|
+
@builtins.property
|
|
33813
|
+
def count_duplicate(self) -> Optional["scout_compute_api_EnumCountDuplicateSeries"]:
|
|
33814
|
+
return self._count_duplicate
|
|
33815
|
+
|
|
33661
33816
|
@builtins.property
|
|
33662
33817
|
def cumulative_sum(self) -> Optional["scout_compute_api_CumulativeSumSeries"]:
|
|
33663
33818
|
return self._cumulative_sum
|
|
@@ -33762,6 +33917,10 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33762
33917
|
def threshold_filter(self) -> Optional["scout_compute_api_NumericThresholdFilterSeries"]:
|
|
33763
33918
|
return self._threshold_filter
|
|
33764
33919
|
|
|
33920
|
+
@builtins.property
|
|
33921
|
+
def approximate_filter(self) -> Optional["scout_compute_api_NumericApproximateFilterSeries"]:
|
|
33922
|
+
return self._approximate_filter
|
|
33923
|
+
|
|
33765
33924
|
def accept(self, visitor) -> Any:
|
|
33766
33925
|
if not isinstance(visitor, scout_compute_api_NumericSeriesVisitor):
|
|
33767
33926
|
raise ValueError('{} is not an instance of scout_compute_api_NumericSeriesVisitor'.format(visitor.__class__.__name__))
|
|
@@ -33771,6 +33930,8 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33771
33930
|
return visitor._arithmetic(self.arithmetic)
|
|
33772
33931
|
if self._type == 'bitOperation' and self.bit_operation is not None:
|
|
33773
33932
|
return visitor._bit_operation(self.bit_operation)
|
|
33933
|
+
if self._type == 'countDuplicate' and self.count_duplicate is not None:
|
|
33934
|
+
return visitor._count_duplicate(self.count_duplicate)
|
|
33774
33935
|
if self._type == 'cumulativeSum' and self.cumulative_sum is not None:
|
|
33775
33936
|
return visitor._cumulative_sum(self.cumulative_sum)
|
|
33776
33937
|
if self._type == 'derivative' and self.derivative is not None:
|
|
@@ -33823,6 +33984,8 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33823
33984
|
return visitor._filter_transformation(self.filter_transformation)
|
|
33824
33985
|
if self._type == 'thresholdFilter' and self.threshold_filter is not None:
|
|
33825
33986
|
return visitor._threshold_filter(self.threshold_filter)
|
|
33987
|
+
if self._type == 'approximateFilter' and self.approximate_filter is not None:
|
|
33988
|
+
return visitor._approximate_filter(self.approximate_filter)
|
|
33826
33989
|
|
|
33827
33990
|
|
|
33828
33991
|
scout_compute_api_NumericSeries.__name__ = "NumericSeries"
|
|
@@ -33844,6 +34007,10 @@ class scout_compute_api_NumericSeriesVisitor:
|
|
|
33844
34007
|
def _bit_operation(self, bit_operation: "scout_compute_api_BitOperationSeries") -> Any:
|
|
33845
34008
|
pass
|
|
33846
34009
|
|
|
34010
|
+
@abstractmethod
|
|
34011
|
+
def _count_duplicate(self, count_duplicate: "scout_compute_api_EnumCountDuplicateSeries") -> Any:
|
|
34012
|
+
pass
|
|
34013
|
+
|
|
33847
34014
|
@abstractmethod
|
|
33848
34015
|
def _cumulative_sum(self, cumulative_sum: "scout_compute_api_CumulativeSumSeries") -> Any:
|
|
33849
34016
|
pass
|
|
@@ -33948,6 +34115,10 @@ class scout_compute_api_NumericSeriesVisitor:
|
|
|
33948
34115
|
def _threshold_filter(self, threshold_filter: "scout_compute_api_NumericThresholdFilterSeries") -> Any:
|
|
33949
34116
|
pass
|
|
33950
34117
|
|
|
34118
|
+
@abstractmethod
|
|
34119
|
+
def _approximate_filter(self, approximate_filter: "scout_compute_api_NumericApproximateFilterSeries") -> Any:
|
|
34120
|
+
pass
|
|
34121
|
+
|
|
33951
34122
|
|
|
33952
34123
|
scout_compute_api_NumericSeriesVisitor.__name__ = "NumericSeriesVisitor"
|
|
33953
34124
|
scout_compute_api_NumericSeriesVisitor.__qualname__ = "NumericSeriesVisitor"
|
|
@@ -34113,6 +34284,8 @@ class scout_compute_api_NumericUnionOperation(ConjureEnumType):
|
|
|
34113
34284
|
'''MEAN'''
|
|
34114
34285
|
SUM = 'SUM'
|
|
34115
34286
|
'''SUM'''
|
|
34287
|
+
COUNT = 'COUNT'
|
|
34288
|
+
'''COUNT'''
|
|
34116
34289
|
THROW = 'THROW'
|
|
34117
34290
|
'''THROW'''
|
|
34118
34291
|
UNKNOWN = 'UNKNOWN'
|
|
@@ -34870,6 +35043,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
34870
35043
|
_intersect_range: Optional["scout_compute_api_IntersectRanges"] = None
|
|
34871
35044
|
_not_: Optional["scout_compute_api_NotRanges"] = None
|
|
34872
35045
|
_on_change: Optional["scout_compute_api_OnChangeRanges"] = None
|
|
35046
|
+
_approximate_threshold: Optional["scout_compute_api_ApproximateThresholdRanges"] = None
|
|
34873
35047
|
_min_max_threshold: Optional["scout_compute_api_MinMaxThresholdRanges"] = None
|
|
34874
35048
|
_peak: Optional["scout_compute_api_PeakRanges"] = None
|
|
34875
35049
|
_raw: Optional["scout_compute_api_Reference"] = None
|
|
@@ -34890,6 +35064,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
34890
35064
|
'intersect_range': ConjureFieldDefinition('intersectRange', scout_compute_api_IntersectRanges),
|
|
34891
35065
|
'not_': ConjureFieldDefinition('not', scout_compute_api_NotRanges),
|
|
34892
35066
|
'on_change': ConjureFieldDefinition('onChange', scout_compute_api_OnChangeRanges),
|
|
35067
|
+
'approximate_threshold': ConjureFieldDefinition('approximateThreshold', scout_compute_api_ApproximateThresholdRanges),
|
|
34893
35068
|
'min_max_threshold': ConjureFieldDefinition('minMaxThreshold', scout_compute_api_MinMaxThresholdRanges),
|
|
34894
35069
|
'peak': ConjureFieldDefinition('peak', scout_compute_api_PeakRanges),
|
|
34895
35070
|
'raw': ConjureFieldDefinition('raw', scout_compute_api_Reference),
|
|
@@ -34910,6 +35085,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
34910
35085
|
intersect_range: Optional["scout_compute_api_IntersectRanges"] = None,
|
|
34911
35086
|
not_: Optional["scout_compute_api_NotRanges"] = None,
|
|
34912
35087
|
on_change: Optional["scout_compute_api_OnChangeRanges"] = None,
|
|
35088
|
+
approximate_threshold: Optional["scout_compute_api_ApproximateThresholdRanges"] = None,
|
|
34913
35089
|
min_max_threshold: Optional["scout_compute_api_MinMaxThresholdRanges"] = None,
|
|
34914
35090
|
peak: Optional["scout_compute_api_PeakRanges"] = None,
|
|
34915
35091
|
raw: Optional["scout_compute_api_Reference"] = None,
|
|
@@ -34924,7 +35100,7 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
34924
35100
|
type_of_union: Optional[str] = None
|
|
34925
35101
|
) -> None:
|
|
34926
35102
|
if type_of_union is None:
|
|
34927
|
-
if (enum_filter is not None) + (function is not None) + (intersect_range is not None) + (not_ is not None) + (on_change is not None) + (min_max_threshold is not None) + (peak is not None) + (raw is not None) + (series_crossover_ranges_node is not None) + (series_equality_ranges_node is not None) + (enum_series_equality_ranges_node is not None) + (stale_range is not None) + (threshold is not None) + (union_range is not None) + (range_numeric_aggregation is not None) + (stability_detection is not None) != 1:
|
|
35103
|
+
if (enum_filter is not None) + (function is not None) + (intersect_range is not None) + (not_ is not None) + (on_change is not None) + (approximate_threshold is not None) + (min_max_threshold is not None) + (peak is not None) + (raw is not None) + (series_crossover_ranges_node is not None) + (series_equality_ranges_node is not None) + (enum_series_equality_ranges_node is not None) + (stale_range is not None) + (threshold is not None) + (union_range is not None) + (range_numeric_aggregation is not None) + (stability_detection is not None) != 1:
|
|
34928
35104
|
raise ValueError('a union must contain a single member')
|
|
34929
35105
|
|
|
34930
35106
|
if enum_filter is not None:
|
|
@@ -34942,6 +35118,9 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
34942
35118
|
if on_change is not None:
|
|
34943
35119
|
self._on_change = on_change
|
|
34944
35120
|
self._type = 'onChange'
|
|
35121
|
+
if approximate_threshold is not None:
|
|
35122
|
+
self._approximate_threshold = approximate_threshold
|
|
35123
|
+
self._type = 'approximateThreshold'
|
|
34945
35124
|
if min_max_threshold is not None:
|
|
34946
35125
|
self._min_max_threshold = min_max_threshold
|
|
34947
35126
|
self._type = 'minMaxThreshold'
|
|
@@ -35001,6 +35180,11 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
35001
35180
|
raise ValueError('a union value must not be None')
|
|
35002
35181
|
self._on_change = on_change
|
|
35003
35182
|
self._type = 'onChange'
|
|
35183
|
+
elif type_of_union == 'approximateThreshold':
|
|
35184
|
+
if approximate_threshold is None:
|
|
35185
|
+
raise ValueError('a union value must not be None')
|
|
35186
|
+
self._approximate_threshold = approximate_threshold
|
|
35187
|
+
self._type = 'approximateThreshold'
|
|
35004
35188
|
elif type_of_union == 'minMaxThreshold':
|
|
35005
35189
|
if min_max_threshold is None:
|
|
35006
35190
|
raise ValueError('a union value must not be None')
|
|
@@ -35077,6 +35261,10 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
35077
35261
|
def on_change(self) -> Optional["scout_compute_api_OnChangeRanges"]:
|
|
35078
35262
|
return self._on_change
|
|
35079
35263
|
|
|
35264
|
+
@builtins.property
|
|
35265
|
+
def approximate_threshold(self) -> Optional["scout_compute_api_ApproximateThresholdRanges"]:
|
|
35266
|
+
return self._approximate_threshold
|
|
35267
|
+
|
|
35080
35268
|
@builtins.property
|
|
35081
35269
|
def min_max_threshold(self) -> Optional["scout_compute_api_MinMaxThresholdRanges"]:
|
|
35082
35270
|
"""
|
|
@@ -35140,6 +35328,8 @@ class scout_compute_api_RangeSeries(ConjureUnionType):
|
|
|
35140
35328
|
return visitor._not(self.not_)
|
|
35141
35329
|
if self._type == 'onChange' and self.on_change is not None:
|
|
35142
35330
|
return visitor._on_change(self.on_change)
|
|
35331
|
+
if self._type == 'approximateThreshold' and self.approximate_threshold is not None:
|
|
35332
|
+
return visitor._approximate_threshold(self.approximate_threshold)
|
|
35143
35333
|
if self._type == 'minMaxThreshold' and self.min_max_threshold is not None:
|
|
35144
35334
|
return visitor._min_max_threshold(self.min_max_threshold)
|
|
35145
35335
|
if self._type == 'peak' and self.peak is not None:
|
|
@@ -35191,6 +35381,10 @@ class scout_compute_api_RangeSeriesVisitor:
|
|
|
35191
35381
|
def _on_change(self, on_change: "scout_compute_api_OnChangeRanges") -> Any:
|
|
35192
35382
|
pass
|
|
35193
35383
|
|
|
35384
|
+
@abstractmethod
|
|
35385
|
+
def _approximate_threshold(self, approximate_threshold: "scout_compute_api_ApproximateThresholdRanges") -> Any:
|
|
35386
|
+
pass
|
|
35387
|
+
|
|
35194
35388
|
@abstractmethod
|
|
35195
35389
|
def _min_max_threshold(self, min_max_threshold: "scout_compute_api_MinMaxThresholdRanges") -> Any:
|
|
35196
35390
|
pass
|
|
@@ -41183,6 +41377,29 @@ scout_compute_resolved_api_DerivativeSeriesNode.__qualname__ = "DerivativeSeries
|
|
|
41183
41377
|
scout_compute_resolved_api_DerivativeSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
41184
41378
|
|
|
41185
41379
|
|
|
41380
|
+
class scout_compute_resolved_api_EnumCountDuplicateSeriesNode(ConjureBeanType):
|
|
41381
|
+
|
|
41382
|
+
@builtins.classmethod
|
|
41383
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
41384
|
+
return {
|
|
41385
|
+
'inputs': ConjureFieldDefinition('inputs', List[scout_compute_resolved_api_EnumSeriesNode])
|
|
41386
|
+
}
|
|
41387
|
+
|
|
41388
|
+
__slots__: List[str] = ['_inputs']
|
|
41389
|
+
|
|
41390
|
+
def __init__(self, inputs: List["scout_compute_resolved_api_EnumSeriesNode"]) -> None:
|
|
41391
|
+
self._inputs = inputs
|
|
41392
|
+
|
|
41393
|
+
@builtins.property
|
|
41394
|
+
def inputs(self) -> List["scout_compute_resolved_api_EnumSeriesNode"]:
|
|
41395
|
+
return self._inputs
|
|
41396
|
+
|
|
41397
|
+
|
|
41398
|
+
scout_compute_resolved_api_EnumCountDuplicateSeriesNode.__name__ = "EnumCountDuplicateSeriesNode"
|
|
41399
|
+
scout_compute_resolved_api_EnumCountDuplicateSeriesNode.__qualname__ = "EnumCountDuplicateSeriesNode"
|
|
41400
|
+
scout_compute_resolved_api_EnumCountDuplicateSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
41401
|
+
|
|
41402
|
+
|
|
41186
41403
|
class scout_compute_resolved_api_EnumEqualityRangesNode(ConjureBeanType):
|
|
41187
41404
|
|
|
41188
41405
|
@builtins.classmethod
|
|
@@ -42569,6 +42786,7 @@ scout_compute_resolved_api_NumericResampleSeriesNode.__module__ = "nominal_api.s
|
|
|
42569
42786
|
class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
42570
42787
|
_arithmetic: Optional["scout_compute_resolved_api_ArithmeticSeriesNode"] = None
|
|
42571
42788
|
_bit_operation: Optional["scout_compute_resolved_api_BitOperationSeriesNode"] = None
|
|
42789
|
+
_count_duplicate: Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"] = None
|
|
42572
42790
|
_cumulative_sum: Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"] = None
|
|
42573
42791
|
_derivative: Optional["scout_compute_resolved_api_DerivativeSeriesNode"] = None
|
|
42574
42792
|
_integral: Optional["scout_compute_resolved_api_IntegralSeriesNode"] = None
|
|
@@ -42599,6 +42817,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42599
42817
|
return {
|
|
42600
42818
|
'arithmetic': ConjureFieldDefinition('arithmetic', scout_compute_resolved_api_ArithmeticSeriesNode),
|
|
42601
42819
|
'bit_operation': ConjureFieldDefinition('bitOperation', scout_compute_resolved_api_BitOperationSeriesNode),
|
|
42820
|
+
'count_duplicate': ConjureFieldDefinition('countDuplicate', scout_compute_resolved_api_EnumCountDuplicateSeriesNode),
|
|
42602
42821
|
'cumulative_sum': ConjureFieldDefinition('cumulativeSum', scout_compute_resolved_api_CumulativeSumSeriesNode),
|
|
42603
42822
|
'derivative': ConjureFieldDefinition('derivative', scout_compute_resolved_api_DerivativeSeriesNode),
|
|
42604
42823
|
'integral': ConjureFieldDefinition('integral', scout_compute_resolved_api_IntegralSeriesNode),
|
|
@@ -42629,6 +42848,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42629
42848
|
self,
|
|
42630
42849
|
arithmetic: Optional["scout_compute_resolved_api_ArithmeticSeriesNode"] = None,
|
|
42631
42850
|
bit_operation: Optional["scout_compute_resolved_api_BitOperationSeriesNode"] = None,
|
|
42851
|
+
count_duplicate: Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"] = None,
|
|
42632
42852
|
cumulative_sum: Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"] = None,
|
|
42633
42853
|
derivative: Optional["scout_compute_resolved_api_DerivativeSeriesNode"] = None,
|
|
42634
42854
|
integral: Optional["scout_compute_resolved_api_IntegralSeriesNode"] = None,
|
|
@@ -42656,7 +42876,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42656
42876
|
type_of_union: Optional[str] = None
|
|
42657
42877
|
) -> None:
|
|
42658
42878
|
if type_of_union is None:
|
|
42659
|
-
if (arithmetic is not None) + (bit_operation is not None) + (cumulative_sum is not None) + (derivative is not None) + (integral is not None) + (max is not None) + (mean is not None) + (min is not None) + (offset is not None) + (product is not None) + (raw is not None) + (resample is not None) + (rolling_operation is not None) + (aggregate is not None) + (signal_filter is not None) + (sum is not None) + (scale is not None) + (time_difference is not None) + (time_range_filter is not None) + (time_shift is not None) + (unary_arithmetic is not None) + (binary_arithmetic is not None) + (union is not None) + (unit_conversion is not None) + (value_difference is not None) + (filter_transformation is not None) != 1:
|
|
42879
|
+
if (arithmetic is not None) + (bit_operation is not None) + (count_duplicate is not None) + (cumulative_sum is not None) + (derivative is not None) + (integral is not None) + (max is not None) + (mean is not None) + (min is not None) + (offset is not None) + (product is not None) + (raw is not None) + (resample is not None) + (rolling_operation is not None) + (aggregate is not None) + (signal_filter is not None) + (sum is not None) + (scale is not None) + (time_difference is not None) + (time_range_filter is not None) + (time_shift is not None) + (unary_arithmetic is not None) + (binary_arithmetic is not None) + (union is not None) + (unit_conversion is not None) + (value_difference is not None) + (filter_transformation is not None) != 1:
|
|
42660
42880
|
raise ValueError('a union must contain a single member')
|
|
42661
42881
|
|
|
42662
42882
|
if arithmetic is not None:
|
|
@@ -42665,6 +42885,9 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42665
42885
|
if bit_operation is not None:
|
|
42666
42886
|
self._bit_operation = bit_operation
|
|
42667
42887
|
self._type = 'bitOperation'
|
|
42888
|
+
if count_duplicate is not None:
|
|
42889
|
+
self._count_duplicate = count_duplicate
|
|
42890
|
+
self._type = 'countDuplicate'
|
|
42668
42891
|
if cumulative_sum is not None:
|
|
42669
42892
|
self._cumulative_sum = cumulative_sum
|
|
42670
42893
|
self._type = 'cumulativeSum'
|
|
@@ -42748,6 +42971,11 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42748
42971
|
raise ValueError('a union value must not be None')
|
|
42749
42972
|
self._bit_operation = bit_operation
|
|
42750
42973
|
self._type = 'bitOperation'
|
|
42974
|
+
elif type_of_union == 'countDuplicate':
|
|
42975
|
+
if count_duplicate is None:
|
|
42976
|
+
raise ValueError('a union value must not be None')
|
|
42977
|
+
self._count_duplicate = count_duplicate
|
|
42978
|
+
self._type = 'countDuplicate'
|
|
42751
42979
|
elif type_of_union == 'cumulativeSum':
|
|
42752
42980
|
if cumulative_sum is None:
|
|
42753
42981
|
raise ValueError('a union value must not be None')
|
|
@@ -42877,6 +43105,10 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42877
43105
|
def bit_operation(self) -> Optional["scout_compute_resolved_api_BitOperationSeriesNode"]:
|
|
42878
43106
|
return self._bit_operation
|
|
42879
43107
|
|
|
43108
|
+
@builtins.property
|
|
43109
|
+
def count_duplicate(self) -> Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"]:
|
|
43110
|
+
return self._count_duplicate
|
|
43111
|
+
|
|
42880
43112
|
@builtins.property
|
|
42881
43113
|
def cumulative_sum(self) -> Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"]:
|
|
42882
43114
|
return self._cumulative_sum
|
|
@@ -42980,6 +43212,8 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42980
43212
|
return visitor._arithmetic(self.arithmetic)
|
|
42981
43213
|
if self._type == 'bitOperation' and self.bit_operation is not None:
|
|
42982
43214
|
return visitor._bit_operation(self.bit_operation)
|
|
43215
|
+
if self._type == 'countDuplicate' and self.count_duplicate is not None:
|
|
43216
|
+
return visitor._count_duplicate(self.count_duplicate)
|
|
42983
43217
|
if self._type == 'cumulativeSum' and self.cumulative_sum is not None:
|
|
42984
43218
|
return visitor._cumulative_sum(self.cumulative_sum)
|
|
42985
43219
|
if self._type == 'derivative' and self.derivative is not None:
|
|
@@ -43045,6 +43279,10 @@ class scout_compute_resolved_api_NumericSeriesNodeVisitor:
|
|
|
43045
43279
|
def _bit_operation(self, bit_operation: "scout_compute_resolved_api_BitOperationSeriesNode") -> Any:
|
|
43046
43280
|
pass
|
|
43047
43281
|
|
|
43282
|
+
@abstractmethod
|
|
43283
|
+
def _count_duplicate(self, count_duplicate: "scout_compute_resolved_api_EnumCountDuplicateSeriesNode") -> Any:
|
|
43284
|
+
pass
|
|
43285
|
+
|
|
43048
43286
|
@abstractmethod
|
|
43049
43287
|
def _cumulative_sum(self, cumulative_sum: "scout_compute_resolved_api_CumulativeSumSeriesNode") -> Any:
|
|
43050
43288
|
pass
|
|
@@ -47161,12 +47399,12 @@ class scout_datareview_api_CheckAlertsHistogramRequest(ConjureBeanType):
|
|
|
47161
47399
|
'chart_rids': ConjureFieldDefinition('chartRids', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
47162
47400
|
'notebook_rids': ConjureFieldDefinition('notebookRids', OptionalTypeWrapper[List[scout_rids_api_NotebookRid]]),
|
|
47163
47401
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
47164
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
47402
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
47165
47403
|
}
|
|
47166
47404
|
|
|
47167
47405
|
__slots__: List[str] = ['_num_bins', '_search_text', '_distribution_variable', '_sub_group_variable', '_start_time_after', '_start_time_before', '_status', '_check_rids', '_data_review_rids', '_assignee_rids', '_priorities', '_run_rids', '_asset_rids', '_pinned_checklist_refs', '_chart_rids', '_notebook_rids', '_show_archived', '_archived_statuses']
|
|
47168
47406
|
|
|
47169
|
-
def __init__(self, asset_rids: List[str], distribution_variable: "scout_datareview_api_HistogramDistributionVariable", run_rids: List[str], start_time_after: "api_Timestamp", start_time_before: "api_Timestamp", archived_statuses: Optional[List["
|
|
47407
|
+
def __init__(self, asset_rids: List[str], distribution_variable: "scout_datareview_api_HistogramDistributionVariable", run_rids: List[str], start_time_after: "api_Timestamp", start_time_before: "api_Timestamp", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, assignee_rids: Optional[List[str]] = None, chart_rids: Optional[List["scout_rids_api_VersionedVizId"]] = None, check_rids: Optional[List[str]] = None, data_review_rids: Optional[List[str]] = None, notebook_rids: Optional[List[str]] = None, num_bins: Optional[int] = None, pinned_checklist_refs: Optional[List["scout_checks_api_PinnedChecklistRef"]] = None, priorities: Optional[List["scout_checks_api_Priority"]] = None, search_text: Optional[str] = None, show_archived: Optional[bool] = None, status: Optional[List["scout_datareview_api_CheckAlertStatus"]] = None, sub_group_variable: Optional["scout_datareview_api_HistogramSubGroupVariable"] = None) -> None:
|
|
47170
47408
|
self._num_bins = num_bins
|
|
47171
47409
|
self._search_text = search_text
|
|
47172
47410
|
self._distribution_variable = distribution_variable
|
|
@@ -47277,7 +47515,7 @@ in search results.
|
|
|
47277
47515
|
return self._show_archived
|
|
47278
47516
|
|
|
47279
47517
|
@builtins.property
|
|
47280
|
-
def archived_statuses(self) -> Optional[List["
|
|
47518
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
47281
47519
|
"""
|
|
47282
47520
|
Filters search on check alerts based on the archived statuses provided.
|
|
47283
47521
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -48753,12 +48991,12 @@ If commitId is omitted from a ChecklistRef, it will match all commits.
|
|
|
48753
48991
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
48754
48992
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
48755
48993
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
48756
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
48994
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
48757
48995
|
}
|
|
48758
48996
|
|
|
48759
48997
|
__slots__: List[str] = ['_run_rids', '_asset_rids', '_checklist_refs', '_next_page_token', '_page_size', '_show_archived', '_archived_statuses']
|
|
48760
48998
|
|
|
48761
|
-
def __init__(self, asset_rids: List[str], checklist_refs: List["scout_checks_api_ChecklistRef"], run_rids: List[str], archived_statuses: Optional[List["
|
|
48999
|
+
def __init__(self, asset_rids: List[str], checklist_refs: List["scout_checks_api_ChecklistRef"], run_rids: List[str], archived_statuses: Optional[List["api_ArchivedStatus"]] = None, next_page_token: Optional[str] = None, page_size: Optional[int] = None, show_archived: Optional[bool] = None) -> None:
|
|
48762
49000
|
self._run_rids = run_rids
|
|
48763
49001
|
self._asset_rids = asset_rids
|
|
48764
49002
|
self._checklist_refs = checklist_refs
|
|
@@ -48799,7 +49037,7 @@ in search results alongside non-archived ones. Defaults to false if not specifie
|
|
|
48799
49037
|
return self._show_archived
|
|
48800
49038
|
|
|
48801
49039
|
@builtins.property
|
|
48802
|
-
def archived_statuses(self) -> Optional[List["
|
|
49040
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
48803
49041
|
"""
|
|
48804
49042
|
Filters search on data reviews based on the archived statuses provided.
|
|
48805
49043
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -50042,12 +50280,12 @@ class scout_datareview_api_SearchCheckAlertsRequest(ConjureBeanType):
|
|
|
50042
50280
|
'chart_rids': ConjureFieldDefinition('chartRids', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
50043
50281
|
'notebook_rids': ConjureFieldDefinition('notebookRids', OptionalTypeWrapper[List[scout_rids_api_NotebookRid]]),
|
|
50044
50282
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
50045
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
50283
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
50046
50284
|
}
|
|
50047
50285
|
|
|
50048
50286
|
__slots__: List[str] = ['_next_page_token', '_page_size', '_sort_by', '_search_text', '_after', '_before', '_status', '_check_rids', '_data_review_rids', '_assignee_rids', '_priorities', '_run_rids', '_asset_rids', '_pinned_checklist_refs', '_chart_rids', '_notebook_rids', '_show_archived', '_archived_statuses']
|
|
50049
50287
|
|
|
50050
|
-
def __init__(self, asset_rids: List[str], run_rids: List[str], after: Optional["api_Timestamp"] = None, archived_statuses: Optional[List["
|
|
50288
|
+
def __init__(self, asset_rids: List[str], run_rids: List[str], after: Optional["api_Timestamp"] = None, archived_statuses: Optional[List["api_ArchivedStatus"]] = None, assignee_rids: Optional[List[str]] = None, before: Optional["api_Timestamp"] = None, chart_rids: Optional[List["scout_rids_api_VersionedVizId"]] = None, check_rids: Optional[List[str]] = None, data_review_rids: Optional[List[str]] = None, next_page_token: Optional[str] = None, notebook_rids: Optional[List[str]] = None, page_size: Optional[int] = None, pinned_checklist_refs: Optional[List["scout_checks_api_PinnedChecklistRef"]] = None, priorities: Optional[List["scout_checks_api_Priority"]] = None, search_text: Optional[str] = None, show_archived: Optional[bool] = None, sort_by: Optional["scout_datareview_api_SearchCheckAlertsSortOptions"] = None, status: Optional[List["scout_datareview_api_CheckAlertStatus"]] = None) -> None:
|
|
50051
50289
|
self._next_page_token = next_page_token
|
|
50052
50290
|
self._page_size = page_size
|
|
50053
50291
|
self._sort_by = sort_by
|
|
@@ -50155,7 +50393,7 @@ results. If not present or false, will not show archived data reviews in search
|
|
|
50155
50393
|
return self._show_archived
|
|
50156
50394
|
|
|
50157
50395
|
@builtins.property
|
|
50158
|
-
def archived_statuses(self) -> Optional[List["
|
|
50396
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
50159
50397
|
"""
|
|
50160
50398
|
Filters search on check alerts based on the archived statuses provided.
|
|
50161
50399
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -54162,7 +54400,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54162
54400
|
_exact_match: Optional[str] = None
|
|
54163
54401
|
_search_text: Optional[str] = None
|
|
54164
54402
|
_label: Optional[str] = None
|
|
54165
|
-
_property: Optional["
|
|
54403
|
+
_property: Optional["api_Property"] = None
|
|
54166
54404
|
_and_: Optional[List["scout_internal_search_api_SearchQuery"]] = None
|
|
54167
54405
|
_or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None
|
|
54168
54406
|
|
|
@@ -54176,8 +54414,8 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54176
54414
|
'boolean_field': ConjureFieldDefinition('booleanField', scout_internal_search_api_BooleanField),
|
|
54177
54415
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
54178
54416
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
54179
|
-
'label': ConjureFieldDefinition('label',
|
|
54180
|
-
'property': ConjureFieldDefinition('property',
|
|
54417
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
54418
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
54181
54419
|
'and_': ConjureFieldDefinition('and', List[scout_internal_search_api_SearchQuery]),
|
|
54182
54420
|
'or_': ConjureFieldDefinition('or', List[scout_internal_search_api_SearchQuery])
|
|
54183
54421
|
}
|
|
@@ -54192,7 +54430,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54192
54430
|
exact_match: Optional[str] = None,
|
|
54193
54431
|
search_text: Optional[str] = None,
|
|
54194
54432
|
label: Optional[str] = None,
|
|
54195
|
-
property: Optional["
|
|
54433
|
+
property: Optional["api_Property"] = None,
|
|
54196
54434
|
and_: Optional[List["scout_internal_search_api_SearchQuery"]] = None,
|
|
54197
54435
|
or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None,
|
|
54198
54436
|
type_of_union: Optional[str] = None
|
|
@@ -54327,7 +54565,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54327
54565
|
return self._label
|
|
54328
54566
|
|
|
54329
54567
|
@builtins.property
|
|
54330
|
-
def property(self) -> Optional["
|
|
54568
|
+
def property(self) -> Optional["api_Property"]:
|
|
54331
54569
|
return self._property
|
|
54332
54570
|
|
|
54333
54571
|
@builtins.property
|
|
@@ -54405,7 +54643,7 @@ class scout_internal_search_api_SearchQueryVisitor:
|
|
|
54405
54643
|
pass
|
|
54406
54644
|
|
|
54407
54645
|
@abstractmethod
|
|
54408
|
-
def _property(self, property: "
|
|
54646
|
+
def _property(self, property: "api_Property") -> Any:
|
|
54409
54647
|
pass
|
|
54410
54648
|
|
|
54411
54649
|
@abstractmethod
|
|
@@ -55390,8 +55628,8 @@ class scout_metadata_ListPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
55390
55628
|
@builtins.classmethod
|
|
55391
55629
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
55392
55630
|
return {
|
|
55393
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55394
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55631
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
55632
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55395
55633
|
}
|
|
55396
55634
|
|
|
55397
55635
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -55613,8 +55851,8 @@ class scout_notebook_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
55613
55851
|
@builtins.classmethod
|
|
55614
55852
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
55615
55853
|
return {
|
|
55616
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55617
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55854
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
55855
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55618
55856
|
}
|
|
55619
55857
|
|
|
55620
55858
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -55841,8 +56079,8 @@ class scout_notebook_api_NotebookMetadata(ConjureBeanType):
|
|
|
55841
56079
|
'lock': ConjureFieldDefinition('lock', scout_notebook_api_Lock),
|
|
55842
56080
|
'created_by_rid': ConjureFieldDefinition('createdByRid', scout_rids_api_UserRid),
|
|
55843
56081
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
55844
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55845
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
56082
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
56083
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55846
56084
|
}
|
|
55847
56085
|
|
|
55848
56086
|
__slots__: List[str] = ['_run_rid', '_data_scope', '_notebook_type', '_title', '_description', '_is_draft', '_is_archived', '_lock', '_created_by_rid', '_created_at', '_properties', '_labels']
|
|
@@ -55971,7 +56209,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
55971
56209
|
_exact_match: Optional[str] = None
|
|
55972
56210
|
_search_text: Optional[str] = None
|
|
55973
56211
|
_label: Optional[str] = None
|
|
55974
|
-
_property: Optional["
|
|
56212
|
+
_property: Optional["api_Property"] = None
|
|
55975
56213
|
_asset_rid: Optional[str] = None
|
|
55976
56214
|
_author_rid: Optional[str] = None
|
|
55977
56215
|
_run_rid: Optional[str] = None
|
|
@@ -55986,8 +56224,8 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
55986
56224
|
'or_': ConjureFieldDefinition('or', List[scout_notebook_api_SearchNotebooksQuery]),
|
|
55987
56225
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
55988
56226
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
55989
|
-
'label': ConjureFieldDefinition('label',
|
|
55990
|
-
'property': ConjureFieldDefinition('property',
|
|
56227
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
56228
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
55991
56229
|
'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
|
|
55992
56230
|
'author_rid': ConjureFieldDefinition('authorRid', scout_rids_api_UserRid),
|
|
55993
56231
|
'run_rid': ConjureFieldDefinition('runRid', scout_run_api_RunRid),
|
|
@@ -56003,7 +56241,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
56003
56241
|
exact_match: Optional[str] = None,
|
|
56004
56242
|
search_text: Optional[str] = None,
|
|
56005
56243
|
label: Optional[str] = None,
|
|
56006
|
-
property: Optional["
|
|
56244
|
+
property: Optional["api_Property"] = None,
|
|
56007
56245
|
asset_rid: Optional[str] = None,
|
|
56008
56246
|
author_rid: Optional[str] = None,
|
|
56009
56247
|
run_rid: Optional[str] = None,
|
|
@@ -56138,7 +56376,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
56138
56376
|
return self._label
|
|
56139
56377
|
|
|
56140
56378
|
@builtins.property
|
|
56141
|
-
def property(self) -> Optional["
|
|
56379
|
+
def property(self) -> Optional["api_Property"]:
|
|
56142
56380
|
return self._property
|
|
56143
56381
|
|
|
56144
56382
|
@builtins.property
|
|
@@ -56222,7 +56460,7 @@ class scout_notebook_api_SearchNotebooksQueryVisitor:
|
|
|
56222
56460
|
pass
|
|
56223
56461
|
|
|
56224
56462
|
@abstractmethod
|
|
56225
|
-
def _property(self, property: "
|
|
56463
|
+
def _property(self, property: "api_Property") -> Any:
|
|
56226
56464
|
pass
|
|
56227
56465
|
|
|
56228
56466
|
@abstractmethod
|
|
@@ -56406,8 +56644,8 @@ class scout_notebook_api_UpdateNotebookMetadataRequest(ConjureBeanType):
|
|
|
56406
56644
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
56407
56645
|
'data_scope': ConjureFieldDefinition('dataScope', OptionalTypeWrapper[scout_notebook_api_NotebookDataScope]),
|
|
56408
56646
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
56409
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
56410
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
56647
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
56648
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
56411
56649
|
'is_draft': ConjureFieldDefinition('isDraft', OptionalTypeWrapper[bool])
|
|
56412
56650
|
}
|
|
56413
56651
|
|
|
@@ -56532,24 +56770,6 @@ scout_plotting_TimestampType.__qualname__ = "TimestampType"
|
|
|
56532
56770
|
scout_plotting_TimestampType.__module__ = "nominal_api.scout_plotting"
|
|
56533
56771
|
|
|
56534
56772
|
|
|
56535
|
-
class scout_rids_api_ArchivedStatus(ConjureEnumType):
|
|
56536
|
-
|
|
56537
|
-
ARCHIVED = 'ARCHIVED'
|
|
56538
|
-
'''ARCHIVED'''
|
|
56539
|
-
NOT_ARCHIVED = 'NOT_ARCHIVED'
|
|
56540
|
-
'''NOT_ARCHIVED'''
|
|
56541
|
-
UNKNOWN = 'UNKNOWN'
|
|
56542
|
-
'''UNKNOWN'''
|
|
56543
|
-
|
|
56544
|
-
def __reduce_ex__(self, proto):
|
|
56545
|
-
return self.__class__, (self.name,)
|
|
56546
|
-
|
|
56547
|
-
|
|
56548
|
-
scout_rids_api_ArchivedStatus.__name__ = "ArchivedStatus"
|
|
56549
|
-
scout_rids_api_ArchivedStatus.__qualname__ = "ArchivedStatus"
|
|
56550
|
-
scout_rids_api_ArchivedStatus.__module__ = "nominal_api.scout_rids_api"
|
|
56551
|
-
|
|
56552
|
-
|
|
56553
56773
|
class scout_rids_api_CheckAlertState(ConjureUnionType):
|
|
56554
56774
|
_pending_review: Optional["scout_rids_api_PendingReviewAlertState"] = None
|
|
56555
56775
|
_closed_with_further_action: Optional["scout_rids_api_ClosedWithFurtherActionAlertState"] = None
|
|
@@ -56772,8 +56992,8 @@ class scout_run_api_AllRunsPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
56772
56992
|
@builtins.classmethod
|
|
56773
56993
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
56774
56994
|
return {
|
|
56775
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
56776
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
56995
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
56996
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
56777
56997
|
}
|
|
56778
56998
|
|
|
56779
56999
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -56961,8 +57181,8 @@ class scout_run_api_CreateRunRequest(ConjureBeanType):
|
|
|
56961
57181
|
'description': ConjureFieldDefinition('description', str),
|
|
56962
57182
|
'start_time': ConjureFieldDefinition('startTime', scout_run_api_UtcTimestamp),
|
|
56963
57183
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
56964
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
56965
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
57184
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
57185
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
56966
57186
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
56967
57187
|
'run_prefix': ConjureFieldDefinition('runPrefix', OptionalTypeWrapper[str]),
|
|
56968
57188
|
'data_sources': ConjureFieldDefinition('dataSources', Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]),
|
|
@@ -57497,35 +57717,6 @@ scout_run_api_Link.__qualname__ = "Link"
|
|
|
57497
57717
|
scout_run_api_Link.__module__ = "nominal_api.scout_run_api"
|
|
57498
57718
|
|
|
57499
57719
|
|
|
57500
|
-
class scout_run_api_Property(ConjureBeanType):
|
|
57501
|
-
|
|
57502
|
-
@builtins.classmethod
|
|
57503
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
57504
|
-
return {
|
|
57505
|
-
'name': ConjureFieldDefinition('name', scout_run_api_PropertyName),
|
|
57506
|
-
'value': ConjureFieldDefinition('value', scout_run_api_PropertyValue)
|
|
57507
|
-
}
|
|
57508
|
-
|
|
57509
|
-
__slots__: List[str] = ['_name', '_value']
|
|
57510
|
-
|
|
57511
|
-
def __init__(self, name: str, value: str) -> None:
|
|
57512
|
-
self._name = name
|
|
57513
|
-
self._value = value
|
|
57514
|
-
|
|
57515
|
-
@builtins.property
|
|
57516
|
-
def name(self) -> str:
|
|
57517
|
-
return self._name
|
|
57518
|
-
|
|
57519
|
-
@builtins.property
|
|
57520
|
-
def value(self) -> str:
|
|
57521
|
-
return self._value
|
|
57522
|
-
|
|
57523
|
-
|
|
57524
|
-
scout_run_api_Property.__name__ = "Property"
|
|
57525
|
-
scout_run_api_Property.__qualname__ = "Property"
|
|
57526
|
-
scout_run_api_Property.__module__ = "nominal_api.scout_run_api"
|
|
57527
|
-
|
|
57528
|
-
|
|
57529
57720
|
class scout_run_api_RefNameAndType(ConjureBeanType):
|
|
57530
57721
|
"""
|
|
57531
57722
|
Scoped to the org-level, intended to help the frontend
|
|
@@ -57573,8 +57764,8 @@ class scout_run_api_Run(ConjureBeanType):
|
|
|
57573
57764
|
'author_rid': ConjureFieldDefinition('authorRid', OptionalTypeWrapper[scout_rids_api_UserRid]),
|
|
57574
57765
|
'start_time': ConjureFieldDefinition('startTime', scout_run_api_UtcTimestamp),
|
|
57575
57766
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
57576
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
57577
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
57767
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
57768
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
57578
57769
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
57579
57770
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
57580
57771
|
'updated_at': ConjureFieldDefinition('updatedAt', str),
|
|
@@ -57890,7 +58081,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57890
58081
|
_search_text: Optional[str] = None
|
|
57891
58082
|
_asset: Optional[str] = None
|
|
57892
58083
|
_label: Optional[str] = None
|
|
57893
|
-
_property: Optional["
|
|
58084
|
+
_property: Optional["api_Property"] = None
|
|
57894
58085
|
_data_source_series_tag: Optional["scout_run_api_DataSourceSeriesTag"] = None
|
|
57895
58086
|
_data_source_ref_name: Optional[str] = None
|
|
57896
58087
|
_data_source: Optional["scout_run_api_DataSource"] = None
|
|
@@ -57906,8 +58097,8 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57906
58097
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
57907
58098
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
57908
58099
|
'asset': ConjureFieldDefinition('asset', scout_rids_api_AssetRid),
|
|
57909
|
-
'label': ConjureFieldDefinition('label',
|
|
57910
|
-
'property': ConjureFieldDefinition('property',
|
|
58100
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
58101
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
57911
58102
|
'data_source_series_tag': ConjureFieldDefinition('dataSourceSeriesTag', scout_run_api_DataSourceSeriesTag),
|
|
57912
58103
|
'data_source_ref_name': ConjureFieldDefinition('dataSourceRefName', scout_api_DataSourceRefName),
|
|
57913
58104
|
'data_source': ConjureFieldDefinition('dataSource', scout_run_api_DataSource),
|
|
@@ -57924,7 +58115,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57924
58115
|
search_text: Optional[str] = None,
|
|
57925
58116
|
asset: Optional[str] = None,
|
|
57926
58117
|
label: Optional[str] = None,
|
|
57927
|
-
property: Optional["
|
|
58118
|
+
property: Optional["api_Property"] = None,
|
|
57928
58119
|
data_source_series_tag: Optional["scout_run_api_DataSourceSeriesTag"] = None,
|
|
57929
58120
|
data_source_ref_name: Optional[str] = None,
|
|
57930
58121
|
data_source: Optional["scout_run_api_DataSource"] = None,
|
|
@@ -58071,7 +58262,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
58071
58262
|
return self._label
|
|
58072
58263
|
|
|
58073
58264
|
@builtins.property
|
|
58074
|
-
def property(self) -> Optional["
|
|
58265
|
+
def property(self) -> Optional["api_Property"]:
|
|
58075
58266
|
return self._property
|
|
58076
58267
|
|
|
58077
58268
|
@builtins.property
|
|
@@ -58164,7 +58355,7 @@ class scout_run_api_SearchQueryVisitor:
|
|
|
58164
58355
|
pass
|
|
58165
58356
|
|
|
58166
58357
|
@abstractmethod
|
|
58167
|
-
def _property(self, property: "
|
|
58358
|
+
def _property(self, property: "api_Property") -> Any:
|
|
58168
58359
|
pass
|
|
58169
58360
|
|
|
58170
58361
|
@abstractmethod
|
|
@@ -58528,8 +58719,8 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
|
|
|
58528
58719
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
58529
58720
|
'start_time': ConjureFieldDefinition('startTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
58530
58721
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
58531
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
58532
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
58722
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
58723
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
58533
58724
|
'links': ConjureFieldDefinition('links', OptionalTypeWrapper[List[scout_run_api_Link]]),
|
|
58534
58725
|
'run_prefix': ConjureFieldDefinition('runPrefix', OptionalTypeWrapper[str]),
|
|
58535
58726
|
'data_sources': ConjureFieldDefinition('dataSources', OptionalTypeWrapper[Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]]),
|
|
@@ -58718,8 +58909,8 @@ class scout_template_api_CreateTemplateRequest(ConjureBeanType):
|
|
|
58718
58909
|
return {
|
|
58719
58910
|
'title': ConjureFieldDefinition('title', str),
|
|
58720
58911
|
'description': ConjureFieldDefinition('description', str),
|
|
58721
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
58722
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
58912
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
58913
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
58723
58914
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool]),
|
|
58724
58915
|
'charts': ConjureFieldDefinition('charts', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
58725
58916
|
'layout': ConjureFieldDefinition('layout', scout_layout_api_WorkbookLayout),
|
|
@@ -58790,8 +58981,8 @@ class scout_template_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
58790
58981
|
@builtins.classmethod
|
|
58791
58982
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58792
58983
|
return {
|
|
58793
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
58794
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
58984
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
58985
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
58795
58986
|
}
|
|
58796
58987
|
|
|
58797
58988
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -58907,7 +59098,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58907
59098
|
_exact_match: Optional[str] = None
|
|
58908
59099
|
_search_text: Optional[str] = None
|
|
58909
59100
|
_label: Optional[str] = None
|
|
58910
|
-
_property: Optional["
|
|
59101
|
+
_property: Optional["api_Property"] = None
|
|
58911
59102
|
_created_by: Optional[str] = None
|
|
58912
59103
|
_is_archived: Optional[bool] = None
|
|
58913
59104
|
_is_published: Optional[bool] = None
|
|
@@ -58919,8 +59110,8 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58919
59110
|
'or_': ConjureFieldDefinition('or', List[scout_template_api_SearchTemplatesQuery]),
|
|
58920
59111
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
58921
59112
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
58922
|
-
'label': ConjureFieldDefinition('label',
|
|
58923
|
-
'property': ConjureFieldDefinition('property',
|
|
59113
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
59114
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
58924
59115
|
'created_by': ConjureFieldDefinition('createdBy', scout_rids_api_UserRid),
|
|
58925
59116
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
58926
59117
|
'is_published': ConjureFieldDefinition('isPublished', bool)
|
|
@@ -58933,7 +59124,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58933
59124
|
exact_match: Optional[str] = None,
|
|
58934
59125
|
search_text: Optional[str] = None,
|
|
58935
59126
|
label: Optional[str] = None,
|
|
58936
|
-
property: Optional["
|
|
59127
|
+
property: Optional["api_Property"] = None,
|
|
58937
59128
|
created_by: Optional[str] = None,
|
|
58938
59129
|
is_archived: Optional[bool] = None,
|
|
58939
59130
|
is_published: Optional[bool] = None,
|
|
@@ -59044,7 +59235,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
59044
59235
|
return self._label
|
|
59045
59236
|
|
|
59046
59237
|
@builtins.property
|
|
59047
|
-
def property(self) -> Optional["
|
|
59238
|
+
def property(self) -> Optional["api_Property"]:
|
|
59048
59239
|
return self._property
|
|
59049
59240
|
|
|
59050
59241
|
@builtins.property
|
|
@@ -59110,7 +59301,7 @@ class scout_template_api_SearchTemplatesQueryVisitor:
|
|
|
59110
59301
|
pass
|
|
59111
59302
|
|
|
59112
59303
|
@abstractmethod
|
|
59113
|
-
def _property(self, property: "
|
|
59304
|
+
def _property(self, property: "api_Property") -> Any:
|
|
59114
59305
|
pass
|
|
59115
59306
|
|
|
59116
59307
|
@abstractmethod
|
|
@@ -59321,8 +59512,8 @@ class scout_template_api_TemplateMetadata(ConjureBeanType):
|
|
|
59321
59512
|
return {
|
|
59322
59513
|
'title': ConjureFieldDefinition('title', str),
|
|
59323
59514
|
'description': ConjureFieldDefinition('description', str),
|
|
59324
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
59325
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
59515
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
59516
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
59326
59517
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
59327
59518
|
'is_published': ConjureFieldDefinition('isPublished', bool),
|
|
59328
59519
|
'created_by': ConjureFieldDefinition('createdBy', scout_rids_api_UserRid),
|
|
@@ -59430,8 +59621,8 @@ class scout_template_api_UpdateMetadataRequest(ConjureBeanType):
|
|
|
59430
59621
|
return {
|
|
59431
59622
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
59432
59623
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
59433
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
59434
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
59624
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
59625
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
59435
59626
|
'is_archived': ConjureFieldDefinition('isArchived', OptionalTypeWrapper[bool]),
|
|
59436
59627
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool])
|
|
59437
59628
|
}
|
|
@@ -60680,24 +60871,6 @@ scout_video_VideoService.__qualname__ = "VideoService"
|
|
|
60680
60871
|
scout_video_VideoService.__module__ = "nominal_api.scout_video"
|
|
60681
60872
|
|
|
60682
60873
|
|
|
60683
|
-
class scout_video_api_ArchivedStatus(ConjureEnumType):
|
|
60684
|
-
|
|
60685
|
-
ARCHIVED = 'ARCHIVED'
|
|
60686
|
-
'''ARCHIVED'''
|
|
60687
|
-
NOT_ARCHIVED = 'NOT_ARCHIVED'
|
|
60688
|
-
'''NOT_ARCHIVED'''
|
|
60689
|
-
UNKNOWN = 'UNKNOWN'
|
|
60690
|
-
'''UNKNOWN'''
|
|
60691
|
-
|
|
60692
|
-
def __reduce_ex__(self, proto):
|
|
60693
|
-
return self.__class__, (self.name,)
|
|
60694
|
-
|
|
60695
|
-
|
|
60696
|
-
scout_video_api_ArchivedStatus.__name__ = "ArchivedStatus"
|
|
60697
|
-
scout_video_api_ArchivedStatus.__qualname__ = "ArchivedStatus"
|
|
60698
|
-
scout_video_api_ArchivedStatus.__module__ = "nominal_api.scout_video_api"
|
|
60699
|
-
|
|
60700
|
-
|
|
60701
60874
|
class scout_video_api_CreateSegment(ConjureBeanType):
|
|
60702
60875
|
|
|
60703
60876
|
@builtins.classmethod
|
|
@@ -60801,8 +60974,8 @@ class scout_video_api_CreateVideoRequest(ConjureBeanType):
|
|
|
60801
60974
|
return {
|
|
60802
60975
|
'title': ConjureFieldDefinition('title', str),
|
|
60803
60976
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
60804
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
60805
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
60977
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
60978
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
60806
60979
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_video_api_VideoOriginMetadata)
|
|
60807
60980
|
}
|
|
60808
60981
|
|
|
@@ -61183,7 +61356,7 @@ scout_video_api_McapTimestampManifest.__module__ = "nominal_api.scout_video_api"
|
|
|
61183
61356
|
|
|
61184
61357
|
class scout_video_api_NoTimestampManifest(ConjureBeanType):
|
|
61185
61358
|
"""
|
|
61186
|
-
these values will not be updated after ingest time, to allow for resetting. The updated values are stored
|
|
61359
|
+
these values will not be updated after ingest time, to allow for resetting. The updated values are stored
|
|
61187
61360
|
implicitly through the segment timestamps.
|
|
61188
61361
|
"""
|
|
61189
61362
|
|
|
@@ -61220,35 +61393,6 @@ scout_video_api_NoTimestampManifest.__qualname__ = "NoTimestampManifest"
|
|
|
61220
61393
|
scout_video_api_NoTimestampManifest.__module__ = "nominal_api.scout_video_api"
|
|
61221
61394
|
|
|
61222
61395
|
|
|
61223
|
-
class scout_video_api_Property(ConjureBeanType):
|
|
61224
|
-
|
|
61225
|
-
@builtins.classmethod
|
|
61226
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61227
|
-
return {
|
|
61228
|
-
'name': ConjureFieldDefinition('name', scout_video_api_PropertyName),
|
|
61229
|
-
'value': ConjureFieldDefinition('value', scout_video_api_PropertyValue)
|
|
61230
|
-
}
|
|
61231
|
-
|
|
61232
|
-
__slots__: List[str] = ['_name', '_value']
|
|
61233
|
-
|
|
61234
|
-
def __init__(self, name: str, value: str) -> None:
|
|
61235
|
-
self._name = name
|
|
61236
|
-
self._value = value
|
|
61237
|
-
|
|
61238
|
-
@builtins.property
|
|
61239
|
-
def name(self) -> str:
|
|
61240
|
-
return self._name
|
|
61241
|
-
|
|
61242
|
-
@builtins.property
|
|
61243
|
-
def value(self) -> str:
|
|
61244
|
-
return self._value
|
|
61245
|
-
|
|
61246
|
-
|
|
61247
|
-
scout_video_api_Property.__name__ = "Property"
|
|
61248
|
-
scout_video_api_Property.__qualname__ = "Property"
|
|
61249
|
-
scout_video_api_Property.__module__ = "nominal_api.scout_video_api"
|
|
61250
|
-
|
|
61251
|
-
|
|
61252
61396
|
class scout_video_api_ScaleParameter(ConjureUnionType):
|
|
61253
61397
|
_true_frame_rate: Optional[float] = None
|
|
61254
61398
|
_ending_timestamp: Optional["api_Timestamp"] = None
|
|
@@ -61353,7 +61497,7 @@ scout_video_api_ScaleParameterVisitor.__module__ = "nominal_api.scout_video_api"
|
|
|
61353
61497
|
class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
61354
61498
|
_search_text: Optional[str] = None
|
|
61355
61499
|
_label: Optional[str] = None
|
|
61356
|
-
_property: Optional["
|
|
61500
|
+
_property: Optional["api_Property"] = None
|
|
61357
61501
|
_and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61358
61502
|
_or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61359
61503
|
_ingest_status: Optional["scout_video_api_IngestStatus"] = None
|
|
@@ -61362,8 +61506,8 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61362
61506
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61363
61507
|
return {
|
|
61364
61508
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
61365
|
-
'label': ConjureFieldDefinition('label',
|
|
61366
|
-
'property': ConjureFieldDefinition('property',
|
|
61509
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
61510
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
61367
61511
|
'and_': ConjureFieldDefinition('and', List[scout_video_api_SearchVideosQuery]),
|
|
61368
61512
|
'or_': ConjureFieldDefinition('or', List[scout_video_api_SearchVideosQuery]),
|
|
61369
61513
|
'ingest_status': ConjureFieldDefinition('ingestStatus', scout_video_api_IngestStatus)
|
|
@@ -61373,7 +61517,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61373
61517
|
self,
|
|
61374
61518
|
search_text: Optional[str] = None,
|
|
61375
61519
|
label: Optional[str] = None,
|
|
61376
|
-
property: Optional["
|
|
61520
|
+
property: Optional["api_Property"] = None,
|
|
61377
61521
|
and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61378
61522
|
or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61379
61523
|
ingest_status: Optional["scout_video_api_IngestStatus"] = None,
|
|
@@ -61442,7 +61586,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61442
61586
|
return self._label
|
|
61443
61587
|
|
|
61444
61588
|
@builtins.property
|
|
61445
|
-
def property(self) -> Optional["
|
|
61589
|
+
def property(self) -> Optional["api_Property"]:
|
|
61446
61590
|
return self._property
|
|
61447
61591
|
|
|
61448
61592
|
@builtins.property
|
|
@@ -61490,7 +61634,7 @@ class scout_video_api_SearchVideosQueryVisitor:
|
|
|
61490
61634
|
pass
|
|
61491
61635
|
|
|
61492
61636
|
@abstractmethod
|
|
61493
|
-
def _property(self, property: "
|
|
61637
|
+
def _property(self, property: "api_Property") -> Any:
|
|
61494
61638
|
pass
|
|
61495
61639
|
|
|
61496
61640
|
@abstractmethod
|
|
@@ -61520,12 +61664,12 @@ class scout_video_api_SearchVideosRequest(ConjureBeanType):
|
|
|
61520
61664
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
61521
61665
|
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[scout_backend_Token]),
|
|
61522
61666
|
'sort_options': ConjureFieldDefinition('sortOptions', scout_video_api_SortOptions),
|
|
61523
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
61667
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
61524
61668
|
}
|
|
61525
61669
|
|
|
61526
61670
|
__slots__: List[str] = ['_query', '_page_size', '_token', '_sort_options', '_archived_statuses']
|
|
61527
61671
|
|
|
61528
|
-
def __init__(self, query: "scout_video_api_SearchVideosQuery", sort_options: "scout_video_api_SortOptions", archived_statuses: Optional[List["
|
|
61672
|
+
def __init__(self, query: "scout_video_api_SearchVideosQuery", sort_options: "scout_video_api_SortOptions", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, page_size: Optional[int] = None, token: Optional[str] = None) -> None:
|
|
61529
61673
|
self._query = query
|
|
61530
61674
|
self._page_size = page_size
|
|
61531
61675
|
self._token = token
|
|
@@ -61552,7 +61696,7 @@ class scout_video_api_SearchVideosRequest(ConjureBeanType):
|
|
|
61552
61696
|
return self._sort_options
|
|
61553
61697
|
|
|
61554
61698
|
@builtins.property
|
|
61555
|
-
def archived_statuses(self) -> Optional[List["
|
|
61699
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
61556
61700
|
"""
|
|
61557
61701
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived videos in search.
|
|
61558
61702
|
"""
|
|
@@ -61658,7 +61802,7 @@ scout_video_api_Segment.__module__ = "nominal_api.scout_video_api"
|
|
|
61658
61802
|
|
|
61659
61803
|
class scout_video_api_SegmentSummary(ConjureBeanType):
|
|
61660
61804
|
"""
|
|
61661
|
-
Bounding timestamps for the frames within a segment. For non-frame-mapped videos, the min and max media
|
|
61805
|
+
Bounding timestamps for the frames within a segment. For non-frame-mapped videos, the min and max media
|
|
61662
61806
|
timestamps will be empty.
|
|
61663
61807
|
"""
|
|
61664
61808
|
|
|
@@ -61703,8 +61847,8 @@ scout_video_api_SegmentSummary.__module__ = "nominal_api.scout_video_api"
|
|
|
61703
61847
|
|
|
61704
61848
|
class scout_video_api_SegmentTimestamps(ConjureUnionType):
|
|
61705
61849
|
"""A video segment will either contain timestamps or timestamp mappings depending on whether it is intended to
|
|
61706
|
-
be frame-mapped. Without a frame-timestamp mapping manifest file, a list of absolute timestamps will be
|
|
61707
|
-
automatically assigned to each segment based on media timestamps.. Otherwise, media timestamps will be
|
|
61850
|
+
be frame-mapped. Without a frame-timestamp mapping manifest file, a list of absolute timestamps will be
|
|
61851
|
+
automatically assigned to each segment based on media timestamps.. Otherwise, media timestamps will be
|
|
61708
61852
|
extracted and mapped to those in the provided manifest."""
|
|
61709
61853
|
_timestamps: Optional[List["api_Timestamp"]] = None
|
|
61710
61854
|
_timestamp_mappings: Optional["scout_video_api_TimestampMappings"] = None
|
|
@@ -61990,7 +62134,7 @@ class scout_video_api_UpdateTargetDurationRequest(ConjureBeanType):
|
|
|
61990
62134
|
@builtins.property
|
|
61991
62135
|
def target_duration_seconds(self) -> float:
|
|
61992
62136
|
"""
|
|
61993
|
-
A value used to construct the HLS playlist which must be greater than or equal to the durations of all
|
|
62137
|
+
A value used to construct the HLS playlist which must be greater than or equal to the durations of all
|
|
61994
62138
|
the segments within a video, when rounded to the nearest integer.
|
|
61995
62139
|
"""
|
|
61996
62140
|
return self._target_duration_seconds
|
|
@@ -62035,8 +62179,8 @@ class scout_video_api_UpdateVideoMetadataRequest(ConjureBeanType):
|
|
|
62035
62179
|
return {
|
|
62036
62180
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
62037
62181
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
62038
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
62039
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62182
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
62183
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62040
62184
|
'starting_timestamp': ConjureFieldDefinition('startingTimestamp', OptionalTypeWrapper[api_Timestamp]),
|
|
62041
62185
|
'scale_parameter': ConjureFieldDefinition('scaleParameter', OptionalTypeWrapper[scout_video_api_ScaleParameter])
|
|
62042
62186
|
}
|
|
@@ -62089,8 +62233,8 @@ class scout_video_api_Video(ConjureBeanType):
|
|
|
62089
62233
|
'rid': ConjureFieldDefinition('rid', api_rids_VideoRid),
|
|
62090
62234
|
'title': ConjureFieldDefinition('title', str),
|
|
62091
62235
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
62092
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62093
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62236
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
62237
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62094
62238
|
'created_by': ConjureFieldDefinition('createdBy', str),
|
|
62095
62239
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
62096
62240
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_video_api_VideoOriginMetadata),
|
|
@@ -62504,24 +62648,6 @@ scout_workbookcommon_api_WorkbookContent.__qualname__ = "WorkbookContent"
|
|
|
62504
62648
|
scout_workbookcommon_api_WorkbookContent.__module__ = "nominal_api.scout_workbookcommon_api"
|
|
62505
62649
|
|
|
62506
62650
|
|
|
62507
|
-
class secrets_api_ArchivedStatus(ConjureEnumType):
|
|
62508
|
-
|
|
62509
|
-
NOT_ARCHIVED = 'NOT_ARCHIVED'
|
|
62510
|
-
'''NOT_ARCHIVED'''
|
|
62511
|
-
ARCHIVED = 'ARCHIVED'
|
|
62512
|
-
'''ARCHIVED'''
|
|
62513
|
-
UNKNOWN = 'UNKNOWN'
|
|
62514
|
-
'''UNKNOWN'''
|
|
62515
|
-
|
|
62516
|
-
def __reduce_ex__(self, proto):
|
|
62517
|
-
return self.__class__, (self.name,)
|
|
62518
|
-
|
|
62519
|
-
|
|
62520
|
-
secrets_api_ArchivedStatus.__name__ = "ArchivedStatus"
|
|
62521
|
-
secrets_api_ArchivedStatus.__qualname__ = "ArchivedStatus"
|
|
62522
|
-
secrets_api_ArchivedStatus.__module__ = "nominal_api.secrets_api"
|
|
62523
|
-
|
|
62524
|
-
|
|
62525
62651
|
class secrets_api_CreateSecretRequest(ConjureBeanType):
|
|
62526
62652
|
|
|
62527
62653
|
@builtins.classmethod
|
|
@@ -62530,8 +62656,8 @@ class secrets_api_CreateSecretRequest(ConjureBeanType):
|
|
|
62530
62656
|
'name': ConjureFieldDefinition('name', str),
|
|
62531
62657
|
'description': ConjureFieldDefinition('description', str),
|
|
62532
62658
|
'decrypted_value': ConjureFieldDefinition('decryptedValue', str),
|
|
62533
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62534
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62659
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62660
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
62535
62661
|
}
|
|
62536
62662
|
|
|
62537
62663
|
__slots__: List[str] = ['_name', '_description', '_decrypted_value', '_properties', '_labels']
|
|
@@ -62615,39 +62741,10 @@ secrets_api_GetSecretsResponse.__qualname__ = "GetSecretsResponse"
|
|
|
62615
62741
|
secrets_api_GetSecretsResponse.__module__ = "nominal_api.secrets_api"
|
|
62616
62742
|
|
|
62617
62743
|
|
|
62618
|
-
class secrets_api_Property(ConjureBeanType):
|
|
62619
|
-
|
|
62620
|
-
@builtins.classmethod
|
|
62621
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
62622
|
-
return {
|
|
62623
|
-
'name': ConjureFieldDefinition('name', secrets_api_PropertyName),
|
|
62624
|
-
'value': ConjureFieldDefinition('value', secrets_api_PropertyValue)
|
|
62625
|
-
}
|
|
62626
|
-
|
|
62627
|
-
__slots__: List[str] = ['_name', '_value']
|
|
62628
|
-
|
|
62629
|
-
def __init__(self, name: str, value: str) -> None:
|
|
62630
|
-
self._name = name
|
|
62631
|
-
self._value = value
|
|
62632
|
-
|
|
62633
|
-
@builtins.property
|
|
62634
|
-
def name(self) -> str:
|
|
62635
|
-
return self._name
|
|
62636
|
-
|
|
62637
|
-
@builtins.property
|
|
62638
|
-
def value(self) -> str:
|
|
62639
|
-
return self._value
|
|
62640
|
-
|
|
62641
|
-
|
|
62642
|
-
secrets_api_Property.__name__ = "Property"
|
|
62643
|
-
secrets_api_Property.__qualname__ = "Property"
|
|
62644
|
-
secrets_api_Property.__module__ = "nominal_api.secrets_api"
|
|
62645
|
-
|
|
62646
|
-
|
|
62647
62744
|
class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
62648
62745
|
_search_text: Optional[str] = None
|
|
62649
62746
|
_label: Optional[str] = None
|
|
62650
|
-
_property: Optional["
|
|
62747
|
+
_property: Optional["api_Property"] = None
|
|
62651
62748
|
_and_: Optional[List["secrets_api_SearchSecretsQuery"]] = None
|
|
62652
62749
|
_or_: Optional[List["secrets_api_SearchSecretsQuery"]] = None
|
|
62653
62750
|
|
|
@@ -62655,8 +62752,8 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62655
62752
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
62656
62753
|
return {
|
|
62657
62754
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
62658
|
-
'label': ConjureFieldDefinition('label',
|
|
62659
|
-
'property': ConjureFieldDefinition('property',
|
|
62755
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
62756
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
62660
62757
|
'and_': ConjureFieldDefinition('and', List[secrets_api_SearchSecretsQuery]),
|
|
62661
62758
|
'or_': ConjureFieldDefinition('or', List[secrets_api_SearchSecretsQuery])
|
|
62662
62759
|
}
|
|
@@ -62665,7 +62762,7 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62665
62762
|
self,
|
|
62666
62763
|
search_text: Optional[str] = None,
|
|
62667
62764
|
label: Optional[str] = None,
|
|
62668
|
-
property: Optional["
|
|
62765
|
+
property: Optional["api_Property"] = None,
|
|
62669
62766
|
and_: Optional[List["secrets_api_SearchSecretsQuery"]] = None,
|
|
62670
62767
|
or_: Optional[List["secrets_api_SearchSecretsQuery"]] = None,
|
|
62671
62768
|
type_of_union: Optional[str] = None
|
|
@@ -62725,7 +62822,7 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62725
62822
|
return self._label
|
|
62726
62823
|
|
|
62727
62824
|
@builtins.property
|
|
62728
|
-
def property(self) -> Optional["
|
|
62825
|
+
def property(self) -> Optional["api_Property"]:
|
|
62729
62826
|
return self._property
|
|
62730
62827
|
|
|
62731
62828
|
@builtins.property
|
|
@@ -62767,7 +62864,7 @@ class secrets_api_SearchSecretsQueryVisitor:
|
|
|
62767
62864
|
pass
|
|
62768
62865
|
|
|
62769
62866
|
@abstractmethod
|
|
62770
|
-
def _property(self, property: "
|
|
62867
|
+
def _property(self, property: "api_Property") -> Any:
|
|
62771
62868
|
pass
|
|
62772
62869
|
|
|
62773
62870
|
@abstractmethod
|
|
@@ -62793,12 +62890,12 @@ class secrets_api_SearchSecretsRequest(ConjureBeanType):
|
|
|
62793
62890
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
62794
62891
|
'sort': ConjureFieldDefinition('sort', secrets_api_SortOptions),
|
|
62795
62892
|
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[scout_backend_Token]),
|
|
62796
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
62893
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
62797
62894
|
}
|
|
62798
62895
|
|
|
62799
62896
|
__slots__: List[str] = ['_query', '_page_size', '_sort', '_token', '_archived_statuses']
|
|
62800
62897
|
|
|
62801
|
-
def __init__(self, query: "secrets_api_SearchSecretsQuery", sort: "secrets_api_SortOptions", archived_statuses: Optional[List["
|
|
62898
|
+
def __init__(self, query: "secrets_api_SearchSecretsQuery", sort: "secrets_api_SortOptions", archived_statuses: Optional[List["api_ArchivedStatus"]] = None, page_size: Optional[int] = None, token: Optional[str] = None) -> None:
|
|
62802
62899
|
self._query = query
|
|
62803
62900
|
self._page_size = page_size
|
|
62804
62901
|
self._sort = sort
|
|
@@ -62825,7 +62922,7 @@ class secrets_api_SearchSecretsRequest(ConjureBeanType):
|
|
|
62825
62922
|
return self._token
|
|
62826
62923
|
|
|
62827
62924
|
@builtins.property
|
|
62828
|
-
def archived_statuses(self) -> Optional[List["
|
|
62925
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
62829
62926
|
"""
|
|
62830
62927
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived secrets in search.
|
|
62831
62928
|
"""
|
|
@@ -62875,8 +62972,8 @@ class secrets_api_Secret(ConjureBeanType):
|
|
|
62875
62972
|
'name': ConjureFieldDefinition('name', str),
|
|
62876
62973
|
'description': ConjureFieldDefinition('description', str),
|
|
62877
62974
|
'created_by': ConjureFieldDefinition('createdBy', str),
|
|
62878
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62879
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62975
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62976
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
62880
62977
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
62881
62978
|
'is_archived': ConjureFieldDefinition('isArchived', bool)
|
|
62882
62979
|
}
|
|
@@ -63249,8 +63346,8 @@ class secrets_api_UpdateSecretRequest(ConjureBeanType):
|
|
|
63249
63346
|
return {
|
|
63250
63347
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
63251
63348
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
63252
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
63253
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
63349
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
63350
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]])
|
|
63254
63351
|
}
|
|
63255
63352
|
|
|
63256
63353
|
__slots__: List[str] = ['_name', '_description', '_properties', '_labels']
|
|
@@ -68979,26 +69076,22 @@ upload_api_UploadService.__qualname__ = "UploadService"
|
|
|
68979
69076
|
upload_api_UploadService.__module__ = "nominal_api.upload_api"
|
|
68980
69077
|
|
|
68981
69078
|
|
|
69079
|
+
api_Label = str
|
|
69080
|
+
|
|
68982
69081
|
timeseries_archetype_api_SeriesArchetypeName = str
|
|
68983
69082
|
|
|
68984
69083
|
ingest_api_S3Path = str
|
|
68985
69084
|
|
|
68986
69085
|
scout_datasource_connection_api_influx_OrgId = str
|
|
68987
69086
|
|
|
68988
|
-
|
|
69087
|
+
api_PropertyValue = str
|
|
68989
69088
|
|
|
68990
69089
|
scout_video_api_S3Path = str
|
|
68991
69090
|
|
|
68992
|
-
secrets_api_Label = str
|
|
68993
|
-
|
|
68994
69091
|
timeseries_logicalseries_api_AttributeName = str
|
|
68995
69092
|
|
|
68996
69093
|
authentication_api_OrgRid = str
|
|
68997
69094
|
|
|
68998
|
-
datasource_PropertyName = str
|
|
68999
|
-
|
|
69000
|
-
ingest_api_PropertyName = str
|
|
69001
|
-
|
|
69002
69095
|
themes_api_ChartThemeRid = str
|
|
69003
69096
|
|
|
69004
69097
|
scout_datareview_api_DataReviewRid = str
|
|
@@ -69011,6 +69104,8 @@ scout_datasource_connection_api_TableName = str
|
|
|
69011
69104
|
|
|
69012
69105
|
timeseries_seriescache_api_Resolution = int
|
|
69013
69106
|
|
|
69107
|
+
api_PropertyName = str
|
|
69108
|
+
|
|
69014
69109
|
scout_catalog_ErrorType = str
|
|
69015
69110
|
|
|
69016
69111
|
scout_integrations_api_IntegrationRid = str
|
|
@@ -69025,8 +69120,6 @@ datasource_DatasetFileId = str
|
|
|
69025
69120
|
|
|
69026
69121
|
api_McapChannelTopic = str
|
|
69027
69122
|
|
|
69028
|
-
ingest_api_Label = str
|
|
69029
|
-
|
|
69030
69123
|
scout_compute_api_VariableName = str
|
|
69031
69124
|
|
|
69032
69125
|
scout_datasource_connection_api_MeasurementName = str
|
|
@@ -69065,8 +69158,6 @@ timeseries_seriescache_api_S3Path = str
|
|
|
69065
69158
|
|
|
69066
69159
|
scout_chart_api_JsonString = str
|
|
69067
69160
|
|
|
69068
|
-
secrets_api_PropertyValue = str
|
|
69069
|
-
|
|
69070
69161
|
attachments_api_S3Path = str
|
|
69071
69162
|
|
|
69072
69163
|
scout_checks_api_JobRid = str
|
|
@@ -69079,7 +69170,7 @@ datasource_pagination_api_PageToken = str
|
|
|
69079
69170
|
|
|
69080
69171
|
scout_datasource_connection_api_ProjectName = str
|
|
69081
69172
|
|
|
69082
|
-
|
|
69173
|
+
api_rids_SegmentRid = str
|
|
69083
69174
|
|
|
69084
69175
|
scout_comparisonnotebook_api_VariableName = str
|
|
69085
69176
|
|
|
@@ -69133,8 +69224,6 @@ scout_rids_api_NotebookRid = str
|
|
|
69133
69224
|
|
|
69134
69225
|
scout_asset_api_SeriesTagValue = str
|
|
69135
69226
|
|
|
69136
|
-
scout_run_api_PropertyValue = str
|
|
69137
|
-
|
|
69138
69227
|
scout_rids_api_UserRid = str
|
|
69139
69228
|
|
|
69140
69229
|
api_rids_DatasetRid = str
|
|
@@ -69149,12 +69238,6 @@ timeseries_logicalseries_api_LocationName = str
|
|
|
69149
69238
|
|
|
69150
69239
|
api_rids_DataSourceRid = str
|
|
69151
69240
|
|
|
69152
|
-
datasource_Label = str
|
|
69153
|
-
|
|
69154
|
-
ingest_api_PropertyValue = str
|
|
69155
|
-
|
|
69156
|
-
scout_run_api_Label = str
|
|
69157
|
-
|
|
69158
69241
|
scout_rids_api_CheckLineageRid = str
|
|
69159
69242
|
|
|
69160
69243
|
scout_rids_api_VizId = str
|
|
@@ -69165,8 +69248,6 @@ scout_video_api_ErrorType = str
|
|
|
69165
69248
|
|
|
69166
69249
|
scout_comparisonnotebook_api_ComparisonChannelVariableMap = Dict[scout_comparisonnotebook_api_VariableName, scout_comparisonnotebook_api_ChannelVariable]
|
|
69167
69250
|
|
|
69168
|
-
scout_video_api_Label = str
|
|
69169
|
-
|
|
69170
69251
|
ingest_api_ErrorType = str
|
|
69171
69252
|
|
|
69172
69253
|
timeseries_logicalseries_api_FieldName = str
|
|
@@ -69197,12 +69278,8 @@ storage_writer_api_MeasurementName = str
|
|
|
69197
69278
|
|
|
69198
69279
|
storage_datasource_api_NominalDataSourceId = str
|
|
69199
69280
|
|
|
69200
|
-
scout_video_api_PropertyValue = str
|
|
69201
|
-
|
|
69202
69281
|
scout_datareview_api_AutomaticCheckEvaluationRid = str
|
|
69203
69282
|
|
|
69204
|
-
scout_video_api_PropertyName = str
|
|
69205
|
-
|
|
69206
69283
|
scout_compute_api_ErrorType = str
|
|
69207
69284
|
|
|
69208
69285
|
comments_api_ResourceRid = str
|
|
@@ -69247,8 +69324,6 @@ scout_rids_api_AssetRid = str
|
|
|
69247
69324
|
|
|
69248
69325
|
comments_api_CommentRid = str
|
|
69249
69326
|
|
|
69250
|
-
scout_run_api_PropertyName = str
|
|
69251
|
-
|
|
69252
69327
|
scout_chartdefinition_api_DataSourceRefName = str
|
|
69253
69328
|
|
|
69254
69329
|
api_LogicalSeriesRid = str
|
|
@@ -69263,15 +69338,9 @@ scout_datasource_connection_api_OrganizationRid = str
|
|
|
69263
69338
|
|
|
69264
69339
|
scout_rids_api_CheckRid = str
|
|
69265
69340
|
|
|
69266
|
-
secrets_api_PropertyName = str
|
|
69267
|
-
|
|
69268
69341
|
timeseries_logicalseries_api_ProjectName = str
|
|
69269
69342
|
|
|
69270
69343
|
api_Channel = str
|
|
69271
69344
|
|
|
69272
|
-
attachments_api_PropertyValue = str
|
|
69273
|
-
|
|
69274
69345
|
scout_datasource_connection_api_SecretName = str
|
|
69275
69346
|
|
|
69276
|
-
attachments_api_Label = str
|
|
69277
|
-
|