nominal-api 0.785.1__py3-none-any.whl → 0.787.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 +137 -14
- nominal_api/scout_compute_api/__init__.py +2 -0
- nominal_api/scout_metadata/__init__.py +2 -0
- {nominal_api-0.785.1.dist-info → nominal_api-0.787.0.dist-info}/METADATA +1 -1
- {nominal_api-0.785.1.dist-info → nominal_api-0.787.0.dist-info}/RECORD +8 -8
- {nominal_api-0.785.1.dist-info → nominal_api-0.787.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.785.1.dist-info → nominal_api-0.787.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -11637,18 +11637,20 @@ class ingest_api_NewDatasetIngestDestination(ConjureBeanType):
|
|
|
11637
11637
|
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
11638
11638
|
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
11639
11639
|
'channel_config': ConjureFieldDefinition('channelConfig', OptionalTypeWrapper[ingest_api_ChannelConfig]),
|
|
11640
|
-
'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid])
|
|
11640
|
+
'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid]),
|
|
11641
|
+
'markings': ConjureFieldDefinition('markings', List[scout_rids_api_MarkingRid])
|
|
11641
11642
|
}
|
|
11642
11643
|
|
|
11643
|
-
__slots__: List[str] = ['_dataset_name', '_dataset_description', '_properties', '_labels', '_channel_config', '_workspace']
|
|
11644
|
+
__slots__: List[str] = ['_dataset_name', '_dataset_description', '_properties', '_labels', '_channel_config', '_workspace', '_markings']
|
|
11644
11645
|
|
|
11645
|
-
def __init__(self, labels: List[str], properties: Dict[str, str], channel_config: Optional["ingest_api_ChannelConfig"] = None, dataset_description: Optional[str] = None, dataset_name: Optional[str] = None, workspace: Optional[str] = None) -> None:
|
|
11646
|
+
def __init__(self, labels: List[str], markings: List[str], properties: Dict[str, str], channel_config: Optional["ingest_api_ChannelConfig"] = None, dataset_description: Optional[str] = None, dataset_name: Optional[str] = None, workspace: Optional[str] = None) -> None:
|
|
11646
11647
|
self._dataset_name = dataset_name
|
|
11647
11648
|
self._dataset_description = dataset_description
|
|
11648
11649
|
self._properties = properties
|
|
11649
11650
|
self._labels = labels
|
|
11650
11651
|
self._channel_config = channel_config
|
|
11651
11652
|
self._workspace = workspace
|
|
11653
|
+
self._markings = markings
|
|
11652
11654
|
|
|
11653
11655
|
@builtins.property
|
|
11654
11656
|
def dataset_name(self) -> Optional[str]:
|
|
@@ -11677,6 +11679,13 @@ the user's organization, if the default workspace for the organization is config
|
|
|
11677
11679
|
"""
|
|
11678
11680
|
return self._workspace
|
|
11679
11681
|
|
|
11682
|
+
@builtins.property
|
|
11683
|
+
def markings(self) -> List[str]:
|
|
11684
|
+
"""The markings to apply to the created dataset.
|
|
11685
|
+
If not provided, the dataset will be visible to all users in the same workspace.
|
|
11686
|
+
"""
|
|
11687
|
+
return self._markings
|
|
11688
|
+
|
|
11680
11689
|
|
|
11681
11690
|
ingest_api_NewDatasetIngestDestination.__name__ = "NewDatasetIngestDestination"
|
|
11682
11691
|
ingest_api_NewDatasetIngestDestination.__qualname__ = "NewDatasetIngestDestination"
|
|
@@ -23501,12 +23510,13 @@ class scout_catalog_CreateDataset(ConjureBeanType):
|
|
|
23501
23510
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
|
23502
23511
|
'granularity': ConjureFieldDefinition('granularity', OptionalTypeWrapper[api_Granularity]),
|
|
23503
23512
|
'is_v2_dataset': ConjureFieldDefinition('isV2Dataset', OptionalTypeWrapper[bool]),
|
|
23504
|
-
'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid])
|
|
23513
|
+
'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid]),
|
|
23514
|
+
'markings': ConjureFieldDefinition('markings', List[scout_rids_api_MarkingRid])
|
|
23505
23515
|
}
|
|
23506
23516
|
|
|
23507
|
-
__slots__: List[str] = ['_name', '_handle', '_metadata', '_origin_metadata', '_labels', '_properties', '_description', '_granularity', '_is_v2_dataset', '_workspace']
|
|
23517
|
+
__slots__: List[str] = ['_name', '_handle', '_metadata', '_origin_metadata', '_labels', '_properties', '_description', '_granularity', '_is_v2_dataset', '_workspace', '_markings']
|
|
23508
23518
|
|
|
23509
|
-
def __init__(self, labels: List[str], metadata: Dict[str, str], name: str, origin_metadata: "scout_catalog_DatasetOriginMetadata", properties: Dict[str, str], description: Optional[str] = None, granularity: Optional["api_Granularity"] = None, handle: Optional["scout_catalog_Handle"] = None, is_v2_dataset: Optional[bool] = None, workspace: Optional[str] = None) -> None:
|
|
23519
|
+
def __init__(self, labels: List[str], markings: List[str], metadata: Dict[str, str], name: str, origin_metadata: "scout_catalog_DatasetOriginMetadata", properties: Dict[str, str], description: Optional[str] = None, granularity: Optional["api_Granularity"] = None, handle: Optional["scout_catalog_Handle"] = None, is_v2_dataset: Optional[bool] = None, workspace: Optional[str] = None) -> None:
|
|
23510
23520
|
self._name = name
|
|
23511
23521
|
self._handle = handle
|
|
23512
23522
|
self._metadata = metadata
|
|
@@ -23517,6 +23527,7 @@ class scout_catalog_CreateDataset(ConjureBeanType):
|
|
|
23517
23527
|
self._granularity = granularity
|
|
23518
23528
|
self._is_v2_dataset = is_v2_dataset
|
|
23519
23529
|
self._workspace = workspace
|
|
23530
|
+
self._markings = markings
|
|
23520
23531
|
|
|
23521
23532
|
@builtins.property
|
|
23522
23533
|
def name(self) -> str:
|
|
@@ -23565,6 +23576,13 @@ the user's organization, if the default workspace for the organization is config
|
|
|
23565
23576
|
"""
|
|
23566
23577
|
return self._workspace
|
|
23567
23578
|
|
|
23579
|
+
@builtins.property
|
|
23580
|
+
def markings(self) -> List[str]:
|
|
23581
|
+
"""The markings to apply to the created dataset.
|
|
23582
|
+
If not provided, the dataset will be visible to all users in the same workspace.
|
|
23583
|
+
"""
|
|
23584
|
+
return self._markings
|
|
23585
|
+
|
|
23568
23586
|
|
|
23569
23587
|
scout_catalog_CreateDataset.__name__ = "CreateDataset"
|
|
23570
23588
|
scout_catalog_CreateDataset.__qualname__ = "CreateDataset"
|
|
@@ -42260,15 +42278,17 @@ class scout_compute_api_DurationFilterRanges(ConjureBeanType):
|
|
|
42260
42278
|
return {
|
|
42261
42279
|
'input': ConjureFieldDefinition('input', scout_compute_api_RangeSeries),
|
|
42262
42280
|
'threshold': ConjureFieldDefinition('threshold', scout_compute_api_DurationConstant),
|
|
42263
|
-
'operator': ConjureFieldDefinition('operator', scout_compute_api_ThresholdOperator)
|
|
42281
|
+
'operator': ConjureFieldDefinition('operator', scout_compute_api_ThresholdOperator),
|
|
42282
|
+
'unbounded_behavior': ConjureFieldDefinition('unboundedBehavior', OptionalTypeWrapper[scout_compute_api_UnboundedBehavior])
|
|
42264
42283
|
}
|
|
42265
42284
|
|
|
42266
|
-
__slots__: List[str] = ['_input', '_threshold', '_operator']
|
|
42285
|
+
__slots__: List[str] = ['_input', '_threshold', '_operator', '_unbounded_behavior']
|
|
42267
42286
|
|
|
42268
|
-
def __init__(self, input: "scout_compute_api_RangeSeries", operator: "scout_compute_api_ThresholdOperator", threshold: "scout_compute_api_DurationConstant") -> None:
|
|
42287
|
+
def __init__(self, input: "scout_compute_api_RangeSeries", operator: "scout_compute_api_ThresholdOperator", threshold: "scout_compute_api_DurationConstant", unbounded_behavior: Optional["scout_compute_api_UnboundedBehavior"] = None) -> None:
|
|
42269
42288
|
self._input = input
|
|
42270
42289
|
self._threshold = threshold
|
|
42271
42290
|
self._operator = operator
|
|
42291
|
+
self._unbounded_behavior = unbounded_behavior
|
|
42272
42292
|
|
|
42273
42293
|
@builtins.property
|
|
42274
42294
|
def input(self) -> "scout_compute_api_RangeSeries":
|
|
@@ -42282,6 +42302,10 @@ class scout_compute_api_DurationFilterRanges(ConjureBeanType):
|
|
|
42282
42302
|
def operator(self) -> "scout_compute_api_ThresholdOperator":
|
|
42283
42303
|
return self._operator
|
|
42284
42304
|
|
|
42305
|
+
@builtins.property
|
|
42306
|
+
def unbounded_behavior(self) -> Optional["scout_compute_api_UnboundedBehavior"]:
|
|
42307
|
+
return self._unbounded_behavior
|
|
42308
|
+
|
|
42285
42309
|
|
|
42286
42310
|
scout_compute_api_DurationFilterRanges.__name__ = "DurationFilterRanges"
|
|
42287
42311
|
scout_compute_api_DurationFilterRanges.__qualname__ = "DurationFilterRanges"
|
|
@@ -51136,6 +51160,26 @@ scout_compute_api_UnaryArithmeticSeries.__qualname__ = "UnaryArithmeticSeries"
|
|
|
51136
51160
|
scout_compute_api_UnaryArithmeticSeries.__module__ = "nominal_api.scout_compute_api"
|
|
51137
51161
|
|
|
51138
51162
|
|
|
51163
|
+
class scout_compute_api_UnboundedBehavior(ConjureEnumType):
|
|
51164
|
+
"""Dictates how empty range bounds should be handled by the compute node. Defaults to INFINITY.
|
|
51165
|
+
"""
|
|
51166
|
+
|
|
51167
|
+
INFINITY = 'INFINITY'
|
|
51168
|
+
'''INFINITY'''
|
|
51169
|
+
WINDOW_BOUND = 'WINDOW_BOUND'
|
|
51170
|
+
'''WINDOW_BOUND'''
|
|
51171
|
+
UNKNOWN = 'UNKNOWN'
|
|
51172
|
+
'''UNKNOWN'''
|
|
51173
|
+
|
|
51174
|
+
def __reduce_ex__(self, proto):
|
|
51175
|
+
return self.__class__, (self.name,)
|
|
51176
|
+
|
|
51177
|
+
|
|
51178
|
+
scout_compute_api_UnboundedBehavior.__name__ = "UnboundedBehavior"
|
|
51179
|
+
scout_compute_api_UnboundedBehavior.__qualname__ = "UnboundedBehavior"
|
|
51180
|
+
scout_compute_api_UnboundedBehavior.__module__ = "nominal_api.scout_compute_api"
|
|
51181
|
+
|
|
51182
|
+
|
|
51139
51183
|
class scout_compute_api_UnionRanges(ConjureBeanType):
|
|
51140
51184
|
|
|
51141
51185
|
@builtins.classmethod
|
|
@@ -54796,15 +54840,17 @@ class scout_compute_resolved_api_DurationFilterRangesNode(ConjureBeanType):
|
|
|
54796
54840
|
return {
|
|
54797
54841
|
'input': ConjureFieldDefinition('input', scout_compute_resolved_api_RangesNode),
|
|
54798
54842
|
'threshold': ConjureFieldDefinition('threshold', scout_run_api_Duration),
|
|
54799
|
-
'operator': ConjureFieldDefinition('operator', scout_compute_api_ThresholdOperator)
|
|
54843
|
+
'operator': ConjureFieldDefinition('operator', scout_compute_api_ThresholdOperator),
|
|
54844
|
+
'unbounded_behavior': ConjureFieldDefinition('unboundedBehavior', scout_compute_api_UnboundedBehavior)
|
|
54800
54845
|
}
|
|
54801
54846
|
|
|
54802
|
-
__slots__: List[str] = ['_input', '_threshold', '_operator']
|
|
54847
|
+
__slots__: List[str] = ['_input', '_threshold', '_operator', '_unbounded_behavior']
|
|
54803
54848
|
|
|
54804
|
-
def __init__(self, input: "scout_compute_resolved_api_RangesNode", operator: "scout_compute_api_ThresholdOperator", threshold: "scout_run_api_Duration") -> None:
|
|
54849
|
+
def __init__(self, input: "scout_compute_resolved_api_RangesNode", operator: "scout_compute_api_ThresholdOperator", threshold: "scout_run_api_Duration", unbounded_behavior: "scout_compute_api_UnboundedBehavior") -> None:
|
|
54805
54850
|
self._input = input
|
|
54806
54851
|
self._threshold = threshold
|
|
54807
54852
|
self._operator = operator
|
|
54853
|
+
self._unbounded_behavior = unbounded_behavior
|
|
54808
54854
|
|
|
54809
54855
|
@builtins.property
|
|
54810
54856
|
def input(self) -> "scout_compute_resolved_api_RangesNode":
|
|
@@ -54818,6 +54864,10 @@ class scout_compute_resolved_api_DurationFilterRangesNode(ConjureBeanType):
|
|
|
54818
54864
|
def operator(self) -> "scout_compute_api_ThresholdOperator":
|
|
54819
54865
|
return self._operator
|
|
54820
54866
|
|
|
54867
|
+
@builtins.property
|
|
54868
|
+
def unbounded_behavior(self) -> "scout_compute_api_UnboundedBehavior":
|
|
54869
|
+
return self._unbounded_behavior
|
|
54870
|
+
|
|
54821
54871
|
|
|
54822
54872
|
scout_compute_resolved_api_DurationFilterRangesNode.__name__ = "DurationFilterRangesNode"
|
|
54823
54873
|
scout_compute_resolved_api_DurationFilterRangesNode.__qualname__ = "DurationFilterRangesNode"
|
|
@@ -69696,6 +69746,8 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
69696
69746
|
_or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None
|
|
69697
69747
|
_not_: Optional["scout_internal_search_api_SearchQuery"] = None
|
|
69698
69748
|
_workspace: Optional[str] = None
|
|
69749
|
+
_created_at: Optional["scout_metadata_CreatedAtQuery"] = None
|
|
69750
|
+
_archived_status: Optional["api_ArchivedStatus"] = None
|
|
69699
69751
|
|
|
69700
69752
|
@builtins.classmethod
|
|
69701
69753
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -69713,7 +69765,9 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
69713
69765
|
'and_': ConjureFieldDefinition('and', List[scout_internal_search_api_SearchQuery]),
|
|
69714
69766
|
'or_': ConjureFieldDefinition('or', List[scout_internal_search_api_SearchQuery]),
|
|
69715
69767
|
'not_': ConjureFieldDefinition('not', scout_internal_search_api_SearchQuery),
|
|
69716
|
-
'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid)
|
|
69768
|
+
'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid),
|
|
69769
|
+
'created_at': ConjureFieldDefinition('createdAt', scout_metadata_CreatedAtQuery),
|
|
69770
|
+
'archived_status': ConjureFieldDefinition('archivedStatus', api_ArchivedStatus)
|
|
69717
69771
|
}
|
|
69718
69772
|
|
|
69719
69773
|
def __init__(
|
|
@@ -69732,10 +69786,12 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
69732
69786
|
or_: Optional[List["scout_internal_search_api_SearchQuery"]] = None,
|
|
69733
69787
|
not_: Optional["scout_internal_search_api_SearchQuery"] = None,
|
|
69734
69788
|
workspace: Optional[str] = None,
|
|
69789
|
+
created_at: Optional["scout_metadata_CreatedAtQuery"] = None,
|
|
69790
|
+
archived_status: Optional["api_ArchivedStatus"] = None,
|
|
69735
69791
|
type_of_union: Optional[str] = None
|
|
69736
69792
|
) -> None:
|
|
69737
69793
|
if type_of_union is None:
|
|
69738
|
-
if (date_time_field is not None) + (string_field is not None) + (timestamp_field is not None) + (long_field is not None) + (boolean_field is not None) + (exact_match is not None) + (string_array_exact_match is not None) + (search_text is not None) + (label is not None) + (property is not None) + (and_ is not None) + (or_ is not None) + (not_ is not None) + (workspace is not None) != 1:
|
|
69794
|
+
if (date_time_field is not None) + (string_field is not None) + (timestamp_field is not None) + (long_field is not None) + (boolean_field is not None) + (exact_match is not None) + (string_array_exact_match is not None) + (search_text is not None) + (label is not None) + (property is not None) + (and_ is not None) + (or_ is not None) + (not_ is not None) + (workspace is not None) + (created_at is not None) + (archived_status is not None) != 1:
|
|
69739
69795
|
raise ValueError('a union must contain a single member')
|
|
69740
69796
|
|
|
69741
69797
|
if date_time_field is not None:
|
|
@@ -69780,6 +69836,12 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
69780
69836
|
if workspace is not None:
|
|
69781
69837
|
self._workspace = workspace
|
|
69782
69838
|
self._type = 'workspace'
|
|
69839
|
+
if created_at is not None:
|
|
69840
|
+
self._created_at = created_at
|
|
69841
|
+
self._type = 'createdAt'
|
|
69842
|
+
if archived_status is not None:
|
|
69843
|
+
self._archived_status = archived_status
|
|
69844
|
+
self._type = 'archivedStatus'
|
|
69783
69845
|
|
|
69784
69846
|
elif type_of_union == 'dateTimeField':
|
|
69785
69847
|
if date_time_field is None:
|
|
@@ -69851,6 +69913,16 @@ class scout_internal_search_api_SearchQuery(ConjureUnionType):
|
|
|
69851
69913
|
raise ValueError('a union value must not be None')
|
|
69852
69914
|
self._workspace = workspace
|
|
69853
69915
|
self._type = 'workspace'
|
|
69916
|
+
elif type_of_union == 'createdAt':
|
|
69917
|
+
if created_at is None:
|
|
69918
|
+
raise ValueError('a union value must not be None')
|
|
69919
|
+
self._created_at = created_at
|
|
69920
|
+
self._type = 'createdAt'
|
|
69921
|
+
elif type_of_union == 'archivedStatus':
|
|
69922
|
+
if archived_status is None:
|
|
69923
|
+
raise ValueError('a union value must not be None')
|
|
69924
|
+
self._archived_status = archived_status
|
|
69925
|
+
self._type = 'archivedStatus'
|
|
69854
69926
|
|
|
69855
69927
|
@builtins.property
|
|
69856
69928
|
def date_time_field(self) -> Optional["scout_internal_search_api_DateTimeField"]:
|
|
@@ -69913,6 +69985,16 @@ To do a partial match, use an "and" on StringField queries.
|
|
|
69913
69985
|
def workspace(self) -> Optional[str]:
|
|
69914
69986
|
return self._workspace
|
|
69915
69987
|
|
|
69988
|
+
@builtins.property
|
|
69989
|
+
def created_at(self) -> Optional["scout_metadata_CreatedAtQuery"]:
|
|
69990
|
+
return self._created_at
|
|
69991
|
+
|
|
69992
|
+
@builtins.property
|
|
69993
|
+
def archived_status(self) -> Optional["api_ArchivedStatus"]:
|
|
69994
|
+
"""Prefer to use archivedStatus field in IndexableDb#search
|
|
69995
|
+
"""
|
|
69996
|
+
return self._archived_status
|
|
69997
|
+
|
|
69916
69998
|
def accept(self, visitor) -> Any:
|
|
69917
69999
|
if not isinstance(visitor, scout_internal_search_api_SearchQueryVisitor):
|
|
69918
70000
|
raise ValueError('{} is not an instance of scout_internal_search_api_SearchQueryVisitor'.format(visitor.__class__.__name__))
|
|
@@ -69944,6 +70026,10 @@ To do a partial match, use an "and" on StringField queries.
|
|
|
69944
70026
|
return visitor._not(self.not_)
|
|
69945
70027
|
if self._type == 'workspace' and self.workspace is not None:
|
|
69946
70028
|
return visitor._workspace(self.workspace)
|
|
70029
|
+
if self._type == 'createdAt' and self.created_at is not None:
|
|
70030
|
+
return visitor._created_at(self.created_at)
|
|
70031
|
+
if self._type == 'archivedStatus' and self.archived_status is not None:
|
|
70032
|
+
return visitor._archived_status(self.archived_status)
|
|
69947
70033
|
|
|
69948
70034
|
|
|
69949
70035
|
scout_internal_search_api_SearchQuery.__name__ = "SearchQuery"
|
|
@@ -70009,6 +70095,14 @@ class scout_internal_search_api_SearchQueryVisitor:
|
|
|
70009
70095
|
def _workspace(self, workspace: str) -> Any:
|
|
70010
70096
|
pass
|
|
70011
70097
|
|
|
70098
|
+
@abstractmethod
|
|
70099
|
+
def _created_at(self, created_at: "scout_metadata_CreatedAtQuery") -> Any:
|
|
70100
|
+
pass
|
|
70101
|
+
|
|
70102
|
+
@abstractmethod
|
|
70103
|
+
def _archived_status(self, archived_status: "api_ArchivedStatus") -> Any:
|
|
70104
|
+
pass
|
|
70105
|
+
|
|
70012
70106
|
|
|
70013
70107
|
scout_internal_search_api_SearchQueryVisitor.__name__ = "SearchQueryVisitor"
|
|
70014
70108
|
scout_internal_search_api_SearchQueryVisitor.__qualname__ = "SearchQueryVisitor"
|
|
@@ -70990,6 +71084,35 @@ scout_layout_api_WorkbookLayoutV1.__qualname__ = "WorkbookLayoutV1"
|
|
|
70990
71084
|
scout_layout_api_WorkbookLayoutV1.__module__ = "nominal_api.scout_layout_api"
|
|
70991
71085
|
|
|
70992
71086
|
|
|
71087
|
+
class scout_metadata_CreatedAtQuery(ConjureBeanType):
|
|
71088
|
+
|
|
71089
|
+
@builtins.classmethod
|
|
71090
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
71091
|
+
return {
|
|
71092
|
+
'operator': ConjureFieldDefinition('operator', scout_internal_search_api_Operator),
|
|
71093
|
+
'value': ConjureFieldDefinition('value', str)
|
|
71094
|
+
}
|
|
71095
|
+
|
|
71096
|
+
__slots__: List[str] = ['_operator', '_value']
|
|
71097
|
+
|
|
71098
|
+
def __init__(self, operator: "scout_internal_search_api_Operator", value: str) -> None:
|
|
71099
|
+
self._operator = operator
|
|
71100
|
+
self._value = value
|
|
71101
|
+
|
|
71102
|
+
@builtins.property
|
|
71103
|
+
def operator(self) -> "scout_internal_search_api_Operator":
|
|
71104
|
+
return self._operator
|
|
71105
|
+
|
|
71106
|
+
@builtins.property
|
|
71107
|
+
def value(self) -> str:
|
|
71108
|
+
return self._value
|
|
71109
|
+
|
|
71110
|
+
|
|
71111
|
+
scout_metadata_CreatedAtQuery.__name__ = "CreatedAtQuery"
|
|
71112
|
+
scout_metadata_CreatedAtQuery.__qualname__ = "CreatedAtQuery"
|
|
71113
|
+
scout_metadata_CreatedAtQuery.__module__ = "nominal_api.scout_metadata"
|
|
71114
|
+
|
|
71115
|
+
|
|
70993
71116
|
class scout_metadata_ListPropertiesAndLabelsRequest(ConjureBeanType):
|
|
70994
71117
|
|
|
70995
71118
|
@builtins.classmethod
|
|
@@ -324,6 +324,7 @@ from .._impl import (
|
|
|
324
324
|
scout_compute_api_TimestampConstantVisitor as TimestampConstantVisitor,
|
|
325
325
|
scout_compute_api_UnaryArithmeticOperation as UnaryArithmeticOperation,
|
|
326
326
|
scout_compute_api_UnaryArithmeticSeries as UnaryArithmeticSeries,
|
|
327
|
+
scout_compute_api_UnboundedBehavior as UnboundedBehavior,
|
|
327
328
|
scout_compute_api_UnionRanges as UnionRanges,
|
|
328
329
|
scout_compute_api_UnitComputationError as UnitComputationError,
|
|
329
330
|
scout_compute_api_UnitComputationErrorVisitor as UnitComputationErrorVisitor,
|
|
@@ -665,6 +666,7 @@ __all__ = [
|
|
|
665
666
|
'TimestampConstantVisitor',
|
|
666
667
|
'UnaryArithmeticOperation',
|
|
667
668
|
'UnaryArithmeticSeries',
|
|
669
|
+
'UnboundedBehavior',
|
|
668
670
|
'UnionRanges',
|
|
669
671
|
'UnitComputationError',
|
|
670
672
|
'UnitComputationErrorVisitor',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
2
|
from .._impl import (
|
|
3
|
+
scout_metadata_CreatedAtQuery as CreatedAtQuery,
|
|
3
4
|
scout_metadata_ListPropertiesAndLabelsRequest as ListPropertiesAndLabelsRequest,
|
|
4
5
|
scout_metadata_ListPropertiesAndLabelsResponse as ListPropertiesAndLabelsResponse,
|
|
5
6
|
scout_metadata_ResourceMetadataService as ResourceMetadataService,
|
|
@@ -7,6 +8,7 @@ from .._impl import (
|
|
|
7
8
|
)
|
|
8
9
|
|
|
9
10
|
__all__ = [
|
|
11
|
+
'CreatedAtQuery',
|
|
10
12
|
'ListPropertiesAndLabelsRequest',
|
|
11
13
|
'ListPropertiesAndLabelsResponse',
|
|
12
14
|
'ResourceType',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=8lVg34B1deClhpJN6X9xTZec8U3j8jzt6uyyQELY3Gk,2012
|
|
2
|
+
nominal_api/_impl.py,sha256=HudgSB4_d6597_mI-GZVda5aVbnQhoOcvCDPnAq0aBw,3460669
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=PMREKP7UhxJ1_gHkrlJET46qlDHksKMm6-woR1p6WnU,1970
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
|
@@ -33,7 +33,7 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHr
|
|
|
33
33
|
nominal_api/scout_checks_api/__init__.py,sha256=uCmiNrVwLDlkg8YnpP-uZr9nFFFN52sM644Qo6YNy3k,6972
|
|
34
34
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=RpTvc8WqNxOuDSXWs-xV3MSSFIoIy8Fj3eaIDCVygvU,6215
|
|
35
35
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
|
36
|
-
nominal_api/scout_compute_api/__init__.py,sha256=
|
|
36
|
+
nominal_api/scout_compute_api/__init__.py,sha256=UkZrC3WZu27mxPq7NH9RDlulaNfRf398waaOq5mvC4o,30829
|
|
37
37
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
|
38
38
|
nominal_api/scout_compute_resolved_api/__init__.py,sha256=2t1dsfXgVxsHrI3BUn2geGMVsDctW96FMTYdvmALt_Y,16561
|
|
39
39
|
nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
|
|
@@ -48,7 +48,7 @@ nominal_api/scout_integrations_api/__init__.py,sha256=eMvNmVncITz-eQzvrmlY0G3BX8
|
|
|
48
48
|
nominal_api/scout_internal_search_api/__init__.py,sha256=1rHEb-Djc3wVIttJDUU9mlAFvvBG8oqVAgyGuSo437Y,787
|
|
49
49
|
nominal_api/scout_jobs_api/__init__.py,sha256=pxPUL0pQNZe0aY1HjRRBcAPoX9ut4qyjQUgFFRdhcY4,205
|
|
50
50
|
nominal_api/scout_layout_api/__init__.py,sha256=sUWO0V8Y0I0pa-nmKAjkeoIgTpP9tSG13335DHWlLx0,1902
|
|
51
|
-
nominal_api/scout_metadata/__init__.py,sha256=
|
|
51
|
+
nominal_api/scout_metadata/__init__.py,sha256=AqjIQLrEFqUrNPwZkdXt_6yP9uJt3YxIkkjZgDSAEtM,550
|
|
52
52
|
nominal_api/scout_notebook_api/__init__.py,sha256=b-4ONsrgT2NziNHq8em09YxbZcQcKLWmPYkpxBFHPFA,1820
|
|
53
53
|
nominal_api/scout_plotting/__init__.py,sha256=RJK9HlPmNW_dxSz7CprwjfNKke86x11rQ7BF5pwrBv4,127
|
|
54
54
|
nominal_api/scout_rids_api/__init__.py,sha256=UhayQOEudh5jxrmsSdHuN098ZPH6nh7fIJ5XBjT2IsY,1936
|
|
@@ -75,7 +75,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
|
75
75
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
76
76
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
|
77
77
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
78
|
-
nominal_api-0.
|
|
79
|
-
nominal_api-0.
|
|
80
|
-
nominal_api-0.
|
|
81
|
-
nominal_api-0.
|
|
78
|
+
nominal_api-0.787.0.dist-info/METADATA,sha256=ioKA5LcN3I-qTh7JOEaTKdp5C_Mlk4ccJHJKmTlMFWg,199
|
|
79
|
+
nominal_api-0.787.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
80
|
+
nominal_api-0.787.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
81
|
+
nominal_api-0.787.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|