nominal-api 0.543.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 +341 -432
- 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.543.0.dist-info → nominal_api-0.547.0.dist-info}/METADATA +1 -1
- {nominal_api-0.543.0.dist-info → nominal_api-0.547.0.dist-info}/RECORD +17 -17
- {nominal_api-0.543.0.dist-info → nominal_api-0.547.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.543.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)
|
|
@@ -8226,16 +8215,14 @@ class ingest_api_JournalJsonOpts(ConjureBeanType):
|
|
|
8226
8215
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
8227
8216
|
return {
|
|
8228
8217
|
'source': ConjureFieldDefinition('source', ingest_api_IngestSource),
|
|
8229
|
-
'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget)
|
|
8230
|
-
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_JournalTimestampMetadata)
|
|
8218
|
+
'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget)
|
|
8231
8219
|
}
|
|
8232
8220
|
|
|
8233
|
-
__slots__: List[str] = ['_source', '_target'
|
|
8221
|
+
__slots__: List[str] = ['_source', '_target']
|
|
8234
8222
|
|
|
8235
|
-
def __init__(self, source: "ingest_api_IngestSource", target: "ingest_api_DatasetIngestTarget"
|
|
8223
|
+
def __init__(self, source: "ingest_api_IngestSource", target: "ingest_api_DatasetIngestTarget") -> None:
|
|
8236
8224
|
self._source = source
|
|
8237
8225
|
self._target = target
|
|
8238
|
-
self._timestamp_metadata = timestamp_metadata
|
|
8239
8226
|
|
|
8240
8227
|
@builtins.property
|
|
8241
8228
|
def source(self) -> "ingest_api_IngestSource":
|
|
@@ -8245,10 +8232,6 @@ class ingest_api_JournalJsonOpts(ConjureBeanType):
|
|
|
8245
8232
|
def target(self) -> "ingest_api_DatasetIngestTarget":
|
|
8246
8233
|
return self._target
|
|
8247
8234
|
|
|
8248
|
-
@builtins.property
|
|
8249
|
-
def timestamp_metadata(self) -> "ingest_api_JournalTimestampMetadata":
|
|
8250
|
-
return self._timestamp_metadata
|
|
8251
|
-
|
|
8252
8235
|
|
|
8253
8236
|
ingest_api_JournalJsonOpts.__name__ = "JournalJsonOpts"
|
|
8254
8237
|
ingest_api_JournalJsonOpts.__qualname__ = "JournalJsonOpts"
|
|
@@ -8792,8 +8775,8 @@ class ingest_api_NewDataSource(ConjureBeanType):
|
|
|
8792
8775
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
8793
8776
|
return {
|
|
8794
8777
|
'source': ConjureFieldDefinition('source', ingest_api_IngestSource),
|
|
8795
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
8796
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
8778
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
8779
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
8797
8780
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
8798
8781
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
8799
8782
|
'time_column_spec': ConjureFieldDefinition('timeColumnSpec', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
|
@@ -8852,8 +8835,8 @@ class ingest_api_NewDatasetIngestDestination(ConjureBeanType):
|
|
|
8852
8835
|
return {
|
|
8853
8836
|
'dataset_name': ConjureFieldDefinition('datasetName', OptionalTypeWrapper[str]),
|
|
8854
8837
|
'dataset_description': ConjureFieldDefinition('datasetDescription', OptionalTypeWrapper[str]),
|
|
8855
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
8856
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
8838
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
8839
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
8857
8840
|
'channel_config': ConjureFieldDefinition('channelConfig', OptionalTypeWrapper[ingest_api_ChannelConfig])
|
|
8858
8841
|
}
|
|
8859
8842
|
|
|
@@ -8897,8 +8880,8 @@ class ingest_api_NewVideoIngestDestination(ConjureBeanType):
|
|
|
8897
8880
|
@builtins.classmethod
|
|
8898
8881
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
8899
8882
|
return {
|
|
8900
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
8901
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
8883
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
8884
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
8902
8885
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
8903
8886
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str])
|
|
8904
8887
|
}
|
|
@@ -9504,8 +9487,8 @@ class ingest_api_TriggerIngest(ConjureBeanType):
|
|
|
9504
9487
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
9505
9488
|
return {
|
|
9506
9489
|
'source': ConjureFieldDefinition('source', ingest_api_IngestSource),
|
|
9507
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
9508
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
9490
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
9491
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
9509
9492
|
'dataset_name': ConjureFieldDefinition('datasetName', OptionalTypeWrapper[str]),
|
|
9510
9493
|
'dataset_description': ConjureFieldDefinition('datasetDescription', OptionalTypeWrapper[str]),
|
|
9511
9494
|
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
|
@@ -11981,8 +11964,8 @@ class scout_asset_api_Asset(ConjureBeanType):
|
|
|
11981
11964
|
'rid': ConjureFieldDefinition('rid', scout_rids_api_AssetRid),
|
|
11982
11965
|
'title': ConjureFieldDefinition('title', str),
|
|
11983
11966
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
11984
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
11985
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
11967
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
11968
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
11986
11969
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
11987
11970
|
'data_scopes': ConjureFieldDefinition('dataScopes', List[scout_asset_api_AssetDataScope]),
|
|
11988
11971
|
'created_by': ConjureFieldDefinition('createdBy', OptionalTypeWrapper[str]),
|
|
@@ -12238,8 +12221,8 @@ class scout_asset_api_CreateAssetRequest(ConjureBeanType):
|
|
|
12238
12221
|
return {
|
|
12239
12222
|
'title': ConjureFieldDefinition('title', str),
|
|
12240
12223
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
12241
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
12242
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
12224
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
12225
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
12243
12226
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
12244
12227
|
'data_scopes': ConjureFieldDefinition('dataScopes', List[scout_asset_api_CreateAssetDataScope]),
|
|
12245
12228
|
'attachments': ConjureFieldDefinition('attachments', List[api_rids_AttachmentRid]),
|
|
@@ -12305,7 +12288,7 @@ class scout_asset_api_CreateTypeRequest(ConjureBeanType):
|
|
|
12305
12288
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12306
12289
|
return {
|
|
12307
12290
|
'name': ConjureFieldDefinition('name', str),
|
|
12308
|
-
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[
|
|
12291
|
+
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[api_PropertyName, scout_asset_api_PropertyConfig]),
|
|
12309
12292
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
12310
12293
|
'icon_name': ConjureFieldDefinition('iconName', OptionalTypeWrapper[str])
|
|
12311
12294
|
}
|
|
@@ -12467,7 +12450,7 @@ scout_asset_api_SearchAssetChannelsResponse.__module__ = "nominal_api.scout_asse
|
|
|
12467
12450
|
class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
12468
12451
|
_search_text: Optional[str] = None
|
|
12469
12452
|
_label: Optional[str] = None
|
|
12470
|
-
_property: Optional["
|
|
12453
|
+
_property: Optional["api_Property"] = None
|
|
12471
12454
|
_type_rid: Optional[str] = None
|
|
12472
12455
|
_and_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None
|
|
12473
12456
|
_or_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None
|
|
@@ -12477,8 +12460,8 @@ class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
|
12477
12460
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12478
12461
|
return {
|
|
12479
12462
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
12480
|
-
'label': ConjureFieldDefinition('label',
|
|
12481
|
-
'property': ConjureFieldDefinition('property',
|
|
12463
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
12464
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
12482
12465
|
'type_rid': ConjureFieldDefinition('typeRid', scout_rids_api_TypeRid),
|
|
12483
12466
|
'and_': ConjureFieldDefinition('and', List[scout_asset_api_SearchAssetsQuery]),
|
|
12484
12467
|
'or_': ConjureFieldDefinition('or', List[scout_asset_api_SearchAssetsQuery]),
|
|
@@ -12489,7 +12472,7 @@ class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
|
12489
12472
|
self,
|
|
12490
12473
|
search_text: Optional[str] = None,
|
|
12491
12474
|
label: Optional[str] = None,
|
|
12492
|
-
property: Optional["
|
|
12475
|
+
property: Optional["api_Property"] = None,
|
|
12493
12476
|
type_rid: Optional[str] = None,
|
|
12494
12477
|
and_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None,
|
|
12495
12478
|
or_: Optional[List["scout_asset_api_SearchAssetsQuery"]] = None,
|
|
@@ -12567,7 +12550,7 @@ class scout_asset_api_SearchAssetsQuery(ConjureUnionType):
|
|
|
12567
12550
|
return self._label
|
|
12568
12551
|
|
|
12569
12552
|
@builtins.property
|
|
12570
|
-
def property(self) -> Optional["
|
|
12553
|
+
def property(self) -> Optional["api_Property"]:
|
|
12571
12554
|
return self._property
|
|
12572
12555
|
|
|
12573
12556
|
@builtins.property
|
|
@@ -12621,7 +12604,7 @@ class scout_asset_api_SearchAssetsQueryVisitor:
|
|
|
12621
12604
|
pass
|
|
12622
12605
|
|
|
12623
12606
|
@abstractmethod
|
|
12624
|
-
def _property(self, property: "
|
|
12607
|
+
def _property(self, property: "api_Property") -> Any:
|
|
12625
12608
|
pass
|
|
12626
12609
|
|
|
12627
12610
|
@abstractmethod
|
|
@@ -12655,12 +12638,12 @@ class scout_asset_api_SearchAssetsRequest(ConjureBeanType):
|
|
|
12655
12638
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
12656
12639
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
12657
12640
|
'query': ConjureFieldDefinition('query', scout_asset_api_SearchAssetsQuery),
|
|
12658
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
12641
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
12659
12642
|
}
|
|
12660
12643
|
|
|
12661
12644
|
__slots__: List[str] = ['_sort', '_page_size', '_next_page_token', '_query', '_archived_statuses']
|
|
12662
12645
|
|
|
12663
|
-
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:
|
|
12664
12647
|
self._sort = sort
|
|
12665
12648
|
self._page_size = page_size
|
|
12666
12649
|
self._next_page_token = next_page_token
|
|
@@ -12687,7 +12670,7 @@ class scout_asset_api_SearchAssetsRequest(ConjureBeanType):
|
|
|
12687
12670
|
return self._query
|
|
12688
12671
|
|
|
12689
12672
|
@builtins.property
|
|
12690
|
-
def archived_statuses(self) -> Optional[List["
|
|
12673
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
12691
12674
|
"""
|
|
12692
12675
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived assets in search.
|
|
12693
12676
|
"""
|
|
@@ -12738,7 +12721,7 @@ class scout_asset_api_SearchTypesQuery(ConjureUnionType):
|
|
|
12738
12721
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
12739
12722
|
return {
|
|
12740
12723
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
12741
|
-
'property': ConjureFieldDefinition('property',
|
|
12724
|
+
'property': ConjureFieldDefinition('property', api_PropertyName),
|
|
12742
12725
|
'and_': ConjureFieldDefinition('and', List[scout_asset_api_SearchTypesQuery]),
|
|
12743
12726
|
'or_': ConjureFieldDefinition('or', List[scout_asset_api_SearchTypesQuery])
|
|
12744
12727
|
}
|
|
@@ -12856,12 +12839,12 @@ class scout_asset_api_SearchTypesRequest(ConjureBeanType):
|
|
|
12856
12839
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
12857
12840
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
12858
12841
|
'query': ConjureFieldDefinition('query', scout_asset_api_SearchTypesQuery),
|
|
12859
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
12842
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
12860
12843
|
}
|
|
12861
12844
|
|
|
12862
12845
|
__slots__: List[str] = ['_sort', '_page_size', '_next_page_token', '_query', '_archived_statuses']
|
|
12863
12846
|
|
|
12864
|
-
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:
|
|
12865
12848
|
self._sort = sort
|
|
12866
12849
|
self._page_size = page_size
|
|
12867
12850
|
self._next_page_token = next_page_token
|
|
@@ -12888,7 +12871,7 @@ class scout_asset_api_SearchTypesRequest(ConjureBeanType):
|
|
|
12888
12871
|
return self._query
|
|
12889
12872
|
|
|
12890
12873
|
@builtins.property
|
|
12891
|
-
def archived_statuses(self) -> Optional[List["
|
|
12874
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
12892
12875
|
"""
|
|
12893
12876
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived assets in search.
|
|
12894
12877
|
"""
|
|
@@ -12982,7 +12965,7 @@ class scout_asset_api_Type(ConjureBeanType):
|
|
|
12982
12965
|
'rid': ConjureFieldDefinition('rid', scout_rids_api_TypeRid),
|
|
12983
12966
|
'name': ConjureFieldDefinition('name', str),
|
|
12984
12967
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
12985
|
-
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[
|
|
12968
|
+
'property_configs': ConjureFieldDefinition('propertyConfigs', Dict[api_PropertyName, scout_asset_api_PropertyConfig]),
|
|
12986
12969
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
12987
12970
|
'icon_name': ConjureFieldDefinition('iconName', OptionalTypeWrapper[str])
|
|
12988
12971
|
}
|
|
@@ -13037,8 +13020,8 @@ class scout_asset_api_UpdateAssetRequest(ConjureBeanType):
|
|
|
13037
13020
|
return {
|
|
13038
13021
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
13039
13022
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
13040
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
13041
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
13023
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
13024
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
13042
13025
|
'links': ConjureFieldDefinition('links', OptionalTypeWrapper[List[scout_run_api_Link]]),
|
|
13043
13026
|
'data_scopes': ConjureFieldDefinition('dataScopes', OptionalTypeWrapper[List[scout_asset_api_CreateAssetDataScope]]),
|
|
13044
13027
|
'type': ConjureFieldDefinition('type', OptionalTypeWrapper[scout_asset_api_UpdateOrRemoveAssetType]),
|
|
@@ -13216,7 +13199,7 @@ specified in the request.
|
|
|
13216
13199
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
13217
13200
|
return {
|
|
13218
13201
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
13219
|
-
'property_configs': ConjureFieldDefinition('propertyConfigs', OptionalTypeWrapper[Dict[
|
|
13202
|
+
'property_configs': ConjureFieldDefinition('propertyConfigs', OptionalTypeWrapper[Dict[api_PropertyName, scout_asset_api_PropertyConfig]]),
|
|
13220
13203
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
13221
13204
|
'icon_name': ConjureFieldDefinition('iconName', OptionalTypeWrapper[str])
|
|
13222
13205
|
}
|
|
@@ -13848,8 +13831,8 @@ class scout_catalog_AllPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
13848
13831
|
@builtins.classmethod
|
|
13849
13832
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
13850
13833
|
return {
|
|
13851
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
13852
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
13834
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
13835
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
13853
13836
|
}
|
|
13854
13837
|
|
|
13855
13838
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -14759,8 +14742,8 @@ class scout_catalog_CreateDataset(ConjureBeanType):
|
|
|
14759
14742
|
'handle': ConjureFieldDefinition('handle', OptionalTypeWrapper[scout_catalog_Handle]),
|
|
14760
14743
|
'metadata': ConjureFieldDefinition('metadata', Dict[str, str]),
|
|
14761
14744
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_catalog_DatasetOriginMetadata),
|
|
14762
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
14763
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
14745
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
14746
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
14764
14747
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
14765
14748
|
'granularity': ConjureFieldDefinition('granularity', OptionalTypeWrapper[api_Granularity])
|
|
14766
14749
|
}
|
|
@@ -14873,8 +14856,8 @@ class scout_catalog_Dataset(ConjureBeanType):
|
|
|
14873
14856
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
14874
14857
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_catalog_DatasetOriginMetadata),
|
|
14875
14858
|
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_catalog_Bounds]),
|
|
14876
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
14877
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
14859
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
14860
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
14878
14861
|
'timestamp_type': ConjureFieldDefinition('timestampType', scout_catalog_WeakTimestampType)
|
|
14879
14862
|
}
|
|
14880
14863
|
|
|
@@ -15216,8 +15199,8 @@ class scout_catalog_EnrichedDataset(ConjureBeanType):
|
|
|
15216
15199
|
'source': ConjureFieldDefinition('source', OptionalTypeWrapper[str]),
|
|
15217
15200
|
'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_catalog_Bounds]),
|
|
15218
15201
|
'timestamp_type': ConjureFieldDefinition('timestampType', scout_catalog_WeakTimestampType),
|
|
15219
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
15220
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
15202
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
15203
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
15221
15204
|
'granularity': ConjureFieldDefinition('granularity', api_Granularity)
|
|
15222
15205
|
}
|
|
15223
15206
|
|
|
@@ -16131,7 +16114,7 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16131
16114
|
_search_text: Optional[str] = None
|
|
16132
16115
|
_exact_match: Optional[str] = None
|
|
16133
16116
|
_label: Optional[str] = None
|
|
16134
|
-
_properties: Optional["
|
|
16117
|
+
_properties: Optional["api_Property"] = None
|
|
16135
16118
|
_ingest_status: Optional["scout_catalog_IngestStatus"] = None
|
|
16136
16119
|
_ingested_before_inclusive: Optional[str] = None
|
|
16137
16120
|
_ingested_after_inclusive: Optional[str] = None
|
|
@@ -16144,8 +16127,8 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16144
16127
|
return {
|
|
16145
16128
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
16146
16129
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
16147
|
-
'label': ConjureFieldDefinition('label',
|
|
16148
|
-
'properties': ConjureFieldDefinition('properties',
|
|
16130
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
16131
|
+
'properties': ConjureFieldDefinition('properties', api_Property),
|
|
16149
16132
|
'ingest_status': ConjureFieldDefinition('ingestStatus', scout_catalog_IngestStatus),
|
|
16150
16133
|
'ingested_before_inclusive': ConjureFieldDefinition('ingestedBeforeInclusive', str),
|
|
16151
16134
|
'ingested_after_inclusive': ConjureFieldDefinition('ingestedAfterInclusive', str),
|
|
@@ -16159,7 +16142,7 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16159
16142
|
search_text: Optional[str] = None,
|
|
16160
16143
|
exact_match: Optional[str] = None,
|
|
16161
16144
|
label: Optional[str] = None,
|
|
16162
|
-
properties: Optional["
|
|
16145
|
+
properties: Optional["api_Property"] = None,
|
|
16163
16146
|
ingest_status: Optional["scout_catalog_IngestStatus"] = None,
|
|
16164
16147
|
ingested_before_inclusive: Optional[str] = None,
|
|
16165
16148
|
ingested_after_inclusive: Optional[str] = None,
|
|
@@ -16270,7 +16253,7 @@ class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
|
|
16270
16253
|
return self._label
|
|
16271
16254
|
|
|
16272
16255
|
@builtins.property
|
|
16273
|
-
def properties(self) -> Optional["
|
|
16256
|
+
def properties(self) -> Optional["api_Property"]:
|
|
16274
16257
|
return self._properties
|
|
16275
16258
|
|
|
16276
16259
|
@builtins.property
|
|
@@ -16342,7 +16325,7 @@ class scout_catalog_SearchDatasetsQueryVisitor:
|
|
|
16342
16325
|
pass
|
|
16343
16326
|
|
|
16344
16327
|
@abstractmethod
|
|
16345
|
-
def _properties(self, properties: "
|
|
16328
|
+
def _properties(self, properties: "api_Property") -> Any:
|
|
16346
16329
|
pass
|
|
16347
16330
|
|
|
16348
16331
|
@abstractmethod
|
|
@@ -16753,8 +16736,8 @@ class scout_catalog_UpdateDatasetMetadata(ConjureBeanType):
|
|
|
16753
16736
|
return {
|
|
16754
16737
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
16755
16738
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
16756
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
16757
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
16739
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
16740
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]])
|
|
16758
16741
|
}
|
|
16759
16742
|
|
|
16760
16743
|
__slots__: List[str] = ['_name', '_description', '_labels', '_properties']
|
|
@@ -22238,8 +22221,8 @@ class scout_checks_api_ChecklistMetadata(ConjureBeanType):
|
|
|
22238
22221
|
'title': ConjureFieldDefinition('title', str),
|
|
22239
22222
|
'description': ConjureFieldDefinition('description', str),
|
|
22240
22223
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
22241
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
22242
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
22224
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
22225
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
22243
22226
|
'last_used': ConjureFieldDefinition('lastUsed', OptionalTypeWrapper[str]),
|
|
22244
22227
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
22245
22228
|
'is_published': ConjureFieldDefinition('isPublished', bool)
|
|
@@ -22343,7 +22326,7 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22343
22326
|
_or_: Optional[List["scout_checks_api_ChecklistSearchQuery"]] = None
|
|
22344
22327
|
_search_text: Optional[str] = None
|
|
22345
22328
|
_label: Optional[str] = None
|
|
22346
|
-
_property: Optional["
|
|
22329
|
+
_property: Optional["api_Property"] = None
|
|
22347
22330
|
_author_rid: Optional[str] = None
|
|
22348
22331
|
_assignee_rid: Optional[str] = None
|
|
22349
22332
|
_is_published: Optional[bool] = None
|
|
@@ -22355,8 +22338,8 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22355
22338
|
'and_': ConjureFieldDefinition('and', List[scout_checks_api_ChecklistSearchQuery]),
|
|
22356
22339
|
'or_': ConjureFieldDefinition('or', List[scout_checks_api_ChecklistSearchQuery]),
|
|
22357
22340
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
22358
|
-
'label': ConjureFieldDefinition('label',
|
|
22359
|
-
'property': ConjureFieldDefinition('property',
|
|
22341
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
22342
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
22360
22343
|
'author_rid': ConjureFieldDefinition('authorRid', scout_rids_api_UserRid),
|
|
22361
22344
|
'assignee_rid': ConjureFieldDefinition('assigneeRid', scout_rids_api_UserRid),
|
|
22362
22345
|
'is_published': ConjureFieldDefinition('isPublished', bool),
|
|
@@ -22369,7 +22352,7 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22369
22352
|
or_: Optional[List["scout_checks_api_ChecklistSearchQuery"]] = None,
|
|
22370
22353
|
search_text: Optional[str] = None,
|
|
22371
22354
|
label: Optional[str] = None,
|
|
22372
|
-
property: Optional["
|
|
22355
|
+
property: Optional["api_Property"] = None,
|
|
22373
22356
|
author_rid: Optional[str] = None,
|
|
22374
22357
|
assignee_rid: Optional[str] = None,
|
|
22375
22358
|
is_published: Optional[bool] = None,
|
|
@@ -22471,7 +22454,7 @@ class scout_checks_api_ChecklistSearchQuery(ConjureUnionType):
|
|
|
22471
22454
|
return self._label
|
|
22472
22455
|
|
|
22473
22456
|
@builtins.property
|
|
22474
|
-
def property(self) -> Optional["
|
|
22457
|
+
def property(self) -> Optional["api_Property"]:
|
|
22475
22458
|
return self._property
|
|
22476
22459
|
|
|
22477
22460
|
@builtins.property
|
|
@@ -22537,7 +22520,7 @@ class scout_checks_api_ChecklistSearchQueryVisitor:
|
|
|
22537
22520
|
pass
|
|
22538
22521
|
|
|
22539
22522
|
@abstractmethod
|
|
22540
|
-
def _property(self, property: "
|
|
22523
|
+
def _property(self, property: "api_Property") -> Any:
|
|
22541
22524
|
pass
|
|
22542
22525
|
|
|
22543
22526
|
@abstractmethod
|
|
@@ -23370,8 +23353,8 @@ class scout_checks_api_CreateChecklistRequest(ConjureBeanType):
|
|
|
23370
23353
|
'description': ConjureFieldDefinition('description', str),
|
|
23371
23354
|
'functions': ConjureFieldDefinition('functions', Dict[scout_compute_api_FunctionReference, scout_checks_api_CreateFunctionRequest]),
|
|
23372
23355
|
'checks': ConjureFieldDefinition('checks', List[scout_checks_api_CreateChecklistEntryRequest]),
|
|
23373
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
23374
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
23356
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
23357
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
23375
23358
|
'checklist_variables': ConjureFieldDefinition('checklistVariables', List[scout_checks_api_UnresolvedChecklistVariable]),
|
|
23376
23359
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool])
|
|
23377
23360
|
}
|
|
@@ -23758,8 +23741,8 @@ class scout_checks_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
23758
23741
|
@builtins.classmethod
|
|
23759
23742
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
23760
23743
|
return {
|
|
23761
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
23762
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
23744
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
23745
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
23763
23746
|
}
|
|
23764
23747
|
|
|
23765
23748
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -24407,12 +24390,12 @@ class scout_checks_api_SearchChecklistsRequest(ConjureBeanType):
|
|
|
24407
24390
|
'sort_by': ConjureFieldDefinition('sortBy', OptionalTypeWrapper[scout_checks_api_SortOptions]),
|
|
24408
24391
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
24409
24392
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
24410
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
24393
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
24411
24394
|
}
|
|
24412
24395
|
|
|
24413
24396
|
__slots__: List[str] = ['_query', '_sort_by', '_next_page_token', '_page_size', '_archived_statuses']
|
|
24414
24397
|
|
|
24415
|
-
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:
|
|
24416
24399
|
self._query = query
|
|
24417
24400
|
self._sort_by = sort_by
|
|
24418
24401
|
self._next_page_token = next_page_token
|
|
@@ -24442,7 +24425,7 @@ class scout_checks_api_SearchChecklistsRequest(ConjureBeanType):
|
|
|
24442
24425
|
return self._page_size
|
|
24443
24426
|
|
|
24444
24427
|
@builtins.property
|
|
24445
|
-
def archived_statuses(self) -> Optional[List["
|
|
24428
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
24446
24429
|
"""
|
|
24447
24430
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived checklists in search.
|
|
24448
24431
|
"""
|
|
@@ -25178,8 +25161,8 @@ class scout_checks_api_UpdateChecklistMetadataRequest(ConjureBeanType):
|
|
|
25178
25161
|
'assignee_rid': ConjureFieldDefinition('assigneeRid', OptionalTypeWrapper[scout_rids_api_UserRid]),
|
|
25179
25162
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
25180
25163
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
25181
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
25182
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
25164
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
25165
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
25183
25166
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool])
|
|
25184
25167
|
}
|
|
25185
25168
|
|
|
@@ -30243,6 +30226,32 @@ scout_compute_api_EnumBucket.__qualname__ = "EnumBucket"
|
|
|
30243
30226
|
scout_compute_api_EnumBucket.__module__ = "nominal_api.scout_compute_api"
|
|
30244
30227
|
|
|
30245
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
|
+
|
|
30246
30255
|
class scout_compute_api_EnumFilterOperator(ConjureEnumType):
|
|
30247
30256
|
|
|
30248
30257
|
IS_IN = 'IS_IN'
|
|
@@ -32890,6 +32899,8 @@ class scout_compute_api_NumericAggregationFunction(ConjureEnumType):
|
|
|
32890
32899
|
'''MIN'''
|
|
32891
32900
|
MAX = 'MAX'
|
|
32892
32901
|
'''MAX'''
|
|
32902
|
+
COUNT = 'COUNT'
|
|
32903
|
+
'''COUNT'''
|
|
32893
32904
|
UNKNOWN = 'UNKNOWN'
|
|
32894
32905
|
'''UNKNOWN'''
|
|
32895
32906
|
|
|
@@ -33320,6 +33331,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33320
33331
|
_aggregate: Optional["scout_compute_api_AggregateNumericSeries"] = None
|
|
33321
33332
|
_arithmetic: Optional["scout_compute_api_ArithmeticSeries"] = None
|
|
33322
33333
|
_bit_operation: Optional["scout_compute_api_BitOperationSeries"] = None
|
|
33334
|
+
_count_duplicate: Optional["scout_compute_api_EnumCountDuplicateSeries"] = None
|
|
33323
33335
|
_cumulative_sum: Optional["scout_compute_api_CumulativeSumSeries"] = None
|
|
33324
33336
|
_derivative: Optional["scout_compute_api_DerivativeSeries"] = None
|
|
33325
33337
|
_function: Optional["scout_compute_api_NumericSeriesFunction"] = None
|
|
@@ -33353,6 +33365,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33353
33365
|
'aggregate': ConjureFieldDefinition('aggregate', scout_compute_api_AggregateNumericSeries),
|
|
33354
33366
|
'arithmetic': ConjureFieldDefinition('arithmetic', scout_compute_api_ArithmeticSeries),
|
|
33355
33367
|
'bit_operation': ConjureFieldDefinition('bitOperation', scout_compute_api_BitOperationSeries),
|
|
33368
|
+
'count_duplicate': ConjureFieldDefinition('countDuplicate', scout_compute_api_EnumCountDuplicateSeries),
|
|
33356
33369
|
'cumulative_sum': ConjureFieldDefinition('cumulativeSum', scout_compute_api_CumulativeSumSeries),
|
|
33357
33370
|
'derivative': ConjureFieldDefinition('derivative', scout_compute_api_DerivativeSeries),
|
|
33358
33371
|
'function': ConjureFieldDefinition('function', scout_compute_api_NumericSeriesFunction),
|
|
@@ -33386,6 +33399,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33386
33399
|
aggregate: Optional["scout_compute_api_AggregateNumericSeries"] = None,
|
|
33387
33400
|
arithmetic: Optional["scout_compute_api_ArithmeticSeries"] = None,
|
|
33388
33401
|
bit_operation: Optional["scout_compute_api_BitOperationSeries"] = None,
|
|
33402
|
+
count_duplicate: Optional["scout_compute_api_EnumCountDuplicateSeries"] = None,
|
|
33389
33403
|
cumulative_sum: Optional["scout_compute_api_CumulativeSumSeries"] = None,
|
|
33390
33404
|
derivative: Optional["scout_compute_api_DerivativeSeries"] = None,
|
|
33391
33405
|
function: Optional["scout_compute_api_NumericSeriesFunction"] = None,
|
|
@@ -33415,7 +33429,7 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33415
33429
|
type_of_union: Optional[str] = None
|
|
33416
33430
|
) -> None:
|
|
33417
33431
|
if type_of_union is None:
|
|
33418
|
-
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:
|
|
33419
33433
|
raise ValueError('a union must contain a single member')
|
|
33420
33434
|
|
|
33421
33435
|
if aggregate is not None:
|
|
@@ -33427,6 +33441,9 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33427
33441
|
if bit_operation is not None:
|
|
33428
33442
|
self._bit_operation = bit_operation
|
|
33429
33443
|
self._type = 'bitOperation'
|
|
33444
|
+
if count_duplicate is not None:
|
|
33445
|
+
self._count_duplicate = count_duplicate
|
|
33446
|
+
self._type = 'countDuplicate'
|
|
33430
33447
|
if cumulative_sum is not None:
|
|
33431
33448
|
self._cumulative_sum = cumulative_sum
|
|
33432
33449
|
self._type = 'cumulativeSum'
|
|
@@ -33521,6 +33538,11 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33521
33538
|
raise ValueError('a union value must not be None')
|
|
33522
33539
|
self._bit_operation = bit_operation
|
|
33523
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'
|
|
33524
33546
|
elif type_of_union == 'cumulativeSum':
|
|
33525
33547
|
if cumulative_sum is None:
|
|
33526
33548
|
raise ValueError('a union value must not be None')
|
|
@@ -33664,6 +33686,10 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33664
33686
|
def bit_operation(self) -> Optional["scout_compute_api_BitOperationSeries"]:
|
|
33665
33687
|
return self._bit_operation
|
|
33666
33688
|
|
|
33689
|
+
@builtins.property
|
|
33690
|
+
def count_duplicate(self) -> Optional["scout_compute_api_EnumCountDuplicateSeries"]:
|
|
33691
|
+
return self._count_duplicate
|
|
33692
|
+
|
|
33667
33693
|
@builtins.property
|
|
33668
33694
|
def cumulative_sum(self) -> Optional["scout_compute_api_CumulativeSumSeries"]:
|
|
33669
33695
|
return self._cumulative_sum
|
|
@@ -33777,6 +33803,8 @@ class scout_compute_api_NumericSeries(ConjureUnionType):
|
|
|
33777
33803
|
return visitor._arithmetic(self.arithmetic)
|
|
33778
33804
|
if self._type == 'bitOperation' and self.bit_operation is not None:
|
|
33779
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)
|
|
33780
33808
|
if self._type == 'cumulativeSum' and self.cumulative_sum is not None:
|
|
33781
33809
|
return visitor._cumulative_sum(self.cumulative_sum)
|
|
33782
33810
|
if self._type == 'derivative' and self.derivative is not None:
|
|
@@ -33850,6 +33878,10 @@ class scout_compute_api_NumericSeriesVisitor:
|
|
|
33850
33878
|
def _bit_operation(self, bit_operation: "scout_compute_api_BitOperationSeries") -> Any:
|
|
33851
33879
|
pass
|
|
33852
33880
|
|
|
33881
|
+
@abstractmethod
|
|
33882
|
+
def _count_duplicate(self, count_duplicate: "scout_compute_api_EnumCountDuplicateSeries") -> Any:
|
|
33883
|
+
pass
|
|
33884
|
+
|
|
33853
33885
|
@abstractmethod
|
|
33854
33886
|
def _cumulative_sum(self, cumulative_sum: "scout_compute_api_CumulativeSumSeries") -> Any:
|
|
33855
33887
|
pass
|
|
@@ -34119,6 +34151,8 @@ class scout_compute_api_NumericUnionOperation(ConjureEnumType):
|
|
|
34119
34151
|
'''MEAN'''
|
|
34120
34152
|
SUM = 'SUM'
|
|
34121
34153
|
'''SUM'''
|
|
34154
|
+
COUNT = 'COUNT'
|
|
34155
|
+
'''COUNT'''
|
|
34122
34156
|
THROW = 'THROW'
|
|
34123
34157
|
'''THROW'''
|
|
34124
34158
|
UNKNOWN = 'UNKNOWN'
|
|
@@ -41189,6 +41223,29 @@ scout_compute_resolved_api_DerivativeSeriesNode.__qualname__ = "DerivativeSeries
|
|
|
41189
41223
|
scout_compute_resolved_api_DerivativeSeriesNode.__module__ = "nominal_api.scout_compute_resolved_api"
|
|
41190
41224
|
|
|
41191
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
|
+
|
|
41192
41249
|
class scout_compute_resolved_api_EnumEqualityRangesNode(ConjureBeanType):
|
|
41193
41250
|
|
|
41194
41251
|
@builtins.classmethod
|
|
@@ -42575,6 +42632,7 @@ scout_compute_resolved_api_NumericResampleSeriesNode.__module__ = "nominal_api.s
|
|
|
42575
42632
|
class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
42576
42633
|
_arithmetic: Optional["scout_compute_resolved_api_ArithmeticSeriesNode"] = None
|
|
42577
42634
|
_bit_operation: Optional["scout_compute_resolved_api_BitOperationSeriesNode"] = None
|
|
42635
|
+
_count_duplicate: Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"] = None
|
|
42578
42636
|
_cumulative_sum: Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"] = None
|
|
42579
42637
|
_derivative: Optional["scout_compute_resolved_api_DerivativeSeriesNode"] = None
|
|
42580
42638
|
_integral: Optional["scout_compute_resolved_api_IntegralSeriesNode"] = None
|
|
@@ -42605,6 +42663,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42605
42663
|
return {
|
|
42606
42664
|
'arithmetic': ConjureFieldDefinition('arithmetic', scout_compute_resolved_api_ArithmeticSeriesNode),
|
|
42607
42665
|
'bit_operation': ConjureFieldDefinition('bitOperation', scout_compute_resolved_api_BitOperationSeriesNode),
|
|
42666
|
+
'count_duplicate': ConjureFieldDefinition('countDuplicate', scout_compute_resolved_api_EnumCountDuplicateSeriesNode),
|
|
42608
42667
|
'cumulative_sum': ConjureFieldDefinition('cumulativeSum', scout_compute_resolved_api_CumulativeSumSeriesNode),
|
|
42609
42668
|
'derivative': ConjureFieldDefinition('derivative', scout_compute_resolved_api_DerivativeSeriesNode),
|
|
42610
42669
|
'integral': ConjureFieldDefinition('integral', scout_compute_resolved_api_IntegralSeriesNode),
|
|
@@ -42635,6 +42694,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42635
42694
|
self,
|
|
42636
42695
|
arithmetic: Optional["scout_compute_resolved_api_ArithmeticSeriesNode"] = None,
|
|
42637
42696
|
bit_operation: Optional["scout_compute_resolved_api_BitOperationSeriesNode"] = None,
|
|
42697
|
+
count_duplicate: Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"] = None,
|
|
42638
42698
|
cumulative_sum: Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"] = None,
|
|
42639
42699
|
derivative: Optional["scout_compute_resolved_api_DerivativeSeriesNode"] = None,
|
|
42640
42700
|
integral: Optional["scout_compute_resolved_api_IntegralSeriesNode"] = None,
|
|
@@ -42662,7 +42722,7 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42662
42722
|
type_of_union: Optional[str] = None
|
|
42663
42723
|
) -> None:
|
|
42664
42724
|
if type_of_union is None:
|
|
42665
|
-
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:
|
|
42666
42726
|
raise ValueError('a union must contain a single member')
|
|
42667
42727
|
|
|
42668
42728
|
if arithmetic is not None:
|
|
@@ -42671,6 +42731,9 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42671
42731
|
if bit_operation is not None:
|
|
42672
42732
|
self._bit_operation = bit_operation
|
|
42673
42733
|
self._type = 'bitOperation'
|
|
42734
|
+
if count_duplicate is not None:
|
|
42735
|
+
self._count_duplicate = count_duplicate
|
|
42736
|
+
self._type = 'countDuplicate'
|
|
42674
42737
|
if cumulative_sum is not None:
|
|
42675
42738
|
self._cumulative_sum = cumulative_sum
|
|
42676
42739
|
self._type = 'cumulativeSum'
|
|
@@ -42754,6 +42817,11 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42754
42817
|
raise ValueError('a union value must not be None')
|
|
42755
42818
|
self._bit_operation = bit_operation
|
|
42756
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'
|
|
42757
42825
|
elif type_of_union == 'cumulativeSum':
|
|
42758
42826
|
if cumulative_sum is None:
|
|
42759
42827
|
raise ValueError('a union value must not be None')
|
|
@@ -42883,6 +42951,10 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42883
42951
|
def bit_operation(self) -> Optional["scout_compute_resolved_api_BitOperationSeriesNode"]:
|
|
42884
42952
|
return self._bit_operation
|
|
42885
42953
|
|
|
42954
|
+
@builtins.property
|
|
42955
|
+
def count_duplicate(self) -> Optional["scout_compute_resolved_api_EnumCountDuplicateSeriesNode"]:
|
|
42956
|
+
return self._count_duplicate
|
|
42957
|
+
|
|
42886
42958
|
@builtins.property
|
|
42887
42959
|
def cumulative_sum(self) -> Optional["scout_compute_resolved_api_CumulativeSumSeriesNode"]:
|
|
42888
42960
|
return self._cumulative_sum
|
|
@@ -42986,6 +43058,8 @@ class scout_compute_resolved_api_NumericSeriesNode(ConjureUnionType):
|
|
|
42986
43058
|
return visitor._arithmetic(self.arithmetic)
|
|
42987
43059
|
if self._type == 'bitOperation' and self.bit_operation is not None:
|
|
42988
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)
|
|
42989
43063
|
if self._type == 'cumulativeSum' and self.cumulative_sum is not None:
|
|
42990
43064
|
return visitor._cumulative_sum(self.cumulative_sum)
|
|
42991
43065
|
if self._type == 'derivative' and self.derivative is not None:
|
|
@@ -43051,6 +43125,10 @@ class scout_compute_resolved_api_NumericSeriesNodeVisitor:
|
|
|
43051
43125
|
def _bit_operation(self, bit_operation: "scout_compute_resolved_api_BitOperationSeriesNode") -> Any:
|
|
43052
43126
|
pass
|
|
43053
43127
|
|
|
43128
|
+
@abstractmethod
|
|
43129
|
+
def _count_duplicate(self, count_duplicate: "scout_compute_resolved_api_EnumCountDuplicateSeriesNode") -> Any:
|
|
43130
|
+
pass
|
|
43131
|
+
|
|
43054
43132
|
@abstractmethod
|
|
43055
43133
|
def _cumulative_sum(self, cumulative_sum: "scout_compute_resolved_api_CumulativeSumSeriesNode") -> Any:
|
|
43056
43134
|
pass
|
|
@@ -47167,12 +47245,12 @@ class scout_datareview_api_CheckAlertsHistogramRequest(ConjureBeanType):
|
|
|
47167
47245
|
'chart_rids': ConjureFieldDefinition('chartRids', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
47168
47246
|
'notebook_rids': ConjureFieldDefinition('notebookRids', OptionalTypeWrapper[List[scout_rids_api_NotebookRid]]),
|
|
47169
47247
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
47170
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
47248
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
47171
47249
|
}
|
|
47172
47250
|
|
|
47173
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']
|
|
47174
47252
|
|
|
47175
|
-
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:
|
|
47176
47254
|
self._num_bins = num_bins
|
|
47177
47255
|
self._search_text = search_text
|
|
47178
47256
|
self._distribution_variable = distribution_variable
|
|
@@ -47283,7 +47361,7 @@ in search results.
|
|
|
47283
47361
|
return self._show_archived
|
|
47284
47362
|
|
|
47285
47363
|
@builtins.property
|
|
47286
|
-
def archived_statuses(self) -> Optional[List["
|
|
47364
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
47287
47365
|
"""
|
|
47288
47366
|
Filters search on check alerts based on the archived statuses provided.
|
|
47289
47367
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -48759,12 +48837,12 @@ If commitId is omitted from a ChecklistRef, it will match all commits.
|
|
|
48759
48837
|
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_api_Token]),
|
|
48760
48838
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
48761
48839
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
48762
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
48840
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
48763
48841
|
}
|
|
48764
48842
|
|
|
48765
48843
|
__slots__: List[str] = ['_run_rids', '_asset_rids', '_checklist_refs', '_next_page_token', '_page_size', '_show_archived', '_archived_statuses']
|
|
48766
48844
|
|
|
48767
|
-
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:
|
|
48768
48846
|
self._run_rids = run_rids
|
|
48769
48847
|
self._asset_rids = asset_rids
|
|
48770
48848
|
self._checklist_refs = checklist_refs
|
|
@@ -48805,7 +48883,7 @@ in search results alongside non-archived ones. Defaults to false if not specifie
|
|
|
48805
48883
|
return self._show_archived
|
|
48806
48884
|
|
|
48807
48885
|
@builtins.property
|
|
48808
|
-
def archived_statuses(self) -> Optional[List["
|
|
48886
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
48809
48887
|
"""
|
|
48810
48888
|
Filters search on data reviews based on the archived statuses provided.
|
|
48811
48889
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -50048,12 +50126,12 @@ class scout_datareview_api_SearchCheckAlertsRequest(ConjureBeanType):
|
|
|
50048
50126
|
'chart_rids': ConjureFieldDefinition('chartRids', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
50049
50127
|
'notebook_rids': ConjureFieldDefinition('notebookRids', OptionalTypeWrapper[List[scout_rids_api_NotebookRid]]),
|
|
50050
50128
|
'show_archived': ConjureFieldDefinition('showArchived', OptionalTypeWrapper[bool]),
|
|
50051
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
50129
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
50052
50130
|
}
|
|
50053
50131
|
|
|
50054
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']
|
|
50055
50133
|
|
|
50056
|
-
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:
|
|
50057
50135
|
self._next_page_token = next_page_token
|
|
50058
50136
|
self._page_size = page_size
|
|
50059
50137
|
self._sort_by = sort_by
|
|
@@ -50161,7 +50239,7 @@ results. If not present or false, will not show archived data reviews in search
|
|
|
50161
50239
|
return self._show_archived
|
|
50162
50240
|
|
|
50163
50241
|
@builtins.property
|
|
50164
|
-
def archived_statuses(self) -> Optional[List["
|
|
50242
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
50165
50243
|
"""
|
|
50166
50244
|
Filters search on check alerts based on the archived statuses provided.
|
|
50167
50245
|
Default is NOT_ARCHIVED only if none are provided.
|
|
@@ -54168,7 +54246,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54168
54246
|
_exact_match: Optional[str] = None
|
|
54169
54247
|
_search_text: Optional[str] = None
|
|
54170
54248
|
_label: Optional[str] = None
|
|
54171
|
-
_property: Optional["
|
|
54249
|
+
_property: Optional["api_Property"] = None
|
|
54172
54250
|
_and_: Optional[List["scout_internal_search_api_SearchQuery"]] = None
|
|
54173
54251
|
_or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None
|
|
54174
54252
|
|
|
@@ -54182,8 +54260,8 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54182
54260
|
'boolean_field': ConjureFieldDefinition('booleanField', scout_internal_search_api_BooleanField),
|
|
54183
54261
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
54184
54262
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
54185
|
-
'label': ConjureFieldDefinition('label',
|
|
54186
|
-
'property': ConjureFieldDefinition('property',
|
|
54263
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
54264
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
54187
54265
|
'and_': ConjureFieldDefinition('and', List[scout_internal_search_api_SearchQuery]),
|
|
54188
54266
|
'or_': ConjureFieldDefinition('or', List[scout_internal_search_api_SearchQuery])
|
|
54189
54267
|
}
|
|
@@ -54198,7 +54276,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54198
54276
|
exact_match: Optional[str] = None,
|
|
54199
54277
|
search_text: Optional[str] = None,
|
|
54200
54278
|
label: Optional[str] = None,
|
|
54201
|
-
property: Optional["
|
|
54279
|
+
property: Optional["api_Property"] = None,
|
|
54202
54280
|
and_: Optional[List["scout_internal_search_api_SearchQuery"]] = None,
|
|
54203
54281
|
or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None,
|
|
54204
54282
|
type_of_union: Optional[str] = None
|
|
@@ -54333,7 +54411,7 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
54333
54411
|
return self._label
|
|
54334
54412
|
|
|
54335
54413
|
@builtins.property
|
|
54336
|
-
def property(self) -> Optional["
|
|
54414
|
+
def property(self) -> Optional["api_Property"]:
|
|
54337
54415
|
return self._property
|
|
54338
54416
|
|
|
54339
54417
|
@builtins.property
|
|
@@ -54411,7 +54489,7 @@ class scout_internal_search_api_SearchQueryVisitor:
|
|
|
54411
54489
|
pass
|
|
54412
54490
|
|
|
54413
54491
|
@abstractmethod
|
|
54414
|
-
def _property(self, property: "
|
|
54492
|
+
def _property(self, property: "api_Property") -> Any:
|
|
54415
54493
|
pass
|
|
54416
54494
|
|
|
54417
54495
|
@abstractmethod
|
|
@@ -55396,8 +55474,8 @@ class scout_metadata_ListPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
55396
55474
|
@builtins.classmethod
|
|
55397
55475
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
55398
55476
|
return {
|
|
55399
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55400
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55477
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
55478
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55401
55479
|
}
|
|
55402
55480
|
|
|
55403
55481
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -55619,8 +55697,8 @@ class scout_notebook_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
55619
55697
|
@builtins.classmethod
|
|
55620
55698
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
55621
55699
|
return {
|
|
55622
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55623
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55700
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
55701
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55624
55702
|
}
|
|
55625
55703
|
|
|
55626
55704
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -55847,8 +55925,8 @@ class scout_notebook_api_NotebookMetadata(ConjureBeanType):
|
|
|
55847
55925
|
'lock': ConjureFieldDefinition('lock', scout_notebook_api_Lock),
|
|
55848
55926
|
'created_by_rid': ConjureFieldDefinition('createdByRid', scout_rids_api_UserRid),
|
|
55849
55927
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
55850
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
55851
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
55928
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
55929
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
55852
55930
|
}
|
|
55853
55931
|
|
|
55854
55932
|
__slots__: List[str] = ['_run_rid', '_data_scope', '_notebook_type', '_title', '_description', '_is_draft', '_is_archived', '_lock', '_created_by_rid', '_created_at', '_properties', '_labels']
|
|
@@ -55977,7 +56055,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
55977
56055
|
_exact_match: Optional[str] = None
|
|
55978
56056
|
_search_text: Optional[str] = None
|
|
55979
56057
|
_label: Optional[str] = None
|
|
55980
|
-
_property: Optional["
|
|
56058
|
+
_property: Optional["api_Property"] = None
|
|
55981
56059
|
_asset_rid: Optional[str] = None
|
|
55982
56060
|
_author_rid: Optional[str] = None
|
|
55983
56061
|
_run_rid: Optional[str] = None
|
|
@@ -55992,8 +56070,8 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
55992
56070
|
'or_': ConjureFieldDefinition('or', List[scout_notebook_api_SearchNotebooksQuery]),
|
|
55993
56071
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
55994
56072
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
55995
|
-
'label': ConjureFieldDefinition('label',
|
|
55996
|
-
'property': ConjureFieldDefinition('property',
|
|
56073
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
56074
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
55997
56075
|
'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
|
|
55998
56076
|
'author_rid': ConjureFieldDefinition('authorRid', scout_rids_api_UserRid),
|
|
55999
56077
|
'run_rid': ConjureFieldDefinition('runRid', scout_run_api_RunRid),
|
|
@@ -56009,7 +56087,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
56009
56087
|
exact_match: Optional[str] = None,
|
|
56010
56088
|
search_text: Optional[str] = None,
|
|
56011
56089
|
label: Optional[str] = None,
|
|
56012
|
-
property: Optional["
|
|
56090
|
+
property: Optional["api_Property"] = None,
|
|
56013
56091
|
asset_rid: Optional[str] = None,
|
|
56014
56092
|
author_rid: Optional[str] = None,
|
|
56015
56093
|
run_rid: Optional[str] = None,
|
|
@@ -56144,7 +56222,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
|
56144
56222
|
return self._label
|
|
56145
56223
|
|
|
56146
56224
|
@builtins.property
|
|
56147
|
-
def property(self) -> Optional["
|
|
56225
|
+
def property(self) -> Optional["api_Property"]:
|
|
56148
56226
|
return self._property
|
|
56149
56227
|
|
|
56150
56228
|
@builtins.property
|
|
@@ -56228,7 +56306,7 @@ class scout_notebook_api_SearchNotebooksQueryVisitor:
|
|
|
56228
56306
|
pass
|
|
56229
56307
|
|
|
56230
56308
|
@abstractmethod
|
|
56231
|
-
def _property(self, property: "
|
|
56309
|
+
def _property(self, property: "api_Property") -> Any:
|
|
56232
56310
|
pass
|
|
56233
56311
|
|
|
56234
56312
|
@abstractmethod
|
|
@@ -56412,8 +56490,8 @@ class scout_notebook_api_UpdateNotebookMetadataRequest(ConjureBeanType):
|
|
|
56412
56490
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
56413
56491
|
'data_scope': ConjureFieldDefinition('dataScope', OptionalTypeWrapper[scout_notebook_api_NotebookDataScope]),
|
|
56414
56492
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
56415
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
56416
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
56493
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
56494
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
56417
56495
|
'is_draft': ConjureFieldDefinition('isDraft', OptionalTypeWrapper[bool])
|
|
56418
56496
|
}
|
|
56419
56497
|
|
|
@@ -56538,24 +56616,6 @@ scout_plotting_TimestampType.__qualname__ = "TimestampType"
|
|
|
56538
56616
|
scout_plotting_TimestampType.__module__ = "nominal_api.scout_plotting"
|
|
56539
56617
|
|
|
56540
56618
|
|
|
56541
|
-
class scout_rids_api_ArchivedStatus(ConjureEnumType):
|
|
56542
|
-
|
|
56543
|
-
ARCHIVED = 'ARCHIVED'
|
|
56544
|
-
'''ARCHIVED'''
|
|
56545
|
-
NOT_ARCHIVED = 'NOT_ARCHIVED'
|
|
56546
|
-
'''NOT_ARCHIVED'''
|
|
56547
|
-
UNKNOWN = 'UNKNOWN'
|
|
56548
|
-
'''UNKNOWN'''
|
|
56549
|
-
|
|
56550
|
-
def __reduce_ex__(self, proto):
|
|
56551
|
-
return self.__class__, (self.name,)
|
|
56552
|
-
|
|
56553
|
-
|
|
56554
|
-
scout_rids_api_ArchivedStatus.__name__ = "ArchivedStatus"
|
|
56555
|
-
scout_rids_api_ArchivedStatus.__qualname__ = "ArchivedStatus"
|
|
56556
|
-
scout_rids_api_ArchivedStatus.__module__ = "nominal_api.scout_rids_api"
|
|
56557
|
-
|
|
56558
|
-
|
|
56559
56619
|
class scout_rids_api_CheckAlertState(ConjureUnionType):
|
|
56560
56620
|
_pending_review: Optional["scout_rids_api_PendingReviewAlertState"] = None
|
|
56561
56621
|
_closed_with_further_action: Optional["scout_rids_api_ClosedWithFurtherActionAlertState"] = None
|
|
@@ -56778,8 +56838,8 @@ class scout_run_api_AllRunsPropertiesAndLabelsResponse(ConjureBeanType):
|
|
|
56778
56838
|
@builtins.classmethod
|
|
56779
56839
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
56780
56840
|
return {
|
|
56781
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
56782
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
56841
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
56842
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
56783
56843
|
}
|
|
56784
56844
|
|
|
56785
56845
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -56967,8 +57027,8 @@ class scout_run_api_CreateRunRequest(ConjureBeanType):
|
|
|
56967
57027
|
'description': ConjureFieldDefinition('description', str),
|
|
56968
57028
|
'start_time': ConjureFieldDefinition('startTime', scout_run_api_UtcTimestamp),
|
|
56969
57029
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
56970
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
56971
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
57030
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
57031
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
56972
57032
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
56973
57033
|
'run_prefix': ConjureFieldDefinition('runPrefix', OptionalTypeWrapper[str]),
|
|
56974
57034
|
'data_sources': ConjureFieldDefinition('dataSources', Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]),
|
|
@@ -57503,35 +57563,6 @@ scout_run_api_Link.__qualname__ = "Link"
|
|
|
57503
57563
|
scout_run_api_Link.__module__ = "nominal_api.scout_run_api"
|
|
57504
57564
|
|
|
57505
57565
|
|
|
57506
|
-
class scout_run_api_Property(ConjureBeanType):
|
|
57507
|
-
|
|
57508
|
-
@builtins.classmethod
|
|
57509
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
57510
|
-
return {
|
|
57511
|
-
'name': ConjureFieldDefinition('name', scout_run_api_PropertyName),
|
|
57512
|
-
'value': ConjureFieldDefinition('value', scout_run_api_PropertyValue)
|
|
57513
|
-
}
|
|
57514
|
-
|
|
57515
|
-
__slots__: List[str] = ['_name', '_value']
|
|
57516
|
-
|
|
57517
|
-
def __init__(self, name: str, value: str) -> None:
|
|
57518
|
-
self._name = name
|
|
57519
|
-
self._value = value
|
|
57520
|
-
|
|
57521
|
-
@builtins.property
|
|
57522
|
-
def name(self) -> str:
|
|
57523
|
-
return self._name
|
|
57524
|
-
|
|
57525
|
-
@builtins.property
|
|
57526
|
-
def value(self) -> str:
|
|
57527
|
-
return self._value
|
|
57528
|
-
|
|
57529
|
-
|
|
57530
|
-
scout_run_api_Property.__name__ = "Property"
|
|
57531
|
-
scout_run_api_Property.__qualname__ = "Property"
|
|
57532
|
-
scout_run_api_Property.__module__ = "nominal_api.scout_run_api"
|
|
57533
|
-
|
|
57534
|
-
|
|
57535
57566
|
class scout_run_api_RefNameAndType(ConjureBeanType):
|
|
57536
57567
|
"""
|
|
57537
57568
|
Scoped to the org-level, intended to help the frontend
|
|
@@ -57579,8 +57610,8 @@ class scout_run_api_Run(ConjureBeanType):
|
|
|
57579
57610
|
'author_rid': ConjureFieldDefinition('authorRid', OptionalTypeWrapper[scout_rids_api_UserRid]),
|
|
57580
57611
|
'start_time': ConjureFieldDefinition('startTime', scout_run_api_UtcTimestamp),
|
|
57581
57612
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
57582
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
57583
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
57613
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
57614
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
57584
57615
|
'links': ConjureFieldDefinition('links', List[scout_run_api_Link]),
|
|
57585
57616
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
57586
57617
|
'updated_at': ConjureFieldDefinition('updatedAt', str),
|
|
@@ -57896,7 +57927,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57896
57927
|
_search_text: Optional[str] = None
|
|
57897
57928
|
_asset: Optional[str] = None
|
|
57898
57929
|
_label: Optional[str] = None
|
|
57899
|
-
_property: Optional["
|
|
57930
|
+
_property: Optional["api_Property"] = None
|
|
57900
57931
|
_data_source_series_tag: Optional["scout_run_api_DataSourceSeriesTag"] = None
|
|
57901
57932
|
_data_source_ref_name: Optional[str] = None
|
|
57902
57933
|
_data_source: Optional["scout_run_api_DataSource"] = None
|
|
@@ -57912,8 +57943,8 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57912
57943
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
57913
57944
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
57914
57945
|
'asset': ConjureFieldDefinition('asset', scout_rids_api_AssetRid),
|
|
57915
|
-
'label': ConjureFieldDefinition('label',
|
|
57916
|
-
'property': ConjureFieldDefinition('property',
|
|
57946
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
57947
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
57917
57948
|
'data_source_series_tag': ConjureFieldDefinition('dataSourceSeriesTag', scout_run_api_DataSourceSeriesTag),
|
|
57918
57949
|
'data_source_ref_name': ConjureFieldDefinition('dataSourceRefName', scout_api_DataSourceRefName),
|
|
57919
57950
|
'data_source': ConjureFieldDefinition('dataSource', scout_run_api_DataSource),
|
|
@@ -57930,7 +57961,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
57930
57961
|
search_text: Optional[str] = None,
|
|
57931
57962
|
asset: Optional[str] = None,
|
|
57932
57963
|
label: Optional[str] = None,
|
|
57933
|
-
property: Optional["
|
|
57964
|
+
property: Optional["api_Property"] = None,
|
|
57934
57965
|
data_source_series_tag: Optional["scout_run_api_DataSourceSeriesTag"] = None,
|
|
57935
57966
|
data_source_ref_name: Optional[str] = None,
|
|
57936
57967
|
data_source: Optional["scout_run_api_DataSource"] = None,
|
|
@@ -58077,7 +58108,7 @@ class scout_run_api_SearchQuery(ConjureUnionType):
|
|
|
58077
58108
|
return self._label
|
|
58078
58109
|
|
|
58079
58110
|
@builtins.property
|
|
58080
|
-
def property(self) -> Optional["
|
|
58111
|
+
def property(self) -> Optional["api_Property"]:
|
|
58081
58112
|
return self._property
|
|
58082
58113
|
|
|
58083
58114
|
@builtins.property
|
|
@@ -58170,7 +58201,7 @@ class scout_run_api_SearchQueryVisitor:
|
|
|
58170
58201
|
pass
|
|
58171
58202
|
|
|
58172
58203
|
@abstractmethod
|
|
58173
|
-
def _property(self, property: "
|
|
58204
|
+
def _property(self, property: "api_Property") -> Any:
|
|
58174
58205
|
pass
|
|
58175
58206
|
|
|
58176
58207
|
@abstractmethod
|
|
@@ -58534,8 +58565,8 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
|
|
|
58534
58565
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
58535
58566
|
'start_time': ConjureFieldDefinition('startTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
58536
58567
|
'end_time': ConjureFieldDefinition('endTime', OptionalTypeWrapper[scout_run_api_UtcTimestamp]),
|
|
58537
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
58538
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
58568
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
58569
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
58539
58570
|
'links': ConjureFieldDefinition('links', OptionalTypeWrapper[List[scout_run_api_Link]]),
|
|
58540
58571
|
'run_prefix': ConjureFieldDefinition('runPrefix', OptionalTypeWrapper[str]),
|
|
58541
58572
|
'data_sources': ConjureFieldDefinition('dataSources', OptionalTypeWrapper[Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]]),
|
|
@@ -58724,8 +58755,8 @@ class scout_template_api_CreateTemplateRequest(ConjureBeanType):
|
|
|
58724
58755
|
return {
|
|
58725
58756
|
'title': ConjureFieldDefinition('title', str),
|
|
58726
58757
|
'description': ConjureFieldDefinition('description', str),
|
|
58727
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
58728
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
58758
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
58759
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
58729
58760
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool]),
|
|
58730
58761
|
'charts': ConjureFieldDefinition('charts', OptionalTypeWrapper[List[scout_rids_api_VersionedVizId]]),
|
|
58731
58762
|
'layout': ConjureFieldDefinition('layout', scout_layout_api_WorkbookLayout),
|
|
@@ -58796,8 +58827,8 @@ class scout_template_api_GetAllLabelsAndPropertiesResponse(ConjureBeanType):
|
|
|
58796
58827
|
@builtins.classmethod
|
|
58797
58828
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
58798
58829
|
return {
|
|
58799
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
58800
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
58830
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, List[api_PropertyValue]]),
|
|
58831
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
58801
58832
|
}
|
|
58802
58833
|
|
|
58803
58834
|
__slots__: List[str] = ['_properties', '_labels']
|
|
@@ -58913,7 +58944,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58913
58944
|
_exact_match: Optional[str] = None
|
|
58914
58945
|
_search_text: Optional[str] = None
|
|
58915
58946
|
_label: Optional[str] = None
|
|
58916
|
-
_property: Optional["
|
|
58947
|
+
_property: Optional["api_Property"] = None
|
|
58917
58948
|
_created_by: Optional[str] = None
|
|
58918
58949
|
_is_archived: Optional[bool] = None
|
|
58919
58950
|
_is_published: Optional[bool] = None
|
|
@@ -58925,8 +58956,8 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58925
58956
|
'or_': ConjureFieldDefinition('or', List[scout_template_api_SearchTemplatesQuery]),
|
|
58926
58957
|
'exact_match': ConjureFieldDefinition('exactMatch', str),
|
|
58927
58958
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
58928
|
-
'label': ConjureFieldDefinition('label',
|
|
58929
|
-
'property': ConjureFieldDefinition('property',
|
|
58959
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
58960
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
58930
58961
|
'created_by': ConjureFieldDefinition('createdBy', scout_rids_api_UserRid),
|
|
58931
58962
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
58932
58963
|
'is_published': ConjureFieldDefinition('isPublished', bool)
|
|
@@ -58939,7 +58970,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
58939
58970
|
exact_match: Optional[str] = None,
|
|
58940
58971
|
search_text: Optional[str] = None,
|
|
58941
58972
|
label: Optional[str] = None,
|
|
58942
|
-
property: Optional["
|
|
58973
|
+
property: Optional["api_Property"] = None,
|
|
58943
58974
|
created_by: Optional[str] = None,
|
|
58944
58975
|
is_archived: Optional[bool] = None,
|
|
58945
58976
|
is_published: Optional[bool] = None,
|
|
@@ -59050,7 +59081,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
|
59050
59081
|
return self._label
|
|
59051
59082
|
|
|
59052
59083
|
@builtins.property
|
|
59053
|
-
def property(self) -> Optional["
|
|
59084
|
+
def property(self) -> Optional["api_Property"]:
|
|
59054
59085
|
return self._property
|
|
59055
59086
|
|
|
59056
59087
|
@builtins.property
|
|
@@ -59116,7 +59147,7 @@ class scout_template_api_SearchTemplatesQueryVisitor:
|
|
|
59116
59147
|
pass
|
|
59117
59148
|
|
|
59118
59149
|
@abstractmethod
|
|
59119
|
-
def _property(self, property: "
|
|
59150
|
+
def _property(self, property: "api_Property") -> Any:
|
|
59120
59151
|
pass
|
|
59121
59152
|
|
|
59122
59153
|
@abstractmethod
|
|
@@ -59327,8 +59358,8 @@ class scout_template_api_TemplateMetadata(ConjureBeanType):
|
|
|
59327
59358
|
return {
|
|
59328
59359
|
'title': ConjureFieldDefinition('title', str),
|
|
59329
59360
|
'description': ConjureFieldDefinition('description', str),
|
|
59330
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
59331
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
59361
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
59362
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
59332
59363
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
59333
59364
|
'is_published': ConjureFieldDefinition('isPublished', bool),
|
|
59334
59365
|
'created_by': ConjureFieldDefinition('createdBy', scout_rids_api_UserRid),
|
|
@@ -59436,8 +59467,8 @@ class scout_template_api_UpdateMetadataRequest(ConjureBeanType):
|
|
|
59436
59467
|
return {
|
|
59437
59468
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
59438
59469
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
59439
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
59440
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
59470
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
59471
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
59441
59472
|
'is_archived': ConjureFieldDefinition('isArchived', OptionalTypeWrapper[bool]),
|
|
59442
59473
|
'is_published': ConjureFieldDefinition('isPublished', OptionalTypeWrapper[bool])
|
|
59443
59474
|
}
|
|
@@ -60686,24 +60717,6 @@ scout_video_VideoService.__qualname__ = "VideoService"
|
|
|
60686
60717
|
scout_video_VideoService.__module__ = "nominal_api.scout_video"
|
|
60687
60718
|
|
|
60688
60719
|
|
|
60689
|
-
class scout_video_api_ArchivedStatus(ConjureEnumType):
|
|
60690
|
-
|
|
60691
|
-
ARCHIVED = 'ARCHIVED'
|
|
60692
|
-
'''ARCHIVED'''
|
|
60693
|
-
NOT_ARCHIVED = 'NOT_ARCHIVED'
|
|
60694
|
-
'''NOT_ARCHIVED'''
|
|
60695
|
-
UNKNOWN = 'UNKNOWN'
|
|
60696
|
-
'''UNKNOWN'''
|
|
60697
|
-
|
|
60698
|
-
def __reduce_ex__(self, proto):
|
|
60699
|
-
return self.__class__, (self.name,)
|
|
60700
|
-
|
|
60701
|
-
|
|
60702
|
-
scout_video_api_ArchivedStatus.__name__ = "ArchivedStatus"
|
|
60703
|
-
scout_video_api_ArchivedStatus.__qualname__ = "ArchivedStatus"
|
|
60704
|
-
scout_video_api_ArchivedStatus.__module__ = "nominal_api.scout_video_api"
|
|
60705
|
-
|
|
60706
|
-
|
|
60707
60720
|
class scout_video_api_CreateSegment(ConjureBeanType):
|
|
60708
60721
|
|
|
60709
60722
|
@builtins.classmethod
|
|
@@ -60807,8 +60820,8 @@ class scout_video_api_CreateVideoRequest(ConjureBeanType):
|
|
|
60807
60820
|
return {
|
|
60808
60821
|
'title': ConjureFieldDefinition('title', str),
|
|
60809
60822
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
60810
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
60811
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
60823
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
60824
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
60812
60825
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_video_api_VideoOriginMetadata)
|
|
60813
60826
|
}
|
|
60814
60827
|
|
|
@@ -61189,7 +61202,7 @@ scout_video_api_McapTimestampManifest.__module__ = "nominal_api.scout_video_api"
|
|
|
61189
61202
|
|
|
61190
61203
|
class scout_video_api_NoTimestampManifest(ConjureBeanType):
|
|
61191
61204
|
"""
|
|
61192
|
-
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
|
|
61193
61206
|
implicitly through the segment timestamps.
|
|
61194
61207
|
"""
|
|
61195
61208
|
|
|
@@ -61226,35 +61239,6 @@ scout_video_api_NoTimestampManifest.__qualname__ = "NoTimestampManifest"
|
|
|
61226
61239
|
scout_video_api_NoTimestampManifest.__module__ = "nominal_api.scout_video_api"
|
|
61227
61240
|
|
|
61228
61241
|
|
|
61229
|
-
class scout_video_api_Property(ConjureBeanType):
|
|
61230
|
-
|
|
61231
|
-
@builtins.classmethod
|
|
61232
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61233
|
-
return {
|
|
61234
|
-
'name': ConjureFieldDefinition('name', scout_video_api_PropertyName),
|
|
61235
|
-
'value': ConjureFieldDefinition('value', scout_video_api_PropertyValue)
|
|
61236
|
-
}
|
|
61237
|
-
|
|
61238
|
-
__slots__: List[str] = ['_name', '_value']
|
|
61239
|
-
|
|
61240
|
-
def __init__(self, name: str, value: str) -> None:
|
|
61241
|
-
self._name = name
|
|
61242
|
-
self._value = value
|
|
61243
|
-
|
|
61244
|
-
@builtins.property
|
|
61245
|
-
def name(self) -> str:
|
|
61246
|
-
return self._name
|
|
61247
|
-
|
|
61248
|
-
@builtins.property
|
|
61249
|
-
def value(self) -> str:
|
|
61250
|
-
return self._value
|
|
61251
|
-
|
|
61252
|
-
|
|
61253
|
-
scout_video_api_Property.__name__ = "Property"
|
|
61254
|
-
scout_video_api_Property.__qualname__ = "Property"
|
|
61255
|
-
scout_video_api_Property.__module__ = "nominal_api.scout_video_api"
|
|
61256
|
-
|
|
61257
|
-
|
|
61258
61242
|
class scout_video_api_ScaleParameter(ConjureUnionType):
|
|
61259
61243
|
_true_frame_rate: Optional[float] = None
|
|
61260
61244
|
_ending_timestamp: Optional["api_Timestamp"] = None
|
|
@@ -61359,7 +61343,7 @@ scout_video_api_ScaleParameterVisitor.__module__ = "nominal_api.scout_video_api"
|
|
|
61359
61343
|
class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
61360
61344
|
_search_text: Optional[str] = None
|
|
61361
61345
|
_label: Optional[str] = None
|
|
61362
|
-
_property: Optional["
|
|
61346
|
+
_property: Optional["api_Property"] = None
|
|
61363
61347
|
_and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61364
61348
|
_or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None
|
|
61365
61349
|
_ingest_status: Optional["scout_video_api_IngestStatus"] = None
|
|
@@ -61368,8 +61352,8 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61368
61352
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
61369
61353
|
return {
|
|
61370
61354
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
61371
|
-
'label': ConjureFieldDefinition('label',
|
|
61372
|
-
'property': ConjureFieldDefinition('property',
|
|
61355
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
61356
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
61373
61357
|
'and_': ConjureFieldDefinition('and', List[scout_video_api_SearchVideosQuery]),
|
|
61374
61358
|
'or_': ConjureFieldDefinition('or', List[scout_video_api_SearchVideosQuery]),
|
|
61375
61359
|
'ingest_status': ConjureFieldDefinition('ingestStatus', scout_video_api_IngestStatus)
|
|
@@ -61379,7 +61363,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61379
61363
|
self,
|
|
61380
61364
|
search_text: Optional[str] = None,
|
|
61381
61365
|
label: Optional[str] = None,
|
|
61382
|
-
property: Optional["
|
|
61366
|
+
property: Optional["api_Property"] = None,
|
|
61383
61367
|
and_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61384
61368
|
or_: Optional[List["scout_video_api_SearchVideosQuery"]] = None,
|
|
61385
61369
|
ingest_status: Optional["scout_video_api_IngestStatus"] = None,
|
|
@@ -61448,7 +61432,7 @@ class scout_video_api_SearchVideosQuery(ConjureUnionType):
|
|
|
61448
61432
|
return self._label
|
|
61449
61433
|
|
|
61450
61434
|
@builtins.property
|
|
61451
|
-
def property(self) -> Optional["
|
|
61435
|
+
def property(self) -> Optional["api_Property"]:
|
|
61452
61436
|
return self._property
|
|
61453
61437
|
|
|
61454
61438
|
@builtins.property
|
|
@@ -61496,7 +61480,7 @@ class scout_video_api_SearchVideosQueryVisitor:
|
|
|
61496
61480
|
pass
|
|
61497
61481
|
|
|
61498
61482
|
@abstractmethod
|
|
61499
|
-
def _property(self, property: "
|
|
61483
|
+
def _property(self, property: "api_Property") -> Any:
|
|
61500
61484
|
pass
|
|
61501
61485
|
|
|
61502
61486
|
@abstractmethod
|
|
@@ -61526,12 +61510,12 @@ class scout_video_api_SearchVideosRequest(ConjureBeanType):
|
|
|
61526
61510
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
61527
61511
|
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[scout_backend_Token]),
|
|
61528
61512
|
'sort_options': ConjureFieldDefinition('sortOptions', scout_video_api_SortOptions),
|
|
61529
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
61513
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
61530
61514
|
}
|
|
61531
61515
|
|
|
61532
61516
|
__slots__: List[str] = ['_query', '_page_size', '_token', '_sort_options', '_archived_statuses']
|
|
61533
61517
|
|
|
61534
|
-
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:
|
|
61535
61519
|
self._query = query
|
|
61536
61520
|
self._page_size = page_size
|
|
61537
61521
|
self._token = token
|
|
@@ -61558,7 +61542,7 @@ class scout_video_api_SearchVideosRequest(ConjureBeanType):
|
|
|
61558
61542
|
return self._sort_options
|
|
61559
61543
|
|
|
61560
61544
|
@builtins.property
|
|
61561
|
-
def archived_statuses(self) -> Optional[List["
|
|
61545
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
61562
61546
|
"""
|
|
61563
61547
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived videos in search.
|
|
61564
61548
|
"""
|
|
@@ -61664,7 +61648,7 @@ scout_video_api_Segment.__module__ = "nominal_api.scout_video_api"
|
|
|
61664
61648
|
|
|
61665
61649
|
class scout_video_api_SegmentSummary(ConjureBeanType):
|
|
61666
61650
|
"""
|
|
61667
|
-
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
|
|
61668
61652
|
timestamps will be empty.
|
|
61669
61653
|
"""
|
|
61670
61654
|
|
|
@@ -61709,8 +61693,8 @@ scout_video_api_SegmentSummary.__module__ = "nominal_api.scout_video_api"
|
|
|
61709
61693
|
|
|
61710
61694
|
class scout_video_api_SegmentTimestamps(ConjureUnionType):
|
|
61711
61695
|
"""A video segment will either contain timestamps or timestamp mappings depending on whether it is intended to
|
|
61712
|
-
be frame-mapped. Without a frame-timestamp mapping manifest file, a list of absolute timestamps will be
|
|
61713
|
-
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
|
|
61714
61698
|
extracted and mapped to those in the provided manifest."""
|
|
61715
61699
|
_timestamps: Optional[List["api_Timestamp"]] = None
|
|
61716
61700
|
_timestamp_mappings: Optional["scout_video_api_TimestampMappings"] = None
|
|
@@ -61996,7 +61980,7 @@ class scout_video_api_UpdateTargetDurationRequest(ConjureBeanType):
|
|
|
61996
61980
|
@builtins.property
|
|
61997
61981
|
def target_duration_seconds(self) -> float:
|
|
61998
61982
|
"""
|
|
61999
|
-
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
|
|
62000
61984
|
the segments within a video, when rounded to the nearest integer.
|
|
62001
61985
|
"""
|
|
62002
61986
|
return self._target_duration_seconds
|
|
@@ -62041,8 +62025,8 @@ class scout_video_api_UpdateVideoMetadataRequest(ConjureBeanType):
|
|
|
62041
62025
|
return {
|
|
62042
62026
|
'title': ConjureFieldDefinition('title', OptionalTypeWrapper[str]),
|
|
62043
62027
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
62044
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
62045
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62028
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
|
62029
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62046
62030
|
'starting_timestamp': ConjureFieldDefinition('startingTimestamp', OptionalTypeWrapper[api_Timestamp]),
|
|
62047
62031
|
'scale_parameter': ConjureFieldDefinition('scaleParameter', OptionalTypeWrapper[scout_video_api_ScaleParameter])
|
|
62048
62032
|
}
|
|
@@ -62095,8 +62079,8 @@ class scout_video_api_Video(ConjureBeanType):
|
|
|
62095
62079
|
'rid': ConjureFieldDefinition('rid', api_rids_VideoRid),
|
|
62096
62080
|
'title': ConjureFieldDefinition('title', str),
|
|
62097
62081
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
62098
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62099
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62082
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
62083
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62100
62084
|
'created_by': ConjureFieldDefinition('createdBy', str),
|
|
62101
62085
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
62102
62086
|
'origin_metadata': ConjureFieldDefinition('originMetadata', scout_video_api_VideoOriginMetadata),
|
|
@@ -62510,24 +62494,6 @@ scout_workbookcommon_api_WorkbookContent.__qualname__ = "WorkbookContent"
|
|
|
62510
62494
|
scout_workbookcommon_api_WorkbookContent.__module__ = "nominal_api.scout_workbookcommon_api"
|
|
62511
62495
|
|
|
62512
62496
|
|
|
62513
|
-
class secrets_api_ArchivedStatus(ConjureEnumType):
|
|
62514
|
-
|
|
62515
|
-
NOT_ARCHIVED = 'NOT_ARCHIVED'
|
|
62516
|
-
'''NOT_ARCHIVED'''
|
|
62517
|
-
ARCHIVED = 'ARCHIVED'
|
|
62518
|
-
'''ARCHIVED'''
|
|
62519
|
-
UNKNOWN = 'UNKNOWN'
|
|
62520
|
-
'''UNKNOWN'''
|
|
62521
|
-
|
|
62522
|
-
def __reduce_ex__(self, proto):
|
|
62523
|
-
return self.__class__, (self.name,)
|
|
62524
|
-
|
|
62525
|
-
|
|
62526
|
-
secrets_api_ArchivedStatus.__name__ = "ArchivedStatus"
|
|
62527
|
-
secrets_api_ArchivedStatus.__qualname__ = "ArchivedStatus"
|
|
62528
|
-
secrets_api_ArchivedStatus.__module__ = "nominal_api.secrets_api"
|
|
62529
|
-
|
|
62530
|
-
|
|
62531
62497
|
class secrets_api_CreateSecretRequest(ConjureBeanType):
|
|
62532
62498
|
|
|
62533
62499
|
@builtins.classmethod
|
|
@@ -62536,8 +62502,8 @@ class secrets_api_CreateSecretRequest(ConjureBeanType):
|
|
|
62536
62502
|
'name': ConjureFieldDefinition('name', str),
|
|
62537
62503
|
'description': ConjureFieldDefinition('description', str),
|
|
62538
62504
|
'decrypted_value': ConjureFieldDefinition('decryptedValue', str),
|
|
62539
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62540
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62505
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62506
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label])
|
|
62541
62507
|
}
|
|
62542
62508
|
|
|
62543
62509
|
__slots__: List[str] = ['_name', '_description', '_decrypted_value', '_properties', '_labels']
|
|
@@ -62621,39 +62587,10 @@ secrets_api_GetSecretsResponse.__qualname__ = "GetSecretsResponse"
|
|
|
62621
62587
|
secrets_api_GetSecretsResponse.__module__ = "nominal_api.secrets_api"
|
|
62622
62588
|
|
|
62623
62589
|
|
|
62624
|
-
class secrets_api_Property(ConjureBeanType):
|
|
62625
|
-
|
|
62626
|
-
@builtins.classmethod
|
|
62627
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
62628
|
-
return {
|
|
62629
|
-
'name': ConjureFieldDefinition('name', secrets_api_PropertyName),
|
|
62630
|
-
'value': ConjureFieldDefinition('value', secrets_api_PropertyValue)
|
|
62631
|
-
}
|
|
62632
|
-
|
|
62633
|
-
__slots__: List[str] = ['_name', '_value']
|
|
62634
|
-
|
|
62635
|
-
def __init__(self, name: str, value: str) -> None:
|
|
62636
|
-
self._name = name
|
|
62637
|
-
self._value = value
|
|
62638
|
-
|
|
62639
|
-
@builtins.property
|
|
62640
|
-
def name(self) -> str:
|
|
62641
|
-
return self._name
|
|
62642
|
-
|
|
62643
|
-
@builtins.property
|
|
62644
|
-
def value(self) -> str:
|
|
62645
|
-
return self._value
|
|
62646
|
-
|
|
62647
|
-
|
|
62648
|
-
secrets_api_Property.__name__ = "Property"
|
|
62649
|
-
secrets_api_Property.__qualname__ = "Property"
|
|
62650
|
-
secrets_api_Property.__module__ = "nominal_api.secrets_api"
|
|
62651
|
-
|
|
62652
|
-
|
|
62653
62590
|
class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
62654
62591
|
_search_text: Optional[str] = None
|
|
62655
62592
|
_label: Optional[str] = None
|
|
62656
|
-
_property: Optional["
|
|
62593
|
+
_property: Optional["api_Property"] = None
|
|
62657
62594
|
_and_: Optional[List["secrets_api_SearchSecretsQuery"]] = None
|
|
62658
62595
|
_or_: Optional[List["secrets_api_SearchSecretsQuery"]] = None
|
|
62659
62596
|
|
|
@@ -62661,8 +62598,8 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62661
62598
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
62662
62599
|
return {
|
|
62663
62600
|
'search_text': ConjureFieldDefinition('searchText', str),
|
|
62664
|
-
'label': ConjureFieldDefinition('label',
|
|
62665
|
-
'property': ConjureFieldDefinition('property',
|
|
62601
|
+
'label': ConjureFieldDefinition('label', api_Label),
|
|
62602
|
+
'property': ConjureFieldDefinition('property', api_Property),
|
|
62666
62603
|
'and_': ConjureFieldDefinition('and', List[secrets_api_SearchSecretsQuery]),
|
|
62667
62604
|
'or_': ConjureFieldDefinition('or', List[secrets_api_SearchSecretsQuery])
|
|
62668
62605
|
}
|
|
@@ -62671,7 +62608,7 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62671
62608
|
self,
|
|
62672
62609
|
search_text: Optional[str] = None,
|
|
62673
62610
|
label: Optional[str] = None,
|
|
62674
|
-
property: Optional["
|
|
62611
|
+
property: Optional["api_Property"] = None,
|
|
62675
62612
|
and_: Optional[List["secrets_api_SearchSecretsQuery"]] = None,
|
|
62676
62613
|
or_: Optional[List["secrets_api_SearchSecretsQuery"]] = None,
|
|
62677
62614
|
type_of_union: Optional[str] = None
|
|
@@ -62731,7 +62668,7 @@ class secrets_api_SearchSecretsQuery(ConjureUnionType):
|
|
|
62731
62668
|
return self._label
|
|
62732
62669
|
|
|
62733
62670
|
@builtins.property
|
|
62734
|
-
def property(self) -> Optional["
|
|
62671
|
+
def property(self) -> Optional["api_Property"]:
|
|
62735
62672
|
return self._property
|
|
62736
62673
|
|
|
62737
62674
|
@builtins.property
|
|
@@ -62773,7 +62710,7 @@ class secrets_api_SearchSecretsQueryVisitor:
|
|
|
62773
62710
|
pass
|
|
62774
62711
|
|
|
62775
62712
|
@abstractmethod
|
|
62776
|
-
def _property(self, property: "
|
|
62713
|
+
def _property(self, property: "api_Property") -> Any:
|
|
62777
62714
|
pass
|
|
62778
62715
|
|
|
62779
62716
|
@abstractmethod
|
|
@@ -62799,12 +62736,12 @@ class secrets_api_SearchSecretsRequest(ConjureBeanType):
|
|
|
62799
62736
|
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int]),
|
|
62800
62737
|
'sort': ConjureFieldDefinition('sort', secrets_api_SortOptions),
|
|
62801
62738
|
'token': ConjureFieldDefinition('token', OptionalTypeWrapper[scout_backend_Token]),
|
|
62802
|
-
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[
|
|
62739
|
+
'archived_statuses': ConjureFieldDefinition('archivedStatuses', OptionalTypeWrapper[List[api_ArchivedStatus]])
|
|
62803
62740
|
}
|
|
62804
62741
|
|
|
62805
62742
|
__slots__: List[str] = ['_query', '_page_size', '_sort', '_token', '_archived_statuses']
|
|
62806
62743
|
|
|
62807
|
-
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:
|
|
62808
62745
|
self._query = query
|
|
62809
62746
|
self._page_size = page_size
|
|
62810
62747
|
self._sort = sort
|
|
@@ -62831,7 +62768,7 @@ class secrets_api_SearchSecretsRequest(ConjureBeanType):
|
|
|
62831
62768
|
return self._token
|
|
62832
62769
|
|
|
62833
62770
|
@builtins.property
|
|
62834
|
-
def archived_statuses(self) -> Optional[List["
|
|
62771
|
+
def archived_statuses(self) -> Optional[List["api_ArchivedStatus"]]:
|
|
62835
62772
|
"""
|
|
62836
62773
|
Default search status is NOT_ARCHIVED if none are provided. Allows for including archived secrets in search.
|
|
62837
62774
|
"""
|
|
@@ -62881,8 +62818,8 @@ class secrets_api_Secret(ConjureBeanType):
|
|
|
62881
62818
|
'name': ConjureFieldDefinition('name', str),
|
|
62882
62819
|
'description': ConjureFieldDefinition('description', str),
|
|
62883
62820
|
'created_by': ConjureFieldDefinition('createdBy', str),
|
|
62884
|
-
'properties': ConjureFieldDefinition('properties', Dict[
|
|
62885
|
-
'labels': ConjureFieldDefinition('labels', List[
|
|
62821
|
+
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
62822
|
+
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
62886
62823
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
62887
62824
|
'is_archived': ConjureFieldDefinition('isArchived', bool)
|
|
62888
62825
|
}
|
|
@@ -63255,8 +63192,8 @@ class secrets_api_UpdateSecretRequest(ConjureBeanType):
|
|
|
63255
63192
|
return {
|
|
63256
63193
|
'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
|
|
63257
63194
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
63258
|
-
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[
|
|
63259
|
-
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[
|
|
63195
|
+
'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
63196
|
+
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]])
|
|
63260
63197
|
}
|
|
63261
63198
|
|
|
63262
63199
|
__slots__: List[str] = ['_name', '_description', '_properties', '_labels']
|
|
@@ -68985,26 +68922,22 @@ upload_api_UploadService.__qualname__ = "UploadService"
|
|
|
68985
68922
|
upload_api_UploadService.__module__ = "nominal_api.upload_api"
|
|
68986
68923
|
|
|
68987
68924
|
|
|
68925
|
+
api_Label = str
|
|
68926
|
+
|
|
68988
68927
|
timeseries_archetype_api_SeriesArchetypeName = str
|
|
68989
68928
|
|
|
68990
68929
|
ingest_api_S3Path = str
|
|
68991
68930
|
|
|
68992
68931
|
scout_datasource_connection_api_influx_OrgId = str
|
|
68993
68932
|
|
|
68994
|
-
|
|
68933
|
+
api_PropertyValue = str
|
|
68995
68934
|
|
|
68996
68935
|
scout_video_api_S3Path = str
|
|
68997
68936
|
|
|
68998
|
-
secrets_api_Label = str
|
|
68999
|
-
|
|
69000
68937
|
timeseries_logicalseries_api_AttributeName = str
|
|
69001
68938
|
|
|
69002
68939
|
authentication_api_OrgRid = str
|
|
69003
68940
|
|
|
69004
|
-
datasource_PropertyName = str
|
|
69005
|
-
|
|
69006
|
-
ingest_api_PropertyName = str
|
|
69007
|
-
|
|
69008
68941
|
themes_api_ChartThemeRid = str
|
|
69009
68942
|
|
|
69010
68943
|
scout_datareview_api_DataReviewRid = str
|
|
@@ -69017,6 +68950,8 @@ scout_datasource_connection_api_TableName = str
|
|
|
69017
68950
|
|
|
69018
68951
|
timeseries_seriescache_api_Resolution = int
|
|
69019
68952
|
|
|
68953
|
+
api_PropertyName = str
|
|
68954
|
+
|
|
69020
68955
|
scout_catalog_ErrorType = str
|
|
69021
68956
|
|
|
69022
68957
|
scout_integrations_api_IntegrationRid = str
|
|
@@ -69031,8 +68966,6 @@ datasource_DatasetFileId = str
|
|
|
69031
68966
|
|
|
69032
68967
|
api_McapChannelTopic = str
|
|
69033
68968
|
|
|
69034
|
-
ingest_api_Label = str
|
|
69035
|
-
|
|
69036
68969
|
scout_compute_api_VariableName = str
|
|
69037
68970
|
|
|
69038
68971
|
scout_datasource_connection_api_MeasurementName = str
|
|
@@ -69071,8 +69004,6 @@ timeseries_seriescache_api_S3Path = str
|
|
|
69071
69004
|
|
|
69072
69005
|
scout_chart_api_JsonString = str
|
|
69073
69006
|
|
|
69074
|
-
secrets_api_PropertyValue = str
|
|
69075
|
-
|
|
69076
69007
|
attachments_api_S3Path = str
|
|
69077
69008
|
|
|
69078
69009
|
scout_checks_api_JobRid = str
|
|
@@ -69085,7 +69016,7 @@ datasource_pagination_api_PageToken = str
|
|
|
69085
69016
|
|
|
69086
69017
|
scout_datasource_connection_api_ProjectName = str
|
|
69087
69018
|
|
|
69088
|
-
|
|
69019
|
+
api_rids_SegmentRid = str
|
|
69089
69020
|
|
|
69090
69021
|
scout_comparisonnotebook_api_VariableName = str
|
|
69091
69022
|
|
|
@@ -69139,8 +69070,6 @@ scout_rids_api_NotebookRid = str
|
|
|
69139
69070
|
|
|
69140
69071
|
scout_asset_api_SeriesTagValue = str
|
|
69141
69072
|
|
|
69142
|
-
scout_run_api_PropertyValue = str
|
|
69143
|
-
|
|
69144
69073
|
scout_rids_api_UserRid = str
|
|
69145
69074
|
|
|
69146
69075
|
api_rids_DatasetRid = str
|
|
@@ -69155,12 +69084,6 @@ timeseries_logicalseries_api_LocationName = str
|
|
|
69155
69084
|
|
|
69156
69085
|
api_rids_DataSourceRid = str
|
|
69157
69086
|
|
|
69158
|
-
datasource_Label = str
|
|
69159
|
-
|
|
69160
|
-
ingest_api_PropertyValue = str
|
|
69161
|
-
|
|
69162
|
-
scout_run_api_Label = str
|
|
69163
|
-
|
|
69164
69087
|
scout_rids_api_CheckLineageRid = str
|
|
69165
69088
|
|
|
69166
69089
|
scout_rids_api_VizId = str
|
|
@@ -69171,8 +69094,6 @@ scout_video_api_ErrorType = str
|
|
|
69171
69094
|
|
|
69172
69095
|
scout_comparisonnotebook_api_ComparisonChannelVariableMap = Dict[scout_comparisonnotebook_api_VariableName, scout_comparisonnotebook_api_ChannelVariable]
|
|
69173
69096
|
|
|
69174
|
-
scout_video_api_Label = str
|
|
69175
|
-
|
|
69176
69097
|
ingest_api_ErrorType = str
|
|
69177
69098
|
|
|
69178
69099
|
timeseries_logicalseries_api_FieldName = str
|
|
@@ -69203,12 +69124,8 @@ storage_writer_api_MeasurementName = str
|
|
|
69203
69124
|
|
|
69204
69125
|
storage_datasource_api_NominalDataSourceId = str
|
|
69205
69126
|
|
|
69206
|
-
scout_video_api_PropertyValue = str
|
|
69207
|
-
|
|
69208
69127
|
scout_datareview_api_AutomaticCheckEvaluationRid = str
|
|
69209
69128
|
|
|
69210
|
-
scout_video_api_PropertyName = str
|
|
69211
|
-
|
|
69212
69129
|
scout_compute_api_ErrorType = str
|
|
69213
69130
|
|
|
69214
69131
|
comments_api_ResourceRid = str
|
|
@@ -69253,8 +69170,6 @@ scout_rids_api_AssetRid = str
|
|
|
69253
69170
|
|
|
69254
69171
|
comments_api_CommentRid = str
|
|
69255
69172
|
|
|
69256
|
-
scout_run_api_PropertyName = str
|
|
69257
|
-
|
|
69258
69173
|
scout_chartdefinition_api_DataSourceRefName = str
|
|
69259
69174
|
|
|
69260
69175
|
api_LogicalSeriesRid = str
|
|
@@ -69269,15 +69184,9 @@ scout_datasource_connection_api_OrganizationRid = str
|
|
|
69269
69184
|
|
|
69270
69185
|
scout_rids_api_CheckRid = str
|
|
69271
69186
|
|
|
69272
|
-
secrets_api_PropertyName = str
|
|
69273
|
-
|
|
69274
69187
|
timeseries_logicalseries_api_ProjectName = str
|
|
69275
69188
|
|
|
69276
69189
|
api_Channel = str
|
|
69277
69190
|
|
|
69278
|
-
attachments_api_PropertyValue = str
|
|
69279
|
-
|
|
69280
69191
|
scout_datasource_connection_api_SecretName = str
|
|
69281
69192
|
|
|
69282
|
-
attachments_api_Label = str
|
|
69283
|
-
|