nominal-api 0.546.0__py3-none-any.whl → 0.547.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 +338 -423
- 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 +1 -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.547.0.dist-info}/METADATA +1 -1
- {nominal_api-0.546.0.dist-info → nominal_api-0.547.0.dist-info}/RECORD +17 -17
- {nominal_api-0.546.0.dist-info → nominal_api-0.547.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.546.0.dist-info → nominal_api-0.547.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
|
|
|
@@ -30237,6 +30226,32 @@ scout_compute_api_EnumBucket.__qualname__ = "EnumBucket"
|
|
|
30237
30226
|
scout_compute_api_EnumBucket.__module__ = "nominal_api.scout_compute_api"
|
|
30238
30227
|
|
|
30239
30228
|
|
|
30229
|
+
class scout_compute_api_EnumCountDuplicateSeries(ConjureBeanType):
|
|
30230
|
+
"""
|
|
30231
|
+
Counts the number of points along each timestamp in the input series.
|
|
30232
|
+
"""
|
|
30233
|
+
|
|
30234
|
+
@builtins.classmethod
|
|
30235
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
30236
|
+
return {
|
|
30237
|
+
'inputs': ConjureFieldDefinition('inputs', List[scout_compute_api_EnumSeries])
|
|
30238
|
+
}
|
|
30239
|
+
|
|
30240
|
+
__slots__: List[str] = ['_inputs']
|
|
30241
|
+
|
|
30242
|
+
def __init__(self, inputs: List["scout_compute_api_EnumSeries"]) -> None:
|
|
30243
|
+
self._inputs = inputs
|
|
30244
|
+
|
|
30245
|
+
@builtins.property
|
|
30246
|
+
def inputs(self) -> List["scout_compute_api_EnumSeries"]:
|
|
30247
|
+
return self._inputs
|
|
30248
|
+
|
|
30249
|
+
|
|
30250
|
+
scout_compute_api_EnumCountDuplicateSeries.__name__ = "EnumCountDuplicateSeries"
|
|
30251
|
+
scout_compute_api_EnumCountDuplicateSeries.__qualname__ = "EnumCountDuplicateSeries"
|
|
30252
|
+
scout_compute_api_EnumCountDuplicateSeries.__module__ = "nominal_api.scout_compute_api"
|
|
30253
|
+
|
|
30254
|
+
|
|
30240
30255
|
class scout_compute_api_EnumFilterOperator(ConjureEnumType):
|
|
30241
30256
|
|
|
30242
30257
|
IS_IN = 'IS_IN'
|
|
@@ -32884,6 +32899,8 @@ class scout_compute_api_NumericAggregationFunction(ConjureEnumType):
|
|
|
32884
32899
|
'''MIN'''
|
|
32885
32900
|
MAX = 'MAX'
|
|
32886
32901
|
'''MAX'''
|
|
32902
|
+
COUNT = 'COUNT'
|
|
32903
|
+
'''COUNT'''
|
|
32887
32904
|
UNKNOWN = 'UNKNOWN'
|
|
32888
32905
|
'''UNKNOWN'''
|
|
32889
32906
|
|
|
@@ -33314,6 +33331,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33314
33331
|
_aggregate: Optional["scout_compute_api_AggregateNumericSeries"] = None
|
|
33315
33332
|
_arithmetic: Optional["scout_compute_api_ArithmeticSeries"] = None
|
|
33316
33333
|
_bit_operation: Optional["scout_compute_api_BitOperationSeries"] = None
|
|
33334
|
+
_count_duplicate: Optional["scout_compute_api_EnumCountDuplicateSeries"] = None
|
|
33317
33335
|
_cumulative_sum: Optional["scout_compute_api_CumulativeSumSeries"] = None
|
|
33318
33336
|
_derivative: Optional["scout_compute_api_DerivativeSeries"] = None
|
|
33319
33337
|
_function: Optional["scout_compute_api_NumericSeriesFunction"] = None
|
|
@@ -33347,6 +33365,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33347
33365
|
'aggregate': ConjureFieldDefinition('aggregate', scout_compute_api_AggregateNumericSeries),
|
|
33348
33366
|
'arithmetic': ConjureFieldDefinition('arithmetic', scout_compute_api_ArithmeticSeries),
|
|
33349
33367
|
'bit_operation': ConjureFieldDefinition('bitOperation', scout_compute_api_BitOperationSeries),
|
|
33368
|
+
'count_duplicate': ConjureFieldDefinition('countDuplicate', scout_compute_api_EnumCountDuplicateSeries),
|
|
33350
33369
|
'cumulative_sum': ConjureFieldDefinition('cumulativeSum', scout_compute_api_CumulativeSumSeries),
|
|
33351
33370
|
'derivative': ConjureFieldDefinition('derivative', scout_compute_api_DerivativeSeries),
|
|
33352
33371
|
'function': ConjureFieldDefinition('function', scout_compute_api_NumericSeriesFunction),
|
|
@@ -33380,6 +33399,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33380
33399
|
aggregate: Optional["scout_compute_api_AggregateNumericSeries"] = None,
|
|
33381
33400
|
arithmetic: Optional["scout_compute_api_ArithmeticSeries"] = None,
|
|
33382
33401
|
bit_operation: Optional["scout_compute_api_BitOperationSeries"] = None,
|
|
33402
|
+
count_duplicate: Optional["scout_compute_api_EnumCountDuplicateSeries"] = None,
|
|
33383
33403
|
cumulative_sum: Optional["scout_compute_api_CumulativeSumSeries"] = None,
|
|
33384
33404
|
derivative: Optional["scout_compute_api_DerivativeSeries"] = None,
|
|
33385
33405
|
function: Optional["scout_compute_api_NumericSeriesFunction"] = None,
|
|
@@ -33409,7 +33429,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33409
33429
|
type_of_union: Optional[str] = None
|
|
33410
33430
|
) -> None:
|
|
33411
33431
|
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:
|
|
33432
|
+
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) != 1:
|
|
33413
33433
|
raise ValueError('a union must contain a single member')
|
|
33414
33434
|
|
|
33415
33435
|
if aggregate is not None:
|
|
@@ -33421,6 +33441,9 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33421
33441
|
if bit_operation is not None:
|
|
33422
33442
|
self._bit_operation = bit_operation
|
|
33423
33443
|
self._type = 'bitOperation'
|
|
33444
|
+
if count_duplicate is not None:
|
|
33445
|
+
self._count_duplicate = count_duplicate
|
|
33446
|
+
self._type = 'countDuplicate'
|
|
33424
33447
|
if cumulative_sum is not None:
|
|
33425
33448
|
self._cumulative_sum = cumulative_sum
|
|
33426
33449
|
self._type = 'cumulativeSum'
|
|
@@ -33515,6 +33538,11 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33515
33538
|
raise ValueError('a union value must not be None')
|
|
33516
33539
|
self._bit_operation = bit_operation
|
|
33517
33540
|
self._type = 'bitOperation'
|
|
33541
|
+
elif type_of_union == 'countDuplicate':
|
|
33542
|
+
if count_duplicate is None:
|
|
33543
|
+
raise ValueError('a union value must not be None')
|
|
33544
|
+
self._count_duplicate = count_duplicate
|
|
33545
|
+
self._type = 'countDuplicate'
|
|
33518
33546
|
elif type_of_union == 'cumulativeSum':
|
|
33519
33547
|
if cumulative_sum is None:
|
|
33520
33548
|
raise ValueError('a union value must not be None')
|
|
@@ -33658,6 +33686,10 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33658
33686
|
def bit_operation(self) -> Optional["scout_compute_api_BitOperationSeries"]:
|
|
33659
33687
|
return self._bit_operation
|
|
33660
33688
|
|
|
33689
|
+
@builtins.property
|
|
33690
|
+
def count_duplicate(self) -> Optional["scout_compute_api_EnumCountDuplicateSeries"]:
|
|
33691
|
+
return self._count_duplicate
|
|
33692
|
+
|
|
33661
33693
|
@builtins.property
|
|
33662
33694
|
def cumulative_sum(self) -> Optional["scout_compute_api_CumulativeSumSeries"]:
|
|
33663
33695
|
return self._cumulative_sum
|
|
@@ -33771,6 +33803,8 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33771
33803
|
return visitor._arithmetic(self.arithmetic)
|
|
33772
33804
|
if self._type == 'bitOperation' and self.bit_operation is not None:
|
|
33773
33805
|
return visitor._bit_operation(self.bit_operation)
|
|
33806
|
+
if self._type == 'countDuplicate' and self.count_duplicate is not None:
|
|
33807
|
+
return visitor._count_duplicate(self.count_duplicate)
|
|
33774
33808
|
if self._type == 'cumulativeSum' and self.cumulative_sum is not None:
|
|
33775
33809
|
return visitor._cumulative_sum(self.cumulative_sum)
|
|
33776
33810
|
if self._type == 'derivative' and self.derivative is not None:
|
|
@@ -33844,6 +33878,10 @@ class scout_compute_api_NumericSeriesVisitor:
|
|
|
33844
33878
|
def _bit_operation(self, bit_operation: "scout_compute_api_BitOperationSeries") -> Any:
|
|
33845
33879
|
pass
|
|
33846
33880
|
|
|
33881
|
+
@abstractmethod
|
|
33882
|
+
def _count_duplicate(self, count_duplicate: "scout_compute_api_EnumCountDuplicateSeries") -> Any:
|
|
33883
|
+
pass
|
|
33884
|
+
|
|
33847
33885
|
@abstractmethod
|
|
33848
33886
|
def _cumulative_sum(self, cumulative_sum: "scout_compute_api_CumulativeSumSeries") -> Any:
|
|
33849
33887
|
pass
|
|
@@ -34113,6 +34151,8 @@ class scout_compute_api_NumericUnionOperation(ConjureEnumType):
|
|
|
34113
34151
|
'''MEAN'''
|
|
34114
34152
|
SUM = 'SUM'
|
|
34115
34153
|
'''SUM'''
|
|
34154
|
+
COUNT = 'COUNT'
|
|
34155
|
+
'''COUNT'''
|
|
34116
34156
|
THROW = 'THROW'
|
|
34117
34157
|
'''THROW'''
|
|
34118
34158
|
UNKNOWN = 'UNKNOWN'
|
|
@@ -41183,6 +41223,29 @@ scout_compute_resolved_api_DerivativeSeriesNode.__qualname__ = "DerivativeSeries
|
|
|
41183
41223
|
scout_compute_resolved_api_DerivativeSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
41184
41224
|
|
|
41185
41225
|
|
|
41226
|
+
class scout_compute_resolved_api_EnumCountDuplicateSeriesNode(ConjureBeanType):
|
|
41227
|
+
|
|
41228
|
+
@builtins.classmethod
|
|
41229
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
41230
|
+
return {
|
|
41231
|
+
'inputs': ConjureFieldDefinition('inputs', List[scout_compute_resolved_api_EnumSeriesNode])
|
|
41232
|
+
}
|
|
41233
|
+
|
|
41234
|
+
__slots__: List[str] = ['_inputs']
|
|
41235
|
+
|
|
41236
|
+
def __init__(self, inputs: List["scout_compute_resolved_api_EnumSeriesNode"]) -> None:
|
|
41237
|
+
self._inputs = inputs
|
|
41238
|
+
|
|
41239
|
+
@builtins.property
|
|
41240
|
+
def inputs(self) -> List["scout_compute_resolved_api_EnumSeriesNode"]:
|
|
41241
|
+
return self._inputs
|
|
41242
|
+
|
|
41243
|
+
|
|
41244
|
+
scout_compute_resolved_api_EnumCountDuplicateSeriesNode.__name__ = "EnumCountDuplicateSeriesNode"
|
|
41245
|
+
scout_compute_resolved_api_EnumCountDuplicateSeriesNode.__qualname__ = "EnumCountDuplicateSeriesNode"
|
|
41246
|
+
scout_compute_resolved_api_EnumCountDuplicateSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
41247
|
+
|
|
41248
|
+
|
|
41186
41249
|
class scout_compute_resolved_api_EnumEqualityRangesNode(ConjureBeanType):
|
|
41187
41250
|
|
|
41188
41251
|
@builtins.classmethod
|
|
@@ -42569,6 +42632,7 @@ scout_compute_resolved_api_NumericResampleSeriesNode.__module__ = "nominal_api.s
|
|
|
42569
42632
|
class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
42570
42633
|
_arithmetic: Optional["scout_compute_resolved_api_ArithmeticSeriesNode"] = None
|
|
42571
42634
|
_bit_operation: Optional["scout_compute_resolved_api_BitOperationSeriesNode"] = None
|
|
42635
|
+
_count_duplicate: Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"] = None
|
|
42572
42636
|
_cumulative_sum: Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"] = None
|
|
42573
42637
|
_derivative: Optional["scout_compute_resolved_api_DerivativeSeriesNode"] = None
|
|
42574
42638
|
_integral: Optional["scout_compute_resolved_api_IntegralSeriesNode"] = None
|
|
@@ -42599,6 +42663,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42599
42663
|
return {
|
|
42600
42664
|
'arithmetic': ConjureFieldDefinition('arithmetic', scout_compute_resolved_api_ArithmeticSeriesNode),
|
|
42601
42665
|
'bit_operation': ConjureFieldDefinition('bitOperation', scout_compute_resolved_api_BitOperationSeriesNode),
|
|
42666
|
+
'count_duplicate': ConjureFieldDefinition('countDuplicate', scout_compute_resolved_api_EnumCountDuplicateSeriesNode),
|
|
42602
42667
|
'cumulative_sum': ConjureFieldDefinition('cumulativeSum', scout_compute_resolved_api_CumulativeSumSeriesNode),
|
|
42603
42668
|
'derivative': ConjureFieldDefinition('derivative', scout_compute_resolved_api_DerivativeSeriesNode),
|
|
42604
42669
|
'integral': ConjureFieldDefinition('integral', scout_compute_resolved_api_IntegralSeriesNode),
|
|
@@ -42629,6 +42694,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42629
42694
|
self,
|
|
42630
42695
|
arithmetic: Optional["scout_compute_resolved_api_ArithmeticSeriesNode"] = None,
|
|
42631
42696
|
bit_operation: Optional["scout_compute_resolved_api_BitOperationSeriesNode"] = None,
|
|
42697
|
+
count_duplicate: Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"] = None,
|
|
42632
42698
|
cumulative_sum: Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"] = None,
|
|
42633
42699
|
derivative: Optional["scout_compute_resolved_api_DerivativeSeriesNode"] = None,
|
|
42634
42700
|
integral: Optional["scout_compute_resolved_api_IntegralSeriesNode"] = None,
|
|
@@ -42656,7 +42722,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42656
42722
|
type_of_union: Optional[str] = None
|
|
42657
42723
|
) -> None:
|
|
42658
42724
|
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:
|
|
42725
|
+
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
42726
|
raise ValueError('a union must contain a single member')
|
|
42661
42727
|
|
|
42662
42728
|
if arithmetic is not None:
|
|
@@ -42665,6 +42731,9 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42665
42731
|
if bit_operation is not None:
|
|
42666
42732
|
self._bit_operation = bit_operation
|
|
42667
42733
|
self._type = 'bitOperation'
|
|
42734
|
+
if count_duplicate is not None:
|
|
42735
|
+
self._count_duplicate = count_duplicate
|
|
42736
|
+
self._type = 'countDuplicate'
|
|
42668
42737
|
if cumulative_sum is not None:
|
|
42669
42738
|
self._cumulative_sum = cumulative_sum
|
|
42670
42739
|
self._type = 'cumulativeSum'
|
|
@@ -42748,6 +42817,11 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42748
42817
|
raise ValueError('a union value must not be None')
|
|
42749
42818
|
self._bit_operation = bit_operation
|
|
42750
42819
|
self._type = 'bitOperation'
|
|
42820
|
+
elif type_of_union == 'countDuplicate':
|
|
42821
|
+
if count_duplicate is None:
|
|
42822
|
+
raise ValueError('a union value must not be None')
|
|
42823
|
+
self._count_duplicate = count_duplicate
|
|
42824
|
+
self._type = 'countDuplicate'
|
|
42751
42825
|
elif type_of_union == 'cumulativeSum':
|
|
42752
42826
|
if cumulative_sum is None:
|
|
42753
42827
|
raise ValueError('a union value must not be None')
|
|
@@ -42877,6 +42951,10 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42877
42951
|
def bit_operation(self) -> Optional["scout_compute_resolved_api_BitOperationSeriesNode"]:
|
|
42878
42952
|
return self._bit_operation
|
|
42879
42953
|
|
|
42954
|
+
@builtins.property
|
|
42955
|
+
def count_duplicate(self) -> Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"]:
|
|
42956
|
+
return self._count_duplicate
|
|
42957
|
+
|
|
42880
42958
|
@builtins.property
|
|
42881
42959
|
def cumulative_sum(self) -> Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"]:
|
|
42882
42960
|
return self._cumulative_sum
|
|
@@ -42980,6 +43058,8 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42980
43058
|
return visitor._arithmetic(self.arithmetic)
|
|
42981
43059
|
if self._type == 'bitOperation' and self.bit_operation is not None:
|
|
42982
43060
|
return visitor._bit_operation(self.bit_operation)
|
|
43061
|
+
if self._type == 'countDuplicate' and self.count_duplicate is not None:
|
|
43062
|
+
return visitor._count_duplicate(self.count_duplicate)
|
|
42983
43063
|
if self._type == 'cumulativeSum' and self.cumulative_sum is not None:
|
|
42984
43064
|
return visitor._cumulative_sum(self.cumulative_sum)
|
|
42985
43065
|
if self._type == 'derivative' and self.derivative is not None:
|
|
@@ -43045,6 +43125,10 @@ class scout_compute_resolved_api_NumericSeriesNodeVisitor:
|
|
|
43045
43125
|
def _bit_operation(self, bit_operation: "scout_compute_resolved_api_BitOperationSeriesNode") -> Any:
|
|
43046
43126
|
pass
|
|
43047
43127
|
|
|
43128
|
+
@abstractmethod
|
|
43129
|
+
def _count_duplicate(self, count_duplicate: "scout_compute_resolved_api_EnumCountDuplicateSeriesNode") -> Any:
|
|
43130
|
+
pass
|
|
43131
|
+
|
|
43048
43132
|
@abstractmethod
|
|
43049
43133
|
def _cumulative_sum(self, cumulative_sum: "scout_compute_resolved_api_CumulativeSumSeriesNode") -> Any:
|
|
43050
43134
|
pass
|
|
@@ -47161,12 +47245,12 @@ class scout_datareview_api_CheckAlertsHistogramRequest(ConjureBeanType):
|
|
|
47161
47245
|
'chart_rids': ConjureFieldDefinition('chartRids', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
47162
47246
|
'notebook_rids': ConjureFieldDefinition('notebookRids', OptionalTypeWrapper[List[scout_rids_api_NotebookRid]]),
|
|
47163
47247
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
47164
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
47248
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
47165
47249
|
}
|
|
47166
47250
|
|
|
47167
47251
|
__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
47252
|
|
|
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["
|
|
47253
|
+
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
47254
|
self._num_bins = num_bins
|
|
47171
47255
|
self._search_text = search_text
|
|
47172
47256
|
self._distribution_variable = distribution_variable
|
|
@@ -47277,7 +47361,7 @@ in search results.
|
|
|
47277
47361
|
return self._show_archived
|
|
47278
47362
|
|
|
47279
47363
|
@builtins.property
|
|
47280
|
-
def archived_statuses(self) -> Optional[List["
|
|
47364
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
47281
47365
|
"""
|
|
47282
47366
|
Filters search on check alerts based on the archived statuses provided.
|
|
47283
47367
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -48753,12 +48837,12 @@ If commitId is omitted from a ChecklistRef, it will match all commits.
|
|
|
48753
48837
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
48754
48838
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
48755
48839
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
48756
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
48840
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
48757
48841
|
}
|
|
48758
48842
|
|
|
48759
48843
|
__slots__: List[str] = ['_run_rids', '_asset_rids', '_checklist_refs', '_next_page_token', '_page_size', '_show_archived', '_archived_statuses']
|
|
48760
48844
|
|
|
48761
|
-
def __init__(self, asset_rids: List[str], checklist_refs: List["scout_checks_api_ChecklistRef"], run_rids: List[str], archived_statuses: Optional[List["
|
|
48845
|
+
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
48846
|
self._run_rids = run_rids
|
|
48763
48847
|
self._asset_rids = asset_rids
|
|
48764
48848
|
self._checklist_refs = checklist_refs
|
|
@@ -48799,7 +48883,7 @@ in search results alongside non-archived ones. Defaults to false if not specifie
|
|
|
48799
48883
|
return self._show_archived
|
|
48800
48884
|
|
|
48801
48885
|
@builtins.property
|
|
48802
|
-
def archived_statuses(self) -> Optional[List["
|
|
48886
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
48803
48887
|
"""
|
|
48804
48888
|
Filters search on data reviews based on the archived statuses provided.
|
|
48805
48889
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -50042,12 +50126,12 @@ class scout_datareview_api_SearchCheckAlertsRequest(ConjureBeanType):
|
|
|
50042
50126
|
'chart_rids': ConjureFieldDefinition('chartRids', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
50043
50127
|
'notebook_rids': ConjureFieldDefinition('notebookRids', OptionalTypeWrapper[List[scout_rids_api_NotebookRid]]),
|
|
50044
50128
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
50045
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
50129
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
50046
50130
|
}
|
|
50047
50131
|
|
|
50048
50132
|
__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
50133
|
|
|
50050
|
-
def __init__(self, asset_rids: List[str], run_rids: List[str], after: Optional["api_Timestamp"] = None, archived_statuses: Optional[List["
|
|
50134
|
+
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
50135
|
self._next_page_token = next_page_token
|
|
50052
50136
|
self._page_size = page_size
|
|
50053
50137
|
self._sort_by = sort_by
|
|
@@ -50155,7 +50239,7 @@ results. If not present or false, will not show archived data reviews in search
|
|
|
50155
50239
|
return self._show_archived
|
|
50156
50240
|
|
|
50157
50241
|
@builtins.property
|
|
50158
|
-
def archived_statuses(self) -> Optional[List["
|
|
50242
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
50159
50243
|
"""
|
|
50160
50244
|
Filters search on check alerts based on the archived statuses provided.
|
|
50161
50245
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -54162,7 +54246,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54162
54246
|
_exact_match: Optional[str] = None
|
|
54163
54247
|
_search_text: Optional[str] = None
|
|
54164
54248
|
_label: Optional[str] = None
|
|
54165
|
-
_property: Optional["
|
|
54249
|
+
_property: Optional["api_Property"] = None
|
|
54166
54250
|
_and_: Optional[List["scout_internal_search_api_SearchQuery"]] = None
|
|
54167
54251
|
_or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None
|
|
54168
54252
|
|
|
@@ -54176,8 +54260,8 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54176
54260
|
'boolean_field': ConjureFieldDefinition('booleanField', scout_internal_search_api_BooleanField),
|
|
54177
54261
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
54178
54262
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
54179
|
-
'label': ConjureFieldDefinition('label',
|
|
54180
|
-
'property': ConjureFieldDefinition('property',
|
|
54263
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
54264
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
54181
54265
|
'and_': ConjureFieldDefinition('and', List[scout_internal_search_api_SearchQuery]),
|
|
54182
54266
|
'or_': ConjureFieldDefinition('or', List[scout_internal_search_api_SearchQuery])
|
|
54183
54267
|
}
|
|
@@ -54192,7 +54276,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54192
54276
|
exact_match: Optional[str] = None,
|
|
54193
54277
|
search_text: Optional[str] = None,
|
|
54194
54278
|
label: Optional[str] = None,
|
|
54195
|
-
property: Optional["
|
|
54279
|
+
property: Optional["api_Property"] = None,
|
|
54196
54280
|
and_: Optional[List["scout_internal_search_api_SearchQuery"]] = None,
|
|
54197
54281
|
or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None,
|
|
54198
54282
|
type_of_union: Optional[str] = None
|
|
@@ -54327,7 +54411,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54327
54411
|
return self._label
|
|
54328
54412
|
|
|
54329
54413
|
@builtins.property
|
|
54330
|
-
def property(self) -> Optional["
|
|
54414
|
+
def property(self) -> Optional["api_Property"]:
|
|
54331
54415
|
return self._property
|
|
54332
54416
|
|
|
54333
54417
|
@builtins.property
|
|
@@ -54405,7 +54489,7 @@ class scout_internal_search_api_SearchQueryVisitor:
|
|
|
54405
54489
|
pass
|
|
54406
54490
|
|
|
54407
54491
|
@abstractmethod
|
|
54408
|
-
def _property(self, property: "
|
|
54492
|
+
def _property(self, property: "api_Property") -> Any:
|
|
54409
54493
|
pass
|
|
54410
54494
|
|
|
54411
54495
|
@abstractmethod
|
|
@@ -55390,8 +55474,8 @@ class scout_metadata_ListPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
55390
55474
|
@builtins.classmethod
|
|
55391
55475
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
55392
55476
|
return {
|
|
55393
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55394
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55477
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
55478
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55395
55479
|
}
|
|
55396
55480
|
|
|
55397
55481
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -55613,8 +55697,8 @@ class scout_notebook_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
55613
55697
|
@builtins.classmethod
|
|
55614
55698
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
55615
55699
|
return {
|
|
55616
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55617
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55700
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
55701
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55618
55702
|
}
|
|
55619
55703
|
|
|
55620
55704
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -55841,8 +55925,8 @@ class scout_notebook_api_NotebookMetadata(ConjureBeanType):
|
|
|
55841
55925
|
'lock': ConjureFieldDefinition('lock', scout_notebook_api_Lock),
|
|
55842
55926
|
'created_by_rid': ConjureFieldDefinition('createdByRid', scout_rids_api_UserRid),
|
|
55843
55927
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
55844
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55845
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55928
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
55929
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55846
55930
|
}
|
|
55847
55931
|
|
|
55848
55932
|
__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 +56055,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
55971
56055
|
_exact_match: Optional[str] = None
|
|
55972
56056
|
_search_text: Optional[str] = None
|
|
55973
56057
|
_label: Optional[str] = None
|
|
55974
|
-
_property: Optional["
|
|
56058
|
+
_property: Optional["api_Property"] = None
|
|
55975
56059
|
_asset_rid: Optional[str] = None
|
|
55976
56060
|
_author_rid: Optional[str] = None
|
|
55977
56061
|
_run_rid: Optional[str] = None
|
|
@@ -55986,8 +56070,8 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
55986
56070
|
'or_': ConjureFieldDefinition('or', List[scout_notebook_api_SearchNotebooksQuery]),
|
|
55987
56071
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
55988
56072
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
55989
|
-
'label': ConjureFieldDefinition('label',
|
|
55990
|
-
'property': ConjureFieldDefinition('property',
|
|
56073
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
56074
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
55991
56075
|
'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
|
|
55992
56076
|
'author_rid': ConjureFieldDefinition('authorRid', scout_rids_api_UserRid),
|
|
55993
56077
|
'run_rid': ConjureFieldDefinition('runRid', scout_run_api_RunRid),
|
|
@@ -56003,7 +56087,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
56003
56087
|
exact_match: Optional[str] = None,
|
|
56004
56088
|
search_text: Optional[str] = None,
|
|
56005
56089
|
label: Optional[str] = None,
|
|
56006
|
-
property: Optional["
|
|
56090
|
+
property: Optional["api_Property"] = None,
|
|
56007
56091
|
asset_rid: Optional[str] = None,
|
|
56008
56092
|
author_rid: Optional[str] = None,
|
|
56009
56093
|
run_rid: Optional[str] = None,
|
|
@@ -56138,7 +56222,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
56138
56222
|
return self._label
|
|
56139
56223
|
|
|
56140
56224
|
@builtins.property
|
|
56141
|
-
def property(self) -> Optional["
|
|
56225
|
+
def property(self) -> Optional["api_Property"]:
|
|
56142
56226
|
return self._property
|
|
56143
56227
|
|
|
56144
56228
|
@builtins.property
|
|
@@ -56222,7 +56306,7 @@ class scout_notebook_api_SearchNotebooksQueryVisitor:
|
|
|
56222
56306
|
pass
|
|
56223
56307
|
|
|
56224
56308
|
@abstractmethod
|
|
56225
|
-
def _property(self, property: "
|
|
56309
|
+
def _property(self, property: "api_Property") -> Any:
|
|
56226
56310
|
pass
|
|
56227
56311
|
|
|
56228
56312
|
@abstractmethod
|
|
@@ -56406,8 +56490,8 @@ class scout_notebook_api_UpdateNotebookMetadataRequest(ConjureBeanType):
|
|
|
56406
56490
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
56407
56491
|
'data_scope': ConjureFieldDefinition('dataScope', OptionalTypeWrapper[scout_notebook_api_NotebookDataScope]),
|
|
56408
56492
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
56409
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
56410
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
56493
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
56494
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
56411
56495
|
'is_draft': ConjureFieldDefinition('isDraft', OptionalTypeWrapper[bool])
|
|
56412
56496
|
}
|
|
56413
56497
|
|
|
@@ -56532,24 +56616,6 @@ scout_plotting_TimestampType.__qualname__ = "TimestampType"
|
|
|
56532
56616
|
scout_plotting_TimestampType.__module__ = "nominal_api.scout_plotting"
|
|
56533
56617
|
|
|
56534
56618
|
|
|
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
56619
|
class scout_rids_api_CheckAlertState(ConjureUnionType):
|
|
56554
56620
|
_pending_review: Optional["scout_rids_api_PendingReviewAlertState"] = None
|
|
56555
56621
|
_closed_with_further_action: Optional["scout_rids_api_ClosedWithFurtherActionAlertState"] = None
|
|
@@ -56772,8 +56838,8 @@ class scout_run_api_AllRunsPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
56772
56838
|
@builtins.classmethod
|
|
56773
56839
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
56774
56840
|
return {
|
|
56775
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
56776
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
56841
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
56842
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
56777
56843
|
}
|
|
56778
56844
|
|
|
56779
56845
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -56961,8 +57027,8 @@ class scout_run_api_CreateRunRequest(ConjureBeanType):
|
|
|
56961
57027
|
'description': ConjureFieldDefinition('description', str),
|
|
56962
57028
|
'start_time': ConjureFieldDefinition('startTime', scout_run_api_UtcTimestamp),
|
|
56963
57029
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
56964
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
56965
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
57030
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
57031
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
56966
57032
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
56967
57033
|
'run_prefix': ConjureFieldDefinition('runPrefix', OptionalTypeWrapper[str]),
|
|
56968
57034
|
'data_sources': ConjureFieldDefinition('dataSources', Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]),
|
|
@@ -57497,35 +57563,6 @@ scout_run_api_Link.__qualname__ = "Link"
|
|
|
57497
57563
|
scout_run_api_Link.__module__ = "nominal_api.scout_run_api"
|
|
57498
57564
|
|
|
57499
57565
|
|
|
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
57566
|
class scout_run_api_RefNameAndType(ConjureBeanType):
|
|
57530
57567
|
"""
|
|
57531
57568
|
Scoped to the org-level, intended to help the frontend
|
|
@@ -57573,8 +57610,8 @@ class scout_run_api_Run(ConjureBeanType):
|
|
|
57573
57610
|
'author_rid': ConjureFieldDefinition('authorRid', OptionalTypeWrapper[scout_rids_api_UserRid]),
|
|
57574
57611
|
'start_time': ConjureFieldDefinition('startTime', scout_run_api_UtcTimestamp),
|
|
57575
57612
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
57576
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
57577
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
57613
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
57614
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
57578
57615
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
57579
57616
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
57580
57617
|
'updated_at': ConjureFieldDefinition('updatedAt', str),
|
|
@@ -57890,7 +57927,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57890
57927
|
_search_text: Optional[str] = None
|
|
57891
57928
|
_asset: Optional[str] = None
|
|
57892
57929
|
_label: Optional[str] = None
|
|
57893
|
-
_property: Optional["
|
|
57930
|
+
_property: Optional["api_Property"] = None
|
|
57894
57931
|
_data_source_series_tag: Optional["scout_run_api_DataSourceSeriesTag"] = None
|
|
57895
57932
|
_data_source_ref_name: Optional[str] = None
|
|
57896
57933
|
_data_source: Optional["scout_run_api_DataSource"] = None
|
|
@@ -57906,8 +57943,8 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57906
57943
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
57907
57944
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
57908
57945
|
'asset': ConjureFieldDefinition('asset', scout_rids_api_AssetRid),
|
|
57909
|
-
'label': ConjureFieldDefinition('label',
|
|
57910
|
-
'property': ConjureFieldDefinition('property',
|
|
57946
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
57947
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
57911
57948
|
'data_source_series_tag': ConjureFieldDefinition('dataSourceSeriesTag', scout_run_api_DataSourceSeriesTag),
|
|
57912
57949
|
'data_source_ref_name': ConjureFieldDefinition('dataSourceRefName', scout_api_DataSourceRefName),
|
|
57913
57950
|
'data_source': ConjureFieldDefinition('dataSource', scout_run_api_DataSource),
|
|
@@ -57924,7 +57961,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57924
57961
|
search_text: Optional[str] = None,
|
|
57925
57962
|
asset: Optional[str] = None,
|
|
57926
57963
|
label: Optional[str] = None,
|
|
57927
|
-
property: Optional["
|
|
57964
|
+
property: Optional["api_Property"] = None,
|
|
57928
57965
|
data_source_series_tag: Optional["scout_run_api_DataSourceSeriesTag"] = None,
|
|
57929
57966
|
data_source_ref_name: Optional[str] = None,
|
|
57930
57967
|
data_source: Optional["scout_run_api_DataSource"] = None,
|
|
@@ -58071,7 +58108,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
58071
58108
|
return self._label
|
|
58072
58109
|
|
|
58073
58110
|
@builtins.property
|
|
58074
|
-
def property(self) -> Optional["
|
|
58111
|
+
def property(self) -> Optional["api_Property"]:
|
|
58075
58112
|
return self._property
|
|
58076
58113
|
|
|
58077
58114
|
@builtins.property
|
|
@@ -58164,7 +58201,7 @@ class scout_run_api_SearchQueryVisitor:
|
|
|
58164
58201
|
pass
|
|
58165
58202
|
|
|
58166
58203
|
@abstractmethod
|
|
58167
|
-
def _property(self, property: "
|
|
58204
|
+
def _property(self, property: "api_Property") -> Any:
|
|
58168
58205
|
pass
|
|
58169
58206
|
|
|
58170
58207
|
@abstractmethod
|
|
@@ -58528,8 +58565,8 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
|
|
|
58528
58565
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
58529
58566
|
'start_time': ConjureFieldDefinition('startTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
58530
58567
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
58531
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
58532
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
58568
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
58569
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
58533
58570
|
'links': ConjureFieldDefinition('links', OptionalTypeWrapper[List[scout_run_api_Link]]),
|
|
58534
58571
|
'run_prefix': ConjureFieldDefinition('runPrefix', OptionalTypeWrapper[str]),
|
|
58535
58572
|
'data_sources': ConjureFieldDefinition('dataSources', OptionalTypeWrapper[Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]]),
|
|
@@ -58718,8 +58755,8 @@ class scout_template_api_CreateTemplateRequest(ConjureBeanType):
|
|
|
58718
58755
|
return {
|
|
58719
58756
|
'title': ConjureFieldDefinition('title', str),
|
|
58720
58757
|
'description': ConjureFieldDefinition('description', str),
|
|
58721
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
58722
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
58758
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
58759
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
58723
58760
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool]),
|
|
58724
58761
|
'charts': ConjureFieldDefinition('charts', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
58725
58762
|
'layout': ConjureFieldDefinition('layout', scout_layout_api_WorkbookLayout),
|
|
@@ -58790,8 +58827,8 @@ class scout_template_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
58790
58827
|
@builtins.classmethod
|
|
58791
58828
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58792
58829
|
return {
|
|
58793
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
58794
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
58830
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
58831
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
58795
58832
|
}
|
|
58796
58833
|
|
|
58797
58834
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -58907,7 +58944,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58907
58944
|
_exact_match: Optional[str] = None
|
|
58908
58945
|
_search_text: Optional[str] = None
|
|
58909
58946
|
_label: Optional[str] = None
|
|
58910
|
-
_property: Optional["
|
|
58947
|
+
_property: Optional["api_Property"] = None
|
|
58911
58948
|
_created_by: Optional[str] = None
|
|
58912
58949
|
_is_archived: Optional[bool] = None
|
|
58913
58950
|
_is_published: Optional[bool] = None
|
|
@@ -58919,8 +58956,8 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58919
58956
|
'or_': ConjureFieldDefinition('or', List[scout_template_api_SearchTemplatesQuery]),
|
|
58920
58957
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
58921
58958
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
58922
|
-
'label': ConjureFieldDefinition('label',
|
|
58923
|
-
'property': ConjureFieldDefinition('property',
|
|
58959
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
58960
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
58924
58961
|
'created_by': ConjureFieldDefinition('createdBy', scout_rids_api_UserRid),
|
|
58925
58962
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
58926
58963
|
'is_published': ConjureFieldDefinition('isPublished', bool)
|
|
@@ -58933,7 +58970,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58933
58970
|
exact_match: Optional[str] = None,
|
|
58934
58971
|
search_text: Optional[str] = None,
|
|
58935
58972
|
label: Optional[str] = None,
|
|
58936
|
-
property: Optional["
|
|
58973
|
+
property: Optional["api_Property"] = None,
|
|
58937
58974
|
created_by: Optional[str] = None,
|
|
58938
58975
|
is_archived: Optional[bool] = None,
|
|
58939
58976
|
is_published: Optional[bool] = None,
|
|
@@ -59044,7 +59081,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
59044
59081
|
return self._label
|
|
59045
59082
|
|
|
59046
59083
|
@builtins.property
|
|
59047
|
-
def property(self) -> Optional["
|
|
59084
|
+
def property(self) -> Optional["api_Property"]:
|
|
59048
59085
|
return self._property
|
|
59049
59086
|
|
|
59050
59087
|
@builtins.property
|
|
@@ -59110,7 +59147,7 @@ class scout_template_api_SearchTemplatesQueryVisitor:
|
|
|
59110
59147
|
pass
|
|
59111
59148
|
|
|
59112
59149
|
@abstractmethod
|
|
59113
|
-
def _property(self, property: "
|
|
59150
|
+
def _property(self, property: "api_Property") -> Any:
|
|
59114
59151
|
pass
|
|
59115
59152
|
|
|
59116
59153
|
@abstractmethod
|
|
@@ -59321,8 +59358,8 @@ class scout_template_api_TemplateMetadata(ConjureBeanType):
|
|
|
59321
59358
|
return {
|
|
59322
59359
|
'title': ConjureFieldDefinition('title', str),
|
|
59323
59360
|
'description': ConjureFieldDefinition('description', str),
|
|
59324
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
59325
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
59361
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
59362
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
59326
59363
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
59327
59364
|
'is_published': ConjureFieldDefinition('isPublished', bool),
|
|
59328
59365
|
'created_by': ConjureFieldDefinition('createdBy', scout_rids_api_UserRid),
|
|
@@ -59430,8 +59467,8 @@ class scout_template_api_UpdateMetadataRequest(ConjureBeanType):
|
|
|
59430
59467
|
return {
|
|
59431
59468
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
59432
59469
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
59433
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
59434
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
59470
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
59471
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
59435
59472
|
'is_archived': ConjureFieldDefinition('isArchived', OptionalTypeWrapper[bool]),
|
|
59436
59473
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool])
|
|
59437
59474
|
}
|
|
@@ -60680,24 +60717,6 @@ scout_video_VideoService.__qualname__ = "VideoService"
|
|
|
60680
60717
|
scout_video_VideoService.__module__ = "nominal_api.scout_video"
|
|
60681
60718
|
|
|
60682
60719
|
|
|
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
60720
|
class scout_video_api_CreateSegment(ConjureBeanType):
|
|
60702
60721
|
|
|
60703
60722
|
@builtins.classmethod
|
|
@@ -60801,8 +60820,8 @@ class scout_video_api_CreateVideoRequest(ConjureBeanType):
|
|
|
60801
60820
|
return {
|
|
60802
60821
|
'title': ConjureFieldDefinition('title', str),
|
|
60803
60822
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
60804
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
60805
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
60823
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
60824
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
60806
60825
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_video_api_VideoOriginMetadata)
|
|
60807
60826
|
}
|
|
60808
60827
|
|
|
@@ -61183,7 +61202,7 @@ scout_video_api_McapTimestampManifest.__module__ = "nominal_api.scout_video_api"
|
|
|
61183
61202
|
|
|
61184
61203
|
class scout_video_api_NoTimestampManifest(ConjureBeanType):
|
|
61185
61204
|
"""
|
|
61186
|
-
these values will not be updated after ingest time, to allow for resetting. The updated values are stored
|
|
61205
|
+
these values will not be updated after ingest time, to allow for resetting. The updated values are stored
|
|
61187
61206
|
implicitly through the segment timestamps.
|
|
61188
61207
|
"""
|
|
61189
61208
|
|
|
@@ -61220,35 +61239,6 @@ scout_video_api_NoTimestampManifest.__qualname__ = "NoTimestampManifest"
|
|
|
61220
61239
|
scout_video_api_NoTimestampManifest.__module__ = "nominal_api.scout_video_api"
|
|
61221
61240
|
|
|
61222
61241
|
|
|
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
61242
|
class scout_video_api_ScaleParameter(ConjureUnionType):
|
|
61253
61243
|
_true_frame_rate: Optional[float] = None
|
|
61254
61244
|
_ending_timestamp: Optional["api_Timestamp"] = None
|
|
@@ -61353,7 +61343,7 @@ scout_video_api_ScaleParameterVisitor.__module__ = "nominal_api.scout_video_api"
|
|
|
61353
61343
|
class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
61354
61344
|
_search_text: Optional[str] = None
|
|
61355
61345
|
_label: Optional[str] = None
|
|
61356
|
-
_property: Optional["
|
|
61346
|
+
_property: Optional["api_Property"] = None
|
|
61357
61347
|
_and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61358
61348
|
_or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61359
61349
|
_ingest_status: Optional["scout_video_api_IngestStatus"] = None
|
|
@@ -61362,8 +61352,8 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61362
61352
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61363
61353
|
return {
|
|
61364
61354
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
61365
|
-
'label': ConjureFieldDefinition('label',
|
|
61366
|
-
'property': ConjureFieldDefinition('property',
|
|
61355
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
61356
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
61367
61357
|
'and_': ConjureFieldDefinition('and', List[scout_video_api_SearchVideosQuery]),
|
|
61368
61358
|
'or_': ConjureFieldDefinition('or', List[scout_video_api_SearchVideosQuery]),
|
|
61369
61359
|
'ingest_status': ConjureFieldDefinition('ingestStatus', scout_video_api_IngestStatus)
|
|
@@ -61373,7 +61363,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61373
61363
|
self,
|
|
61374
61364
|
search_text: Optional[str] = None,
|
|
61375
61365
|
label: Optional[str] = None,
|
|
61376
|
-
property: Optional["
|
|
61366
|
+
property: Optional["api_Property"] = None,
|
|
61377
61367
|
and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61378
61368
|
or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61379
61369
|
ingest_status: Optional["scout_video_api_IngestStatus"] = None,
|
|
@@ -61442,7 +61432,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61442
61432
|
return self._label
|
|
61443
61433
|
|
|
61444
61434
|
@builtins.property
|
|
61445
|
-
def property(self) -> Optional["
|
|
61435
|
+
def property(self) -> Optional["api_Property"]:
|
|
61446
61436
|
return self._property
|
|
61447
61437
|
|
|
61448
61438
|
@builtins.property
|
|
@@ -61490,7 +61480,7 @@ class scout_video_api_SearchVideosQueryVisitor:
|
|
|
61490
61480
|
pass
|
|
61491
61481
|
|
|
61492
61482
|
@abstractmethod
|
|
61493
|
-
def _property(self, property: "
|
|
61483
|
+
def _property(self, property: "api_Property") -> Any:
|
|
61494
61484
|
pass
|
|
61495
61485
|
|
|
61496
61486
|
@abstractmethod
|
|
@@ -61520,12 +61510,12 @@ class scout_video_api_SearchVideosRequest(ConjureBeanType):
|
|
|
61520
61510
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
61521
61511
|
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[scout_backend_Token]),
|
|
61522
61512
|
'sort_options': ConjureFieldDefinition('sortOptions', scout_video_api_SortOptions),
|
|
61523
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
61513
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
61524
61514
|
}
|
|
61525
61515
|
|
|
61526
61516
|
__slots__: List[str] = ['_query', '_page_size', '_token', '_sort_options', '_archived_statuses']
|
|
61527
61517
|
|
|
61528
|
-
def __init__(self, query: "scout_video_api_SearchVideosQuery", sort_options: "scout_video_api_SortOptions", archived_statuses: Optional[List["
|
|
61518
|
+
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
61519
|
self._query = query
|
|
61530
61520
|
self._page_size = page_size
|
|
61531
61521
|
self._token = token
|
|
@@ -61552,7 +61542,7 @@ class scout_video_api_SearchVideosRequest(ConjureBeanType):
|
|
|
61552
61542
|
return self._sort_options
|
|
61553
61543
|
|
|
61554
61544
|
@builtins.property
|
|
61555
|
-
def archived_statuses(self) -> Optional[List["
|
|
61545
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
61556
61546
|
"""
|
|
61557
61547
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived videos in search.
|
|
61558
61548
|
"""
|
|
@@ -61658,7 +61648,7 @@ scout_video_api_Segment.__module__ = "nominal_api.scout_video_api"
|
|
|
61658
61648
|
|
|
61659
61649
|
class scout_video_api_SegmentSummary(ConjureBeanType):
|
|
61660
61650
|
"""
|
|
61661
|
-
Bounding timestamps for the frames within a segment. For non-frame-mapped videos, the min and max media
|
|
61651
|
+
Bounding timestamps for the frames within a segment. For non-frame-mapped videos, the min and max media
|
|
61662
61652
|
timestamps will be empty.
|
|
61663
61653
|
"""
|
|
61664
61654
|
|
|
@@ -61703,8 +61693,8 @@ scout_video_api_SegmentSummary.__module__ = "nominal_api.scout_video_api"
|
|
|
61703
61693
|
|
|
61704
61694
|
class scout_video_api_SegmentTimestamps(ConjureUnionType):
|
|
61705
61695
|
"""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
|
|
61696
|
+
be frame-mapped. Without a frame-timestamp mapping manifest file, a list of absolute timestamps will be
|
|
61697
|
+
automatically assigned to each segment based on media timestamps.. Otherwise, media timestamps will be
|
|
61708
61698
|
extracted and mapped to those in the provided manifest."""
|
|
61709
61699
|
_timestamps: Optional[List["api_Timestamp"]] = None
|
|
61710
61700
|
_timestamp_mappings: Optional["scout_video_api_TimestampMappings"] = None
|
|
@@ -61990,7 +61980,7 @@ class scout_video_api_UpdateTargetDurationRequest(ConjureBeanType):
|
|
|
61990
61980
|
@builtins.property
|
|
61991
61981
|
def target_duration_seconds(self) -> float:
|
|
61992
61982
|
"""
|
|
61993
|
-
A value used to construct the HLS playlist which must be greater than or equal to the durations of all
|
|
61983
|
+
A value used to construct the HLS playlist which must be greater than or equal to the durations of all
|
|
61994
61984
|
the segments within a video, when rounded to the nearest integer.
|
|
61995
61985
|
"""
|
|
61996
61986
|
return self._target_duration_seconds
|
|
@@ -62035,8 +62025,8 @@ class scout_video_api_UpdateVideoMetadataRequest(ConjureBeanType):
|
|
|
62035
62025
|
return {
|
|
62036
62026
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
62037
62027
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
62038
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
62039
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62028
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
62029
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62040
62030
|
'starting_timestamp': ConjureFieldDefinition('startingTimestamp', OptionalTypeWrapper[api_Timestamp]),
|
|
62041
62031
|
'scale_parameter': ConjureFieldDefinition('scaleParameter', OptionalTypeWrapper[scout_video_api_ScaleParameter])
|
|
62042
62032
|
}
|
|
@@ -62089,8 +62079,8 @@ class scout_video_api_Video(ConjureBeanType):
|
|
|
62089
62079
|
'rid': ConjureFieldDefinition('rid', api_rids_VideoRid),
|
|
62090
62080
|
'title': ConjureFieldDefinition('title', str),
|
|
62091
62081
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
62092
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62093
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62082
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
62083
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62094
62084
|
'created_by': ConjureFieldDefinition('createdBy', str),
|
|
62095
62085
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
62096
62086
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_video_api_VideoOriginMetadata),
|
|
@@ -62504,24 +62494,6 @@ scout_workbookcommon_api_WorkbookContent.__qualname__ = "WorkbookContent"
|
|
|
62504
62494
|
scout_workbookcommon_api_WorkbookContent.__module__ = "nominal_api.scout_workbookcommon_api"
|
|
62505
62495
|
|
|
62506
62496
|
|
|
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
62497
|
class secrets_api_CreateSecretRequest(ConjureBeanType):
|
|
62526
62498
|
|
|
62527
62499
|
@builtins.classmethod
|
|
@@ -62530,8 +62502,8 @@ class secrets_api_CreateSecretRequest(ConjureBeanType):
|
|
|
62530
62502
|
'name': ConjureFieldDefinition('name', str),
|
|
62531
62503
|
'description': ConjureFieldDefinition('description', str),
|
|
62532
62504
|
'decrypted_value': ConjureFieldDefinition('decryptedValue', str),
|
|
62533
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62534
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62505
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62506
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
62535
62507
|
}
|
|
62536
62508
|
|
|
62537
62509
|
__slots__: List[str] = ['_name', '_description', '_decrypted_value', '_properties', '_labels']
|
|
@@ -62615,39 +62587,10 @@ secrets_api_GetSecretsResponse.__qualname__ = "GetSecretsResponse"
|
|
|
62615
62587
|
secrets_api_GetSecretsResponse.__module__ = "nominal_api.secrets_api"
|
|
62616
62588
|
|
|
62617
62589
|
|
|
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
62590
|
class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
62648
62591
|
_search_text: Optional[str] = None
|
|
62649
62592
|
_label: Optional[str] = None
|
|
62650
|
-
_property: Optional["
|
|
62593
|
+
_property: Optional["api_Property"] = None
|
|
62651
62594
|
_and_: Optional[List["secrets_api_SearchSecretsQuery"]] = None
|
|
62652
62595
|
_or_: Optional[List["secrets_api_SearchSecretsQuery"]] = None
|
|
62653
62596
|
|
|
@@ -62655,8 +62598,8 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62655
62598
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
62656
62599
|
return {
|
|
62657
62600
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
62658
|
-
'label': ConjureFieldDefinition('label',
|
|
62659
|
-
'property': ConjureFieldDefinition('property',
|
|
62601
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
62602
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
62660
62603
|
'and_': ConjureFieldDefinition('and', List[secrets_api_SearchSecretsQuery]),
|
|
62661
62604
|
'or_': ConjureFieldDefinition('or', List[secrets_api_SearchSecretsQuery])
|
|
62662
62605
|
}
|
|
@@ -62665,7 +62608,7 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62665
62608
|
self,
|
|
62666
62609
|
search_text: Optional[str] = None,
|
|
62667
62610
|
label: Optional[str] = None,
|
|
62668
|
-
property: Optional["
|
|
62611
|
+
property: Optional["api_Property"] = None,
|
|
62669
62612
|
and_: Optional[List["secrets_api_SearchSecretsQuery"]] = None,
|
|
62670
62613
|
or_: Optional[List["secrets_api_SearchSecretsQuery"]] = None,
|
|
62671
62614
|
type_of_union: Optional[str] = None
|
|
@@ -62725,7 +62668,7 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62725
62668
|
return self._label
|
|
62726
62669
|
|
|
62727
62670
|
@builtins.property
|
|
62728
|
-
def property(self) -> Optional["
|
|
62671
|
+
def property(self) -> Optional["api_Property"]:
|
|
62729
62672
|
return self._property
|
|
62730
62673
|
|
|
62731
62674
|
@builtins.property
|
|
@@ -62767,7 +62710,7 @@ class secrets_api_SearchSecretsQueryVisitor:
|
|
|
62767
62710
|
pass
|
|
62768
62711
|
|
|
62769
62712
|
@abstractmethod
|
|
62770
|
-
def _property(self, property: "
|
|
62713
|
+
def _property(self, property: "api_Property") -> Any:
|
|
62771
62714
|
pass
|
|
62772
62715
|
|
|
62773
62716
|
@abstractmethod
|
|
@@ -62793,12 +62736,12 @@ class secrets_api_SearchSecretsRequest(ConjureBeanType):
|
|
|
62793
62736
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
62794
62737
|
'sort': ConjureFieldDefinition('sort', secrets_api_SortOptions),
|
|
62795
62738
|
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[scout_backend_Token]),
|
|
62796
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
62739
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
62797
62740
|
}
|
|
62798
62741
|
|
|
62799
62742
|
__slots__: List[str] = ['_query', '_page_size', '_sort', '_token', '_archived_statuses']
|
|
62800
62743
|
|
|
62801
|
-
def __init__(self, query: "secrets_api_SearchSecretsQuery", sort: "secrets_api_SortOptions", archived_statuses: Optional[List["
|
|
62744
|
+
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
62745
|
self._query = query
|
|
62803
62746
|
self._page_size = page_size
|
|
62804
62747
|
self._sort = sort
|
|
@@ -62825,7 +62768,7 @@ class secrets_api_SearchSecretsRequest(ConjureBeanType):
|
|
|
62825
62768
|
return self._token
|
|
62826
62769
|
|
|
62827
62770
|
@builtins.property
|
|
62828
|
-
def archived_statuses(self) -> Optional[List["
|
|
62771
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
62829
62772
|
"""
|
|
62830
62773
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived secrets in search.
|
|
62831
62774
|
"""
|
|
@@ -62875,8 +62818,8 @@ class secrets_api_Secret(ConjureBeanType):
|
|
|
62875
62818
|
'name': ConjureFieldDefinition('name', str),
|
|
62876
62819
|
'description': ConjureFieldDefinition('description', str),
|
|
62877
62820
|
'created_by': ConjureFieldDefinition('createdBy', str),
|
|
62878
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62879
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62821
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62822
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
62880
62823
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
62881
62824
|
'is_archived': ConjureFieldDefinition('isArchived', bool)
|
|
62882
62825
|
}
|
|
@@ -63249,8 +63192,8 @@ class secrets_api_UpdateSecretRequest(ConjureBeanType):
|
|
|
63249
63192
|
return {
|
|
63250
63193
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
63251
63194
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
63252
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
63253
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
63195
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
63196
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]])
|
|
63254
63197
|
}
|
|
63255
63198
|
|
|
63256
63199
|
__slots__: List[str] = ['_name', '_description', '_properties', '_labels']
|
|
@@ -68979,26 +68922,22 @@ upload_api_UploadService.__qualname__ = "UploadService"
|
|
|
68979
68922
|
upload_api_UploadService.__module__ = "nominal_api.upload_api"
|
|
68980
68923
|
|
|
68981
68924
|
|
|
68925
|
+
api_Label = str
|
|
68926
|
+
|
|
68982
68927
|
timeseries_archetype_api_SeriesArchetypeName = str
|
|
68983
68928
|
|
|
68984
68929
|
ingest_api_S3Path = str
|
|
68985
68930
|
|
|
68986
68931
|
scout_datasource_connection_api_influx_OrgId = str
|
|
68987
68932
|
|
|
68988
|
-
|
|
68933
|
+
api_PropertyValue = str
|
|
68989
68934
|
|
|
68990
68935
|
scout_video_api_S3Path = str
|
|
68991
68936
|
|
|
68992
|
-
secrets_api_Label = str
|
|
68993
|
-
|
|
68994
68937
|
timeseries_logicalseries_api_AttributeName = str
|
|
68995
68938
|
|
|
68996
68939
|
authentication_api_OrgRid = str
|
|
68997
68940
|
|
|
68998
|
-
datasource_PropertyName = str
|
|
68999
|
-
|
|
69000
|
-
ingest_api_PropertyName = str
|
|
69001
|
-
|
|
69002
68941
|
themes_api_ChartThemeRid = str
|
|
69003
68942
|
|
|
69004
68943
|
scout_datareview_api_DataReviewRid = str
|
|
@@ -69011,6 +68950,8 @@ scout_datasource_connection_api_TableName = str
|
|
|
69011
68950
|
|
|
69012
68951
|
timeseries_seriescache_api_Resolution = int
|
|
69013
68952
|
|
|
68953
|
+
api_PropertyName = str
|
|
68954
|
+
|
|
69014
68955
|
scout_catalog_ErrorType = str
|
|
69015
68956
|
|
|
69016
68957
|
scout_integrations_api_IntegrationRid = str
|
|
@@ -69025,8 +68966,6 @@ datasource_DatasetFileId = str
|
|
|
69025
68966
|
|
|
69026
68967
|
api_McapChannelTopic = str
|
|
69027
68968
|
|
|
69028
|
-
ingest_api_Label = str
|
|
69029
|
-
|
|
69030
68969
|
scout_compute_api_VariableName = str
|
|
69031
68970
|
|
|
69032
68971
|
scout_datasource_connection_api_MeasurementName = str
|
|
@@ -69065,8 +69004,6 @@ timeseries_seriescache_api_S3Path = str
|
|
|
69065
69004
|
|
|
69066
69005
|
scout_chart_api_JsonString = str
|
|
69067
69006
|
|
|
69068
|
-
secrets_api_PropertyValue = str
|
|
69069
|
-
|
|
69070
69007
|
attachments_api_S3Path = str
|
|
69071
69008
|
|
|
69072
69009
|
scout_checks_api_JobRid = str
|
|
@@ -69079,7 +69016,7 @@ datasource_pagination_api_PageToken = str
|
|
|
69079
69016
|
|
|
69080
69017
|
scout_datasource_connection_api_ProjectName = str
|
|
69081
69018
|
|
|
69082
|
-
|
|
69019
|
+
api_rids_SegmentRid = str
|
|
69083
69020
|
|
|
69084
69021
|
scout_comparisonnotebook_api_VariableName = str
|
|
69085
69022
|
|
|
@@ -69133,8 +69070,6 @@ scout_rids_api_NotebookRid = str
|
|
|
69133
69070
|
|
|
69134
69071
|
scout_asset_api_SeriesTagValue = str
|
|
69135
69072
|
|
|
69136
|
-
scout_run_api_PropertyValue = str
|
|
69137
|
-
|
|
69138
69073
|
scout_rids_api_UserRid = str
|
|
69139
69074
|
|
|
69140
69075
|
api_rids_DatasetRid = str
|
|
@@ -69149,12 +69084,6 @@ timeseries_logicalseries_api_LocationName = str
|
|
|
69149
69084
|
|
|
69150
69085
|
api_rids_DataSourceRid = str
|
|
69151
69086
|
|
|
69152
|
-
datasource_Label = str
|
|
69153
|
-
|
|
69154
|
-
ingest_api_PropertyValue = str
|
|
69155
|
-
|
|
69156
|
-
scout_run_api_Label = str
|
|
69157
|
-
|
|
69158
69087
|
scout_rids_api_CheckLineageRid = str
|
|
69159
69088
|
|
|
69160
69089
|
scout_rids_api_VizId = str
|
|
@@ -69165,8 +69094,6 @@ scout_video_api_ErrorType = str
|
|
|
69165
69094
|
|
|
69166
69095
|
scout_comparisonnotebook_api_ComparisonChannelVariableMap = Dict[scout_comparisonnotebook_api_VariableName, scout_comparisonnotebook_api_ChannelVariable]
|
|
69167
69096
|
|
|
69168
|
-
scout_video_api_Label = str
|
|
69169
|
-
|
|
69170
69097
|
ingest_api_ErrorType = str
|
|
69171
69098
|
|
|
69172
69099
|
timeseries_logicalseries_api_FieldName = str
|
|
@@ -69197,12 +69124,8 @@ storage_writer_api_MeasurementName = str
|
|
|
69197
69124
|
|
|
69198
69125
|
storage_datasource_api_NominalDataSourceId = str
|
|
69199
69126
|
|
|
69200
|
-
scout_video_api_PropertyValue = str
|
|
69201
|
-
|
|
69202
69127
|
scout_datareview_api_AutomaticCheckEvaluationRid = str
|
|
69203
69128
|
|
|
69204
|
-
scout_video_api_PropertyName = str
|
|
69205
|
-
|
|
69206
69129
|
scout_compute_api_ErrorType = str
|
|
69207
69130
|
|
|
69208
69131
|
comments_api_ResourceRid = str
|
|
@@ -69247,8 +69170,6 @@ scout_rids_api_AssetRid = str
|
|
|
69247
69170
|
|
|
69248
69171
|
comments_api_CommentRid = str
|
|
69249
69172
|
|
|
69250
|
-
scout_run_api_PropertyName = str
|
|
69251
|
-
|
|
69252
69173
|
scout_chartdefinition_api_DataSourceRefName = str
|
|
69253
69174
|
|
|
69254
69175
|
api_LogicalSeriesRid = str
|
|
@@ -69263,15 +69184,9 @@ scout_datasource_connection_api_OrganizationRid = str
|
|
|
69263
69184
|
|
|
69264
69185
|
scout_rids_api_CheckRid = str
|
|
69265
69186
|
|
|
69266
|
-
secrets_api_PropertyName = str
|
|
69267
|
-
|
|
69268
69187
|
timeseries_logicalseries_api_ProjectName = str
|
|
69269
69188
|
|
|
69270
69189
|
api_Channel = str
|
|
69271
69190
|
|
|
69272
|
-
attachments_api_PropertyValue = str
|
|
69273
|
-
|
|
69274
69191
|
scout_datasource_connection_api_SecretName = str
|
|
69275
69192
|
|
|
69276
|
-
attachments_api_Label = str
|
|
69277
|
-
|