nominal-api 0.738.0__py3-none-any.whl → 0.740.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.
- nominal_api/__init__.py +1 -1
- nominal_api/_impl.py +39 -179
- nominal_api/scout_catalog/__init__.py +0 -8
- {nominal_api-0.738.0.dist-info → nominal_api-0.740.0.dist-info}/METADATA +1 -1
- {nominal_api-0.738.0.dist-info → nominal_api-0.740.0.dist-info}/RECORD +7 -7
- {nominal_api-0.738.0.dist-info → nominal_api-0.740.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.738.0.dist-info → nominal_api-0.740.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
@@ -10103,18 +10103,24 @@ class ingest_api_IngestResponse(ConjureBeanType):
|
|
10103
10103
|
@builtins.classmethod
|
10104
10104
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
10105
10105
|
return {
|
10106
|
-
'details': ConjureFieldDefinition('details', ingest_api_IngestDetails)
|
10106
|
+
'details': ConjureFieldDefinition('details', ingest_api_IngestDetails),
|
10107
|
+
'ingest_job_rid': ConjureFieldDefinition('ingestJobRid', OptionalTypeWrapper[ingest_api_IngestJobRid])
|
10107
10108
|
}
|
10108
10109
|
|
10109
|
-
__slots__: List[str] = ['_details']
|
10110
|
+
__slots__: List[str] = ['_details', '_ingest_job_rid']
|
10110
10111
|
|
10111
|
-
def __init__(self, details: "ingest_api_IngestDetails") -> None:
|
10112
|
+
def __init__(self, details: "ingest_api_IngestDetails", ingest_job_rid: Optional[str] = None) -> None:
|
10112
10113
|
self._details = details
|
10114
|
+
self._ingest_job_rid = ingest_job_rid
|
10113
10115
|
|
10114
10116
|
@builtins.property
|
10115
10117
|
def details(self) -> "ingest_api_IngestDetails":
|
10116
10118
|
return self._details
|
10117
10119
|
|
10120
|
+
@builtins.property
|
10121
|
+
def ingest_job_rid(self) -> Optional[str]:
|
10122
|
+
return self._ingest_job_rid
|
10123
|
+
|
10118
10124
|
|
10119
10125
|
ingest_api_IngestResponse.__name__ = "IngestResponse"
|
10120
10126
|
ingest_api_IngestResponse.__qualname__ = "IngestResponse"
|
@@ -22091,36 +22097,6 @@ a file, primarily CSV.
|
|
22091
22097
|
_decoder = ConjureDecoder()
|
22092
22098
|
return _decoder.decode(_response.json(), scout_catalog_DatasetFilesPage, self._return_none_for_unknown_union_types)
|
22093
22099
|
|
22094
|
-
def search_datasets_by_text(self, auth_header: str, request: "scout_catalog_SearchDatasetsByTextRequest") -> "scout_catalog_SearchDatasetsByTextResponse":
|
22095
|
-
_conjure_encoder = ConjureEncoder()
|
22096
|
-
|
22097
|
-
_headers: Dict[str, Any] = {
|
22098
|
-
'Accept': 'application/json',
|
22099
|
-
'Content-Type': 'application/json',
|
22100
|
-
'Authorization': auth_header,
|
22101
|
-
}
|
22102
|
-
|
22103
|
-
_params: Dict[str, Any] = {
|
22104
|
-
}
|
22105
|
-
|
22106
|
-
_path_params: Dict[str, str] = {
|
22107
|
-
}
|
22108
|
-
|
22109
|
-
_json: Any = _conjure_encoder.default(request)
|
22110
|
-
|
22111
|
-
_path = '/catalog/v1/search-datasets'
|
22112
|
-
_path = _path.format(**_path_params)
|
22113
|
-
|
22114
|
-
_response: Response = self._request(
|
22115
|
-
'POST',
|
22116
|
-
self._uri + _path,
|
22117
|
-
params=_params,
|
22118
|
-
headers=_headers,
|
22119
|
-
json=_json)
|
22120
|
-
|
22121
|
-
_decoder = ConjureDecoder()
|
22122
|
-
return _decoder.decode(_response.json(), scout_catalog_SearchDatasetsByTextResponse, self._return_none_for_unknown_union_types)
|
22123
|
-
|
22124
22100
|
def search_datasets(self, auth_header: str, request: "scout_catalog_SearchDatasetsRequest") -> "scout_catalog_SearchDatasetsResponse":
|
22125
22101
|
_conjure_encoder = ConjureEncoder()
|
22126
22102
|
|
@@ -23162,35 +23138,6 @@ scout_catalog_DatasetFilesPage.__qualname__ = "DatasetFilesPage"
|
|
23162
23138
|
scout_catalog_DatasetFilesPage.__module__ = "nominal_api.scout_catalog"
|
23163
23139
|
|
23164
23140
|
|
23165
|
-
class scout_catalog_DatasetFilter(ConjureBeanType):
|
23166
|
-
|
23167
|
-
@builtins.classmethod
|
23168
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
23169
|
-
return {
|
23170
|
-
'name': ConjureFieldDefinition('name', str),
|
23171
|
-
'value': ConjureFieldDefinition('value', str)
|
23172
|
-
}
|
23173
|
-
|
23174
|
-
__slots__: List[str] = ['_name', '_value']
|
23175
|
-
|
23176
|
-
def __init__(self, name: str, value: str) -> None:
|
23177
|
-
self._name = name
|
23178
|
-
self._value = value
|
23179
|
-
|
23180
|
-
@builtins.property
|
23181
|
-
def name(self) -> str:
|
23182
|
-
return self._name
|
23183
|
-
|
23184
|
-
@builtins.property
|
23185
|
-
def value(self) -> str:
|
23186
|
-
return self._value
|
23187
|
-
|
23188
|
-
|
23189
|
-
scout_catalog_DatasetFilter.__name__ = "DatasetFilter"
|
23190
|
-
scout_catalog_DatasetFilter.__qualname__ = "DatasetFilter"
|
23191
|
-
scout_catalog_DatasetFilter.__module__ = "nominal_api.scout_catalog"
|
23192
|
-
|
23193
|
-
|
23194
23141
|
class scout_catalog_DatasetOriginMetadata(ConjureBeanType):
|
23195
23142
|
|
23196
23143
|
@builtins.classmethod
|
@@ -23649,35 +23596,6 @@ scout_catalog_Iso8601Timestamp.__qualname__ = "Iso8601Timestamp"
|
|
23649
23596
|
scout_catalog_Iso8601Timestamp.__module__ = "nominal_api.scout_catalog"
|
23650
23597
|
|
23651
23598
|
|
23652
|
-
class scout_catalog_ListDatasetsRequest(ConjureBeanType):
|
23653
|
-
|
23654
|
-
@builtins.classmethod
|
23655
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
23656
|
-
return {
|
23657
|
-
'include_filters': ConjureFieldDefinition('includeFilters', OptionalTypeWrapper[List[scout_catalog_DatasetFilter]]),
|
23658
|
-
'exclude_filters': ConjureFieldDefinition('excludeFilters', OptionalTypeWrapper[List[scout_catalog_DatasetFilter]])
|
23659
|
-
}
|
23660
|
-
|
23661
|
-
__slots__: List[str] = ['_include_filters', '_exclude_filters']
|
23662
|
-
|
23663
|
-
def __init__(self, exclude_filters: Optional[List["scout_catalog_DatasetFilter"]] = None, include_filters: Optional[List["scout_catalog_DatasetFilter"]] = None) -> None:
|
23664
|
-
self._include_filters = include_filters
|
23665
|
-
self._exclude_filters = exclude_filters
|
23666
|
-
|
23667
|
-
@builtins.property
|
23668
|
-
def include_filters(self) -> Optional[List["scout_catalog_DatasetFilter"]]:
|
23669
|
-
return self._include_filters
|
23670
|
-
|
23671
|
-
@builtins.property
|
23672
|
-
def exclude_filters(self) -> Optional[List["scout_catalog_DatasetFilter"]]:
|
23673
|
-
return self._exclude_filters
|
23674
|
-
|
23675
|
-
|
23676
|
-
scout_catalog_ListDatasetsRequest.__name__ = "ListDatasetsRequest"
|
23677
|
-
scout_catalog_ListDatasetsRequest.__qualname__ = "ListDatasetsRequest"
|
23678
|
-
scout_catalog_ListDatasetsRequest.__module__ = "nominal_api.scout_catalog"
|
23679
|
-
|
23680
|
-
|
23681
23599
|
class scout_catalog_MarkFileIngestError(ConjureBeanType):
|
23682
23600
|
|
23683
23601
|
@builtins.classmethod
|
@@ -23871,87 +23789,6 @@ scout_catalog_S3Handle.__qualname__ = "S3Handle"
|
|
23871
23789
|
scout_catalog_S3Handle.__module__ = "nominal_api.scout_catalog"
|
23872
23790
|
|
23873
23791
|
|
23874
|
-
class scout_catalog_SearchDatasetsByTextRequest(ConjureBeanType):
|
23875
|
-
|
23876
|
-
@builtins.classmethod
|
23877
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
23878
|
-
return {
|
23879
|
-
'search_text': ConjureFieldDefinition('searchText', OptionalTypeWrapper[str]),
|
23880
|
-
'include_filters': ConjureFieldDefinition('includeFilters', OptionalTypeWrapper[List[scout_catalog_DatasetFilter]]),
|
23881
|
-
'exclude_filters': ConjureFieldDefinition('excludeFilters', OptionalTypeWrapper[List[scout_catalog_DatasetFilter]]),
|
23882
|
-
'page_request': ConjureFieldDefinition('pageRequest', OptionalTypeWrapper[datasource_pagination_api_PageRequest]),
|
23883
|
-
'include_archived': ConjureFieldDefinition('includeArchived', OptionalTypeWrapper[bool])
|
23884
|
-
}
|
23885
|
-
|
23886
|
-
__slots__: List[str] = ['_search_text', '_include_filters', '_exclude_filters', '_page_request', '_include_archived']
|
23887
|
-
|
23888
|
-
def __init__(self, exclude_filters: Optional[List["scout_catalog_DatasetFilter"]] = None, include_archived: Optional[bool] = None, include_filters: Optional[List["scout_catalog_DatasetFilter"]] = None, page_request: Optional["datasource_pagination_api_PageRequest"] = None, search_text: Optional[str] = None) -> None:
|
23889
|
-
self._search_text = search_text
|
23890
|
-
self._include_filters = include_filters
|
23891
|
-
self._exclude_filters = exclude_filters
|
23892
|
-
self._page_request = page_request
|
23893
|
-
self._include_archived = include_archived
|
23894
|
-
|
23895
|
-
@builtins.property
|
23896
|
-
def search_text(self) -> Optional[str]:
|
23897
|
-
return self._search_text
|
23898
|
-
|
23899
|
-
@builtins.property
|
23900
|
-
def include_filters(self) -> Optional[List["scout_catalog_DatasetFilter"]]:
|
23901
|
-
return self._include_filters
|
23902
|
-
|
23903
|
-
@builtins.property
|
23904
|
-
def exclude_filters(self) -> Optional[List["scout_catalog_DatasetFilter"]]:
|
23905
|
-
return self._exclude_filters
|
23906
|
-
|
23907
|
-
@builtins.property
|
23908
|
-
def page_request(self) -> Optional["datasource_pagination_api_PageRequest"]:
|
23909
|
-
"""The PageRequest.pageToken must be an integer offset. If a PageRequest.pageSize is not provided, the
|
23910
|
-
default page size (100) will be used.
|
23911
|
-
"""
|
23912
|
-
return self._page_request
|
23913
|
-
|
23914
|
-
@builtins.property
|
23915
|
-
def include_archived(self) -> Optional[bool]:
|
23916
|
-
"""Defaults to false if not specified.
|
23917
|
-
"""
|
23918
|
-
return self._include_archived
|
23919
|
-
|
23920
|
-
|
23921
|
-
scout_catalog_SearchDatasetsByTextRequest.__name__ = "SearchDatasetsByTextRequest"
|
23922
|
-
scout_catalog_SearchDatasetsByTextRequest.__qualname__ = "SearchDatasetsByTextRequest"
|
23923
|
-
scout_catalog_SearchDatasetsByTextRequest.__module__ = "nominal_api.scout_catalog"
|
23924
|
-
|
23925
|
-
|
23926
|
-
class scout_catalog_SearchDatasetsByTextResponse(ConjureBeanType):
|
23927
|
-
|
23928
|
-
@builtins.classmethod
|
23929
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
23930
|
-
return {
|
23931
|
-
'results': ConjureFieldDefinition('results', List[scout_catalog_EnrichedDataset]),
|
23932
|
-
'page_response': ConjureFieldDefinition('pageResponse', datasource_pagination_api_PageResponse)
|
23933
|
-
}
|
23934
|
-
|
23935
|
-
__slots__: List[str] = ['_results', '_page_response']
|
23936
|
-
|
23937
|
-
def __init__(self, page_response: "datasource_pagination_api_PageResponse", results: List["scout_catalog_EnrichedDataset"]) -> None:
|
23938
|
-
self._results = results
|
23939
|
-
self._page_response = page_response
|
23940
|
-
|
23941
|
-
@builtins.property
|
23942
|
-
def results(self) -> List["scout_catalog_EnrichedDataset"]:
|
23943
|
-
return self._results
|
23944
|
-
|
23945
|
-
@builtins.property
|
23946
|
-
def page_response(self) -> "datasource_pagination_api_PageResponse":
|
23947
|
-
return self._page_response
|
23948
|
-
|
23949
|
-
|
23950
|
-
scout_catalog_SearchDatasetsByTextResponse.__name__ = "SearchDatasetsByTextResponse"
|
23951
|
-
scout_catalog_SearchDatasetsByTextResponse.__qualname__ = "SearchDatasetsByTextResponse"
|
23952
|
-
scout_catalog_SearchDatasetsByTextResponse.__module__ = "nominal_api.scout_catalog"
|
23953
|
-
|
23954
|
-
|
23955
23792
|
class scout_catalog_SearchDatasetsQuery(ConjureUnionType):
|
23956
23793
|
_search_text: Optional[str] = None
|
23957
23794
|
_exact_match: Optional[str] = None
|
@@ -31796,6 +31633,7 @@ class scout_checks_api_CheckJobSpec(ConjureBeanType):
|
|
31796
31633
|
'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid),
|
31797
31634
|
'check_rid': ConjureFieldDefinition('checkRid', scout_rids_api_CheckRid),
|
31798
31635
|
'run_rid': ConjureFieldDefinition('runRid', OptionalTypeWrapper[scout_run_api_RunRid]),
|
31636
|
+
'asset_rid': ConjureFieldDefinition('assetRid', OptionalTypeWrapper[scout_rids_api_AssetRid]),
|
31799
31637
|
'check_implementation_index': ConjureFieldDefinition('checkImplementationIndex', OptionalTypeWrapper[int]),
|
31800
31638
|
'check_evaluation_rid': ConjureFieldDefinition('checkEvaluationRid', api_rids_AutomaticCheckEvaluationRid),
|
31801
31639
|
'check_condition': ConjureFieldDefinition('checkCondition', scout_checks_api_CheckCondition),
|
@@ -31804,12 +31642,13 @@ class scout_checks_api_CheckJobSpec(ConjureBeanType):
|
|
31804
31642
|
'context': ConjureFieldDefinition('context', scout_compute_api_Context)
|
31805
31643
|
}
|
31806
31644
|
|
31807
|
-
__slots__: List[str] = ['_data_review_rid', '_check_rid', '_run_rid', '_check_implementation_index', '_check_evaluation_rid', '_check_condition', '_start', '_end', '_context']
|
31645
|
+
__slots__: List[str] = ['_data_review_rid', '_check_rid', '_run_rid', '_asset_rid', '_check_implementation_index', '_check_evaluation_rid', '_check_condition', '_start', '_end', '_context']
|
31808
31646
|
|
31809
|
-
def __init__(self, check_condition: "scout_checks_api_CheckCondition", check_evaluation_rid: str, check_rid: str, context: "scout_compute_api_Context", data_review_rid: str, end: "api_Timestamp", start: "api_Timestamp", check_implementation_index: Optional[int] = None, run_rid: Optional[str] = None) -> None:
|
31647
|
+
def __init__(self, check_condition: "scout_checks_api_CheckCondition", check_evaluation_rid: str, check_rid: str, context: "scout_compute_api_Context", data_review_rid: str, end: "api_Timestamp", start: "api_Timestamp", asset_rid: Optional[str] = None, check_implementation_index: Optional[int] = None, run_rid: Optional[str] = None) -> None:
|
31810
31648
|
self._data_review_rid = data_review_rid
|
31811
31649
|
self._check_rid = check_rid
|
31812
31650
|
self._run_rid = run_rid
|
31651
|
+
self._asset_rid = asset_rid
|
31813
31652
|
self._check_implementation_index = check_implementation_index
|
31814
31653
|
self._check_evaluation_rid = check_evaluation_rid
|
31815
31654
|
self._check_condition = check_condition
|
@@ -31829,6 +31668,10 @@ class scout_checks_api_CheckJobSpec(ConjureBeanType):
|
|
31829
31668
|
def run_rid(self) -> Optional[str]:
|
31830
31669
|
return self._run_rid
|
31831
31670
|
|
31671
|
+
@builtins.property
|
31672
|
+
def asset_rid(self) -> Optional[str]:
|
31673
|
+
return self._asset_rid
|
31674
|
+
|
31832
31675
|
@builtins.property
|
31833
31676
|
def check_implementation_index(self) -> Optional[int]:
|
31834
31677
|
"""Checks can define a single range computation which can evaluate over multiple implementations of a context.
|
@@ -61143,20 +60986,23 @@ scout_datareview_api_ClosedWithFurtherActionState.__module__ = "nominal_api.scou
|
|
61143
60986
|
|
61144
60987
|
class scout_datareview_api_CreateDataReviewRequest(ConjureBeanType):
|
61145
60988
|
"""If commit not is provided, the latest commit on main will be used.
|
60989
|
+
Asset RID is required only for multi-asset runs.
|
61146
60990
|
"""
|
61147
60991
|
|
61148
60992
|
@builtins.classmethod
|
61149
60993
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
61150
60994
|
return {
|
61151
60995
|
'run_rid': ConjureFieldDefinition('runRid', scout_run_api_RunRid),
|
60996
|
+
'asset_rid': ConjureFieldDefinition('assetRid', OptionalTypeWrapper[scout_rids_api_AssetRid]),
|
61152
60997
|
'checklist_rid': ConjureFieldDefinition('checklistRid', scout_rids_api_ChecklistRid),
|
61153
60998
|
'commit': ConjureFieldDefinition('commit', OptionalTypeWrapper[scout_versioning_api_CommitId])
|
61154
60999
|
}
|
61155
61000
|
|
61156
|
-
__slots__: List[str] = ['_run_rid', '_checklist_rid', '_commit']
|
61001
|
+
__slots__: List[str] = ['_run_rid', '_asset_rid', '_checklist_rid', '_commit']
|
61157
61002
|
|
61158
|
-
def __init__(self, checklist_rid: str, run_rid: str, commit: Optional[str] = None) -> None:
|
61003
|
+
def __init__(self, checklist_rid: str, run_rid: str, asset_rid: Optional[str] = None, commit: Optional[str] = None) -> None:
|
61159
61004
|
self._run_rid = run_rid
|
61005
|
+
self._asset_rid = asset_rid
|
61160
61006
|
self._checklist_rid = checklist_rid
|
61161
61007
|
self._commit = commit
|
61162
61008
|
|
@@ -61164,6 +61010,12 @@ class scout_datareview_api_CreateDataReviewRequest(ConjureBeanType):
|
|
61164
61010
|
def run_rid(self) -> str:
|
61165
61011
|
return self._run_rid
|
61166
61012
|
|
61013
|
+
@builtins.property
|
61014
|
+
def asset_rid(self) -> Optional[str]:
|
61015
|
+
"""Selects asset to execute data review on. Required for multi-asset runs.
|
61016
|
+
"""
|
61017
|
+
return self._asset_rid
|
61018
|
+
|
61167
61019
|
@builtins.property
|
61168
61020
|
def checklist_rid(self) -> str:
|
61169
61021
|
return self._checklist_rid
|
@@ -83465,12 +83317,13 @@ class timeseries_logicalseries_api_CreateLogicalSeries(ConjureBeanType):
|
|
83465
83317
|
'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
|
83466
83318
|
'unit': ConjureFieldDefinition('unit', OptionalTypeWrapper[api_Unit]),
|
83467
83319
|
'series_data_type': ConjureFieldDefinition('seriesDataType', OptionalTypeWrapper[api_SeriesDataType]),
|
83468
|
-
'granularity': ConjureFieldDefinition('granularity', OptionalTypeWrapper[api_Granularity])
|
83320
|
+
'granularity': ConjureFieldDefinition('granularity', OptionalTypeWrapper[api_Granularity]),
|
83321
|
+
'series_archetype_rid': ConjureFieldDefinition('seriesArchetypeRid', OptionalTypeWrapper[api_SeriesArchetypeRid])
|
83469
83322
|
}
|
83470
83323
|
|
83471
|
-
__slots__: List[str] = ['_channel', '_locator', '_id_locator', '_data_source_rid', '_description', '_unit', '_series_data_type', '_granularity']
|
83324
|
+
__slots__: List[str] = ['_channel', '_locator', '_id_locator', '_data_source_rid', '_description', '_unit', '_series_data_type', '_granularity', '_series_archetype_rid']
|
83472
83325
|
|
83473
|
-
def __init__(self, channel: str, data_source_rid: str, locator: "timeseries_logicalseries_api_Locator", description: Optional[str] = None, granularity: Optional["api_Granularity"] = None, id_locator: Optional[str] = None, series_data_type: Optional["api_SeriesDataType"] = None, unit: Optional[str] = None) -> None:
|
83326
|
+
def __init__(self, channel: str, data_source_rid: str, locator: "timeseries_logicalseries_api_Locator", description: Optional[str] = None, granularity: Optional["api_Granularity"] = None, id_locator: Optional[str] = None, series_archetype_rid: Optional[str] = None, series_data_type: Optional["api_SeriesDataType"] = None, unit: Optional[str] = None) -> None:
|
83474
83327
|
self._channel = channel
|
83475
83328
|
self._locator = locator
|
83476
83329
|
self._id_locator = id_locator
|
@@ -83479,6 +83332,7 @@ class timeseries_logicalseries_api_CreateLogicalSeries(ConjureBeanType):
|
|
83479
83332
|
self._unit = unit
|
83480
83333
|
self._series_data_type = series_data_type
|
83481
83334
|
self._granularity = granularity
|
83335
|
+
self._series_archetype_rid = series_archetype_rid
|
83482
83336
|
|
83483
83337
|
@builtins.property
|
83484
83338
|
def channel(self) -> str:
|
@@ -83515,6 +83369,12 @@ with this id, will throw a CONFLICT.
|
|
83515
83369
|
def granularity(self) -> Optional["api_Granularity"]:
|
83516
83370
|
return self._granularity
|
83517
83371
|
|
83372
|
+
@builtins.property
|
83373
|
+
def series_archetype_rid(self) -> Optional[str]:
|
83374
|
+
"""Deprecated. Do not use.
|
83375
|
+
"""
|
83376
|
+
return self._series_archetype_rid
|
83377
|
+
|
83518
83378
|
|
83519
83379
|
timeseries_logicalseries_api_CreateLogicalSeries.__name__ = "CreateLogicalSeries"
|
83520
83380
|
timeseries_logicalseries_api_CreateLogicalSeries.__qualname__ = "CreateLogicalSeries"
|
@@ -15,7 +15,6 @@ from .._impl import (
|
|
15
15
|
scout_catalog_DatasetFile as DatasetFile,
|
16
16
|
scout_catalog_DatasetFileUri as DatasetFileUri,
|
17
17
|
scout_catalog_DatasetFilesPage as DatasetFilesPage,
|
18
|
-
scout_catalog_DatasetFilter as DatasetFilter,
|
19
18
|
scout_catalog_DatasetOriginMetadata as DatasetOriginMetadata,
|
20
19
|
scout_catalog_EnrichedDataset as EnrichedDataset,
|
21
20
|
scout_catalog_EpochTimestamp as EpochTimestamp,
|
@@ -28,7 +27,6 @@ from .._impl import (
|
|
28
27
|
scout_catalog_IngestProgressV2 as IngestProgressV2,
|
29
28
|
scout_catalog_IngestStatus as IngestStatus,
|
30
29
|
scout_catalog_Iso8601Timestamp as Iso8601Timestamp,
|
31
|
-
scout_catalog_ListDatasetsRequest as ListDatasetsRequest,
|
32
30
|
scout_catalog_MarkFileIngestError as MarkFileIngestError,
|
33
31
|
scout_catalog_MarkFileIngestSuccessful as MarkFileIngestSuccessful,
|
34
32
|
scout_catalog_OriginFileUri as OriginFileUri,
|
@@ -36,8 +34,6 @@ from .._impl import (
|
|
36
34
|
scout_catalog_RetentionPolicy as RetentionPolicy,
|
37
35
|
scout_catalog_RetentionPolicyType as RetentionPolicyType,
|
38
36
|
scout_catalog_S3Handle as S3Handle,
|
39
|
-
scout_catalog_SearchDatasetsByTextRequest as SearchDatasetsByTextRequest,
|
40
|
-
scout_catalog_SearchDatasetsByTextResponse as SearchDatasetsByTextResponse,
|
41
37
|
scout_catalog_SearchDatasetsQuery as SearchDatasetsQuery,
|
42
38
|
scout_catalog_SearchDatasetsQueryVisitor as SearchDatasetsQueryVisitor,
|
43
39
|
scout_catalog_SearchDatasetsRequest as SearchDatasetsRequest,
|
@@ -71,7 +67,6 @@ __all__ = [
|
|
71
67
|
'DatasetFile',
|
72
68
|
'DatasetFileUri',
|
73
69
|
'DatasetFilesPage',
|
74
|
-
'DatasetFilter',
|
75
70
|
'DatasetOriginMetadata',
|
76
71
|
'EnrichedDataset',
|
77
72
|
'EpochTimestamp',
|
@@ -84,7 +79,6 @@ __all__ = [
|
|
84
79
|
'IngestProgressV2',
|
85
80
|
'IngestStatus',
|
86
81
|
'Iso8601Timestamp',
|
87
|
-
'ListDatasetsRequest',
|
88
82
|
'MarkFileIngestError',
|
89
83
|
'MarkFileIngestSuccessful',
|
90
84
|
'OriginFileUri',
|
@@ -92,8 +86,6 @@ __all__ = [
|
|
92
86
|
'RetentionPolicy',
|
93
87
|
'RetentionPolicyType',
|
94
88
|
'S3Handle',
|
95
|
-
'SearchDatasetsByTextRequest',
|
96
|
-
'SearchDatasetsByTextResponse',
|
97
89
|
'SearchDatasetsQuery',
|
98
90
|
'SearchDatasetsQueryVisitor',
|
99
91
|
'SearchDatasetsRequest',
|
@@ -1,5 +1,5 @@
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
2
|
-
nominal_api/_impl.py,sha256=
|
1
|
+
nominal_api/__init__.py,sha256=VYbubMIB9hMG6XehwtlEWxwgbzuglIFITD_-b9orGoQ,1990
|
2
|
+
nominal_api/_impl.py,sha256=KI_EE2AZZy7H5A8vnoyMUCVmPCPBu-8rBmY93zPthfA,3364126
|
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
|
@@ -24,7 +24,7 @@ nominal_api/scout/__init__.py,sha256=dZzrrqBeio2l0txhlNoHSfv6QsA9a3EVDp0_XpubUGk
|
|
24
24
|
nominal_api/scout_api/__init__.py,sha256=MBFasDkc62-_Zqi-p6baBbtfvvhq_1bs0f5RuC5LdPM,865
|
25
25
|
nominal_api/scout_asset_api/__init__.py,sha256=d3naKiiQL79GLo-JSv_hLtAXKRZUE9J3I5QNWNR0o0U,3124
|
26
26
|
nominal_api/scout_assets/__init__.py,sha256=1ZyiolDjhxnrhyeUxW_KyeQ_q-6stlqd1I2d3HeZqUg,122
|
27
|
-
nominal_api/scout_catalog/__init__.py,sha256=
|
27
|
+
nominal_api/scout_catalog/__init__.py,sha256=tkovUfQh4zf2Lko0AQ5BQ608TYeWIdP2jqD4KxTqk8A,4130
|
28
28
|
nominal_api/scout_channelvariables_api/__init__.py,sha256=Wahkyy-m3gEcaRFYU5ZV3beW-W4OeYnOs9Y4eirQO38,1033
|
29
29
|
nominal_api/scout_chart_api/__init__.py,sha256=hkNhoFOmPYnLFeINiQXqya78wbAsx65DoKU0TpUwhQo,261
|
30
30
|
nominal_api/scout_chartdefinition_api/__init__.py,sha256=6cSEjkqj2VAYkH0oMzTgZwB00HDleQuJuqtofC-fViQ,15457
|
@@ -74,7 +74,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
74
74
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
75
75
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
76
76
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
77
|
-
nominal_api-0.
|
78
|
-
nominal_api-0.
|
79
|
-
nominal_api-0.
|
80
|
-
nominal_api-0.
|
77
|
+
nominal_api-0.740.0.dist-info/METADATA,sha256=-WTN57qVxn8wzCj4HJb3nhkuMM02OYBaPagJ1NSpIGI,199
|
78
|
+
nominal_api-0.740.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
79
|
+
nominal_api-0.740.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
80
|
+
nominal_api-0.740.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|