truefoundry 0.5.9__py3-none-any.whl → 0.5.10rc2__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 truefoundry might be problematic. Click here for more details.
- truefoundry/cli/display_util.py +1 -1
- truefoundry/deploy/auto_gen/models.py +1 -1
- truefoundry/deploy/io/output_callback.py +13 -6
- truefoundry/deploy/io/rich_output_callback.py +8 -4
- truefoundry/deploy/lib/clients/servicefoundry_client.py +78 -105
- truefoundry/deploy/lib/dao/apply.py +2 -2
- truefoundry/deploy/lib/dao/delete.py +2 -2
- truefoundry/deploy/lib/model/entity.py +37 -24
- truefoundry/ml/autogen/client/__init__.py +22 -14
- truefoundry/ml/autogen/client/api/auth_api.py +2 -2
- truefoundry/ml/autogen/client/api/deprecated_api.py +5 -338
- truefoundry/ml/autogen/client/api/experiments_api.py +77 -32
- truefoundry/ml/autogen/client/api/generate_code_snippet_api.py +2 -2
- truefoundry/ml/autogen/client/api/health_api.py +2 -2
- truefoundry/ml/autogen/client/api/metrics_api.py +4 -4
- truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py +530 -140
- truefoundry/ml/autogen/client/api/run_artifacts_api.py +10 -5
- truefoundry/ml/autogen/client/api/runs_api.py +20 -20
- truefoundry/ml/autogen/client/api_client.py +2 -2
- truefoundry/ml/autogen/client/configuration.py +29 -57
- truefoundry/ml/autogen/client/exceptions.py +2 -2
- truefoundry/ml/autogen/client/models/__init__.py +22 -14
- truefoundry/ml/autogen/client/models/agent_app.py +13 -5
- truefoundry/ml/autogen/client/models/{agent.py → agent_manifest.py} +39 -30
- truefoundry/ml/autogen/client/models/{agent_open_api_tool.py → agent_open_api_tool_manifest.py} +50 -31
- truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py +47 -26
- truefoundry/ml/autogen/client/models/agent_with_fqn.py +36 -25
- truefoundry/ml/autogen/client/models/{add_custom_metrics_to_model_version_request_dto.py → apply_request_dto.py} +23 -17
- truefoundry/ml/autogen/client/models/apply_response_dto.py +79 -0
- truefoundry/ml/autogen/client/models/artifact_dto.py +2 -2
- truefoundry/ml/autogen/client/models/{add_features_to_model_version_request_dto.py → artifact_path.py} +20 -17
- truefoundry/ml/autogen/client/models/artifact_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/artifact_type.py +3 -3
- truefoundry/ml/autogen/client/models/artifact_version_dto.py +7 -15
- truefoundry/ml/autogen/client/models/artifact_version_manifest.py +32 -19
- truefoundry/ml/autogen/client/models/artifact_version_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/artifact_version_serialization_format.py +2 -2
- truefoundry/ml/autogen/client/models/artifact_version_status.py +2 -2
- truefoundry/ml/autogen/client/models/assistant_message.py +9 -5
- truefoundry/ml/autogen/client/models/authorize_user_for_model_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/authorize_user_for_model_version_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/blob_storage_reference.py +4 -4
- truefoundry/ml/autogen/client/models/body_get_search_runs_get.py +2 -2
- truefoundry/ml/autogen/client/models/{chat_prompt.py → chat_prompt_manifest.py} +39 -32
- truefoundry/ml/autogen/client/models/{chat_prompt_messages_inner.py → chat_prompt_manifest_messages_inner.py} +12 -12
- truefoundry/ml/autogen/client/models/columns_dto.py +2 -2
- truefoundry/ml/autogen/client/models/command.py +2 -2
- truefoundry/ml/autogen/client/models/content.py +3 -3
- truefoundry/ml/autogen/client/models/content1.py +3 -3
- truefoundry/ml/autogen/client/models/content2.py +3 -3
- truefoundry/ml/autogen/client/models/content2_any_of_inner.py +2 -2
- truefoundry/ml/autogen/client/models/create_artifact_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_artifact_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_artifact_version_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_artifact_version_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_dataset_request_dto.py +21 -5
- truefoundry/ml/autogen/client/models/create_experiment_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_experiment_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_model_version_request_dto.py +4 -12
- truefoundry/ml/autogen/client/models/create_multi_part_upload_for_dataset_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_multi_part_upload_for_dataset_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_multi_part_upload_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_python_deployment_config_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_python_deployment_config_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_run_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_run_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/create_workflow_task_config_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/data_directory_manifest.py +126 -0
- truefoundry/ml/autogen/client/models/dataset_dto.py +13 -2
- truefoundry/ml/autogen/client/models/dataset_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/delete_artifact_versions_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/delete_dataset_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/delete_files_for_dataset_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/delete_model_version_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/delete_run_request.py +2 -2
- truefoundry/ml/autogen/client/models/delete_tag_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/experiment_dto.py +3 -3
- truefoundry/ml/autogen/client/models/experiment_id_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/experiment_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/experiment_tag_dto.py +2 -2
- truefoundry/ml/autogen/client/models/export_deployment_files_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/external_blob_storage_source.py +5 -4
- truefoundry/ml/autogen/client/models/fast_ai_framework.py +3 -3
- truefoundry/ml/autogen/client/models/file_info_dto.py +2 -2
- truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py +7 -15
- truefoundry/ml/autogen/client/models/framework.py +3 -3
- truefoundry/ml/autogen/client/models/get_artifact_version_aliases_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_experiment_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_latest_run_log_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_metric_history_response.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_url_for_dataset_write_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_urls_for_artifact_version_read_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_urls_for_artifact_version_read_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_urls_for_artifact_version_write_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_urls_for_artifact_version_write_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_read_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_read_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_write_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/get_tenant_id_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/gluon_framework.py +3 -3
- truefoundry/ml/autogen/client/models/h2_o_framework.py +3 -3
- truefoundry/ml/autogen/client/models/http_validation_error.py +2 -2
- truefoundry/ml/autogen/client/models/image_content_part.py +7 -5
- truefoundry/ml/autogen/client/models/image_url.py +3 -3
- truefoundry/ml/autogen/client/models/infer_method_name.py +2 -2
- truefoundry/ml/autogen/client/models/keras_framework.py +3 -3
- truefoundry/ml/autogen/client/models/latest_run_log_dto.py +2 -2
- truefoundry/ml/autogen/client/models/library_name.py +2 -2
- truefoundry/ml/autogen/client/models/light_gbm_framework.py +3 -3
- truefoundry/ml/autogen/client/models/list_artifact_versions_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_artifact_versions_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_artifacts_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_artifacts_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_colums_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_datasets_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_datasets_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_experiments_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_files_for_artifact_version_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_files_for_artifact_versions_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_files_for_dataset_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_files_for_dataset_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_latest_run_logs_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_metric_history_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_metric_history_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_model_version_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_model_versions_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_models_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_models_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_run_artifacts_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/list_run_logs_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/local_artifact_source.py +93 -0
- truefoundry/ml/autogen/client/models/local_model_source.py +80 -0
- truefoundry/ml/autogen/client/models/log_batch_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/log_metric_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/log_param_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/manifest.py +100 -23
- truefoundry/ml/autogen/client/models/manifest1.py +219 -0
- truefoundry/ml/autogen/client/models/manifest2.py +198 -0
- truefoundry/ml/autogen/client/models/method.py +3 -3
- truefoundry/ml/autogen/client/models/metric_collection_dto.py +2 -2
- truefoundry/ml/autogen/client/models/metric_dto.py +2 -2
- truefoundry/ml/autogen/client/models/mime_type.py +2 -2
- truefoundry/ml/autogen/client/models/model_configuration.py +7 -7
- truefoundry/ml/autogen/client/models/model_dto.py +2 -2
- truefoundry/ml/autogen/client/models/model_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/model_server.py +2 -2
- truefoundry/ml/autogen/client/models/model_version_dto.py +2 -2
- truefoundry/ml/autogen/client/models/model_version_environment.py +5 -5
- truefoundry/ml/autogen/client/models/model_version_manifest.py +35 -22
- truefoundry/ml/autogen/client/models/model_version_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/multi_part_upload_dto.py +2 -2
- truefoundry/ml/autogen/client/models/multi_part_upload_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/multi_part_upload_storage_provider.py +2 -2
- truefoundry/ml/autogen/client/models/notify_artifact_version_failure_dto.py +2 -2
- truefoundry/ml/autogen/client/models/onnx_framework.py +3 -3
- truefoundry/ml/autogen/client/models/openapi_spec.py +3 -3
- truefoundry/ml/autogen/client/models/paddle_framework.py +3 -3
- truefoundry/ml/autogen/client/models/param_dto.py +2 -2
- truefoundry/ml/autogen/client/models/parameters.py +3 -3
- truefoundry/ml/autogen/client/models/py_torch_framework.py +3 -3
- truefoundry/ml/autogen/client/models/resolve_agent_app_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/restore_run_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/run_data_dto.py +2 -2
- truefoundry/ml/autogen/client/models/run_dto.py +2 -2
- truefoundry/ml/autogen/client/models/run_info_dto.py +2 -2
- truefoundry/ml/autogen/client/models/run_log_dto.py +2 -2
- truefoundry/ml/autogen/client/models/run_log_input_dto.py +2 -2
- truefoundry/ml/autogen/client/models/run_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/run_tag_dto.py +2 -2
- truefoundry/ml/autogen/client/models/search_runs_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/search_runs_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/set_experiment_tag_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/set_tag_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/signed_url_dto.py +2 -2
- truefoundry/ml/autogen/client/models/sklearn_framework.py +4 -4
- truefoundry/ml/autogen/client/models/sklearn_model_schema.py +7 -5
- truefoundry/ml/autogen/client/models/sklearn_serialization_format.py +3 -3
- truefoundry/ml/autogen/client/models/source.py +32 -7
- truefoundry/ml/autogen/client/models/source1.py +3 -3
- truefoundry/ml/autogen/client/models/{internal_metadata.py → source2.py} +52 -55
- truefoundry/ml/autogen/client/models/spa_cy_framework.py +3 -3
- truefoundry/ml/autogen/client/models/stats_models_framework.py +3 -3
- truefoundry/ml/autogen/client/models/stop.py +2 -2
- truefoundry/ml/autogen/client/models/store_run_logs_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/subject.py +2 -2
- truefoundry/ml/autogen/client/models/subject_type.py +2 -2
- truefoundry/ml/autogen/client/models/system_message.py +7 -4
- truefoundry/ml/autogen/client/models/tensor_flow_framework.py +3 -3
- truefoundry/ml/autogen/client/models/text.py +3 -3
- truefoundry/ml/autogen/client/models/text_content_part.py +6 -4
- truefoundry/ml/autogen/client/models/transformers_framework.py +5 -5
- truefoundry/ml/autogen/client/models/trigger_job_run_config_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/trigger_job_run_config_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/true_foundry_managed_source.py +3 -3
- truefoundry/ml/autogen/client/models/update_artifact_version_request_dto.py +5 -7
- truefoundry/ml/autogen/client/models/update_dataset_request_dto.py +13 -3
- truefoundry/ml/autogen/client/models/update_experiment_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/update_model_version_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/update_run_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/update_run_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/url.py +3 -3
- truefoundry/ml/autogen/client/models/user_message.py +8 -5
- truefoundry/ml/autogen/client/models/validate_external_storage_root_request_dto.py +2 -2
- truefoundry/ml/autogen/client/models/validate_external_storage_root_response_dto.py +2 -2
- truefoundry/ml/autogen/client/models/validation_error.py +2 -2
- truefoundry/ml/autogen/client/models/validation_error_loc_inner.py +2 -2
- truefoundry/ml/autogen/client/models/xg_boost_framework.py +4 -4
- truefoundry/ml/autogen/client/models/xg_boost_model_schema.py +7 -5
- truefoundry/ml/autogen/client/models/xg_boost_serialization_format.py +3 -3
- truefoundry/ml/autogen/client/rest.py +2 -2
- truefoundry/ml/autogen/client_README.md +17 -19
- truefoundry/ml/autogen/entities/artifacts.py +264 -139
- truefoundry/ml/clients/servicefoundry_client.py +5 -8
- truefoundry/ml/log_types/artifacts/artifact.py +15 -78
- truefoundry/ml/log_types/artifacts/model.py +4 -5
- truefoundry/ml/log_types/artifacts/utils.py +18 -2
- truefoundry/ml/mlfoundry_api.py +0 -40
- {truefoundry-0.5.9.dist-info → truefoundry-0.5.10rc2.dist-info}/METADATA +3 -6
- {truefoundry-0.5.9.dist-info → truefoundry-0.5.10rc2.dist-info}/RECORD +221 -215
- {truefoundry-0.5.9.dist-info → truefoundry-0.5.10rc2.dist-info}/WHEEL +0 -0
- {truefoundry-0.5.9.dist-info → truefoundry-0.5.10rc2.dist-info}/entry_points.txt +0 -0
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
|
|
4
|
+
TrueFoundry ML API
|
|
5
5
|
|
|
6
6
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
12
12
|
""" # noqa: E501
|
|
13
13
|
|
|
14
14
|
import re # noqa: F401
|
|
15
|
+
import warnings
|
|
15
16
|
from typing import Optional
|
|
16
17
|
|
|
17
18
|
from truefoundry.ml.autogen.client.api_client import ApiClient
|
|
@@ -20,6 +21,8 @@ from truefoundry.ml.autogen.client.exceptions import ( # noqa: F401
|
|
|
20
21
|
ApiTypeError,
|
|
21
22
|
ApiValueError,
|
|
22
23
|
)
|
|
24
|
+
from truefoundry.ml.autogen.client.models.apply_request_dto import ApplyRequestDto
|
|
25
|
+
from truefoundry.ml.autogen.client.models.apply_response_dto import ApplyResponseDto
|
|
23
26
|
from truefoundry.ml.autogen.client.models.artifact_response_dto import (
|
|
24
27
|
ArtifactResponseDto,
|
|
25
28
|
)
|
|
@@ -195,13 +198,170 @@ class MlfoundryArtifactsApi:
|
|
|
195
198
|
api_client = ApiClient.get_default()
|
|
196
199
|
self.api_client = api_client
|
|
197
200
|
|
|
201
|
+
@validate_arguments
|
|
202
|
+
def apply_manifest_put(
|
|
203
|
+
self, apply_request_dto: ApplyRequestDto, **kwargs
|
|
204
|
+
) -> ApplyResponseDto: # noqa: E501
|
|
205
|
+
"""(Deprecated) Apply Manifest # noqa: E501
|
|
206
|
+
|
|
207
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
208
|
+
asynchronous HTTP request, please pass async_req=True
|
|
209
|
+
|
|
210
|
+
>>> thread = api.apply_manifest_put(apply_request_dto, async_req=True)
|
|
211
|
+
>>> result = thread.get()
|
|
212
|
+
|
|
213
|
+
:param apply_request_dto: (required)
|
|
214
|
+
:type apply_request_dto: ApplyRequestDto
|
|
215
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
216
|
+
:type async_req: bool, optional
|
|
217
|
+
:param _request_timeout: timeout setting for this request.
|
|
218
|
+
If one number provided, it will be total request
|
|
219
|
+
timeout. It can also be a pair (tuple) of
|
|
220
|
+
(connection, read) timeouts.
|
|
221
|
+
:return: Returns the result object.
|
|
222
|
+
If the method is called asynchronously,
|
|
223
|
+
returns the request thread.
|
|
224
|
+
:rtype: ApplyResponseDto
|
|
225
|
+
"""
|
|
226
|
+
kwargs["_return_http_data_only"] = True
|
|
227
|
+
if "_preload_content" in kwargs:
|
|
228
|
+
message = "Error! Please call the apply_manifest_put_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
|
229
|
+
raise ValueError(message)
|
|
230
|
+
return self.apply_manifest_put_with_http_info(apply_request_dto, **kwargs) # noqa: E501
|
|
231
|
+
|
|
232
|
+
@validate_arguments
|
|
233
|
+
def apply_manifest_put_with_http_info(
|
|
234
|
+
self, apply_request_dto: ApplyRequestDto, **kwargs
|
|
235
|
+
) -> ApiResponse: # noqa: E501
|
|
236
|
+
"""(Deprecated) Apply Manifest # noqa: E501
|
|
237
|
+
|
|
238
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
239
|
+
asynchronous HTTP request, please pass async_req=True
|
|
240
|
+
|
|
241
|
+
>>> thread = api.apply_manifest_put_with_http_info(apply_request_dto, async_req=True)
|
|
242
|
+
>>> result = thread.get()
|
|
243
|
+
|
|
244
|
+
:param apply_request_dto: (required)
|
|
245
|
+
:type apply_request_dto: ApplyRequestDto
|
|
246
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
247
|
+
:type async_req: bool, optional
|
|
248
|
+
:param _preload_content: if False, the ApiResponse.data will
|
|
249
|
+
be set to none and raw_data will store the
|
|
250
|
+
HTTP response body without reading/decoding.
|
|
251
|
+
Default is True.
|
|
252
|
+
:type _preload_content: bool, optional
|
|
253
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
|
254
|
+
object with status code, headers, etc
|
|
255
|
+
:type _return_http_data_only: bool, optional
|
|
256
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
257
|
+
number provided, it will be total request
|
|
258
|
+
timeout. It can also be a pair (tuple) of
|
|
259
|
+
(connection, read) timeouts.
|
|
260
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
261
|
+
request; this effectively ignores the authentication
|
|
262
|
+
in the spec for a single request.
|
|
263
|
+
:type _request_auth: dict, optional
|
|
264
|
+
:type _content_type: string, optional: force content-type for the request
|
|
265
|
+
:return: Returns the result object.
|
|
266
|
+
If the method is called asynchronously,
|
|
267
|
+
returns the request thread.
|
|
268
|
+
:rtype: tuple(ApplyResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
269
|
+
"""
|
|
270
|
+
|
|
271
|
+
warnings.warn(
|
|
272
|
+
"PUT /api/2.0/mlflow/mlfoundry-artifacts/apply is deprecated.",
|
|
273
|
+
DeprecationWarning,
|
|
274
|
+
)
|
|
275
|
+
|
|
276
|
+
_params = locals()
|
|
277
|
+
|
|
278
|
+
_all_params = ["apply_request_dto"]
|
|
279
|
+
_all_params.extend(
|
|
280
|
+
[
|
|
281
|
+
"async_req",
|
|
282
|
+
"_return_http_data_only",
|
|
283
|
+
"_preload_content",
|
|
284
|
+
"_request_timeout",
|
|
285
|
+
"_request_auth",
|
|
286
|
+
"_content_type",
|
|
287
|
+
"_headers",
|
|
288
|
+
]
|
|
289
|
+
)
|
|
290
|
+
|
|
291
|
+
# validate the arguments
|
|
292
|
+
for _key, _val in _params["kwargs"].items():
|
|
293
|
+
if _key not in _all_params:
|
|
294
|
+
raise ApiTypeError(
|
|
295
|
+
"Got an unexpected keyword argument '%s'"
|
|
296
|
+
" to method apply_manifest_put" % _key
|
|
297
|
+
)
|
|
298
|
+
_params[_key] = _val
|
|
299
|
+
del _params["kwargs"]
|
|
300
|
+
|
|
301
|
+
_collection_formats = {}
|
|
302
|
+
|
|
303
|
+
# process the path parameters
|
|
304
|
+
_path_params = {}
|
|
305
|
+
|
|
306
|
+
# process the query parameters
|
|
307
|
+
_query_params = []
|
|
308
|
+
# process the header parameters
|
|
309
|
+
_header_params = dict(_params.get("_headers", {}))
|
|
310
|
+
# process the form parameters
|
|
311
|
+
_form_params = []
|
|
312
|
+
_files = {}
|
|
313
|
+
# process the body parameter
|
|
314
|
+
_body_params = None
|
|
315
|
+
if _params["apply_request_dto"] is not None:
|
|
316
|
+
_body_params = _params["apply_request_dto"]
|
|
317
|
+
|
|
318
|
+
# set the HTTP header `Accept`
|
|
319
|
+
_header_params["Accept"] = self.api_client.select_header_accept(
|
|
320
|
+
["application/json"]
|
|
321
|
+
) # noqa: E501
|
|
322
|
+
|
|
323
|
+
# set the HTTP header `Content-Type`
|
|
324
|
+
_content_types_list = _params.get(
|
|
325
|
+
"_content_type",
|
|
326
|
+
self.api_client.select_header_content_type(["application/json"]),
|
|
327
|
+
)
|
|
328
|
+
if _content_types_list:
|
|
329
|
+
_header_params["Content-Type"] = _content_types_list
|
|
330
|
+
|
|
331
|
+
# authentication setting
|
|
332
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
333
|
+
|
|
334
|
+
_response_types_map = {
|
|
335
|
+
"200": "ApplyResponseDto",
|
|
336
|
+
"422": "HTTPValidationError",
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
return self.api_client.call_api(
|
|
340
|
+
"/api/2.0/mlflow/mlfoundry-artifacts/apply",
|
|
341
|
+
"PUT",
|
|
342
|
+
_path_params,
|
|
343
|
+
_query_params,
|
|
344
|
+
_header_params,
|
|
345
|
+
body=_body_params,
|
|
346
|
+
post_params=_form_params,
|
|
347
|
+
files=_files,
|
|
348
|
+
response_types_map=_response_types_map,
|
|
349
|
+
auth_settings=_auth_settings,
|
|
350
|
+
async_req=_params.get("async_req"),
|
|
351
|
+
_return_http_data_only=_params.get("_return_http_data_only"), # noqa: E501
|
|
352
|
+
_preload_content=_params.get("_preload_content", True),
|
|
353
|
+
_request_timeout=_params.get("_request_timeout"),
|
|
354
|
+
collection_formats=_collection_formats,
|
|
355
|
+
_request_auth=_params.get("_request_auth"),
|
|
356
|
+
)
|
|
357
|
+
|
|
198
358
|
@validate_arguments
|
|
199
359
|
def authorize_user_for_model_post(
|
|
200
360
|
self,
|
|
201
361
|
authorize_user_for_model_request_dto: AuthorizeUserForModelRequestDto,
|
|
202
362
|
**kwargs,
|
|
203
363
|
) -> object: # noqa: E501
|
|
204
|
-
"""Authorize User For Model # noqa: E501
|
|
364
|
+
"""(Deprecated) Authorize User For Model # noqa: E501
|
|
205
365
|
|
|
206
366
|
This method makes a synchronous HTTP request by default. To make an
|
|
207
367
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -236,7 +396,7 @@ class MlfoundryArtifactsApi:
|
|
|
236
396
|
authorize_user_for_model_request_dto: AuthorizeUserForModelRequestDto,
|
|
237
397
|
**kwargs,
|
|
238
398
|
) -> ApiResponse: # noqa: E501
|
|
239
|
-
"""Authorize User For Model # noqa: E501
|
|
399
|
+
"""(Deprecated) Authorize User For Model # noqa: E501
|
|
240
400
|
|
|
241
401
|
This method makes a synchronous HTTP request by default. To make an
|
|
242
402
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -271,6 +431,11 @@ class MlfoundryArtifactsApi:
|
|
|
271
431
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
272
432
|
"""
|
|
273
433
|
|
|
434
|
+
warnings.warn(
|
|
435
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/models/authorize is deprecated.",
|
|
436
|
+
DeprecationWarning,
|
|
437
|
+
)
|
|
438
|
+
|
|
274
439
|
_params = locals()
|
|
275
440
|
|
|
276
441
|
_all_params = ["authorize_user_for_model_request_dto"]
|
|
@@ -327,7 +492,7 @@ class MlfoundryArtifactsApi:
|
|
|
327
492
|
_header_params["Content-Type"] = _content_types_list
|
|
328
493
|
|
|
329
494
|
# authentication setting
|
|
330
|
-
_auth_settings = ["
|
|
495
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
331
496
|
|
|
332
497
|
_response_types_map = {
|
|
333
498
|
"200": "object",
|
|
@@ -359,7 +524,7 @@ class MlfoundryArtifactsApi:
|
|
|
359
524
|
authorize_user_for_model_version_request_dto: AuthorizeUserForModelVersionRequestDto,
|
|
360
525
|
**kwargs,
|
|
361
526
|
) -> object: # noqa: E501
|
|
362
|
-
"""Authorize User For Model Version # noqa: E501
|
|
527
|
+
"""(Deprecated) Authorize User For Model Version # noqa: E501
|
|
363
528
|
|
|
364
529
|
This method makes a synchronous HTTP request by default. To make an
|
|
365
530
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -394,7 +559,7 @@ class MlfoundryArtifactsApi:
|
|
|
394
559
|
authorize_user_for_model_version_request_dto: AuthorizeUserForModelVersionRequestDto,
|
|
395
560
|
**kwargs,
|
|
396
561
|
) -> ApiResponse: # noqa: E501
|
|
397
|
-
"""Authorize User For Model Version # noqa: E501
|
|
562
|
+
"""(Deprecated) Authorize User For Model Version # noqa: E501
|
|
398
563
|
|
|
399
564
|
This method makes a synchronous HTTP request by default. To make an
|
|
400
565
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -429,6 +594,11 @@ class MlfoundryArtifactsApi:
|
|
|
429
594
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
430
595
|
"""
|
|
431
596
|
|
|
597
|
+
warnings.warn(
|
|
598
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/model-versions/authorize is deprecated.",
|
|
599
|
+
DeprecationWarning,
|
|
600
|
+
)
|
|
601
|
+
|
|
432
602
|
_params = locals()
|
|
433
603
|
|
|
434
604
|
_all_params = ["authorize_user_for_model_version_request_dto"]
|
|
@@ -485,7 +655,7 @@ class MlfoundryArtifactsApi:
|
|
|
485
655
|
_header_params["Content-Type"] = _content_types_list
|
|
486
656
|
|
|
487
657
|
# authentication setting
|
|
488
|
-
_auth_settings = ["
|
|
658
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
489
659
|
|
|
490
660
|
_response_types_map = {
|
|
491
661
|
"200": "object",
|
|
@@ -515,7 +685,7 @@ class MlfoundryArtifactsApi:
|
|
|
515
685
|
def create_artifact_post(
|
|
516
686
|
self, create_artifact_request_dto: CreateArtifactRequestDto, **kwargs
|
|
517
687
|
) -> CreateArtifactResponseDto: # noqa: E501
|
|
518
|
-
"""Create Artifact # noqa: E501
|
|
688
|
+
"""(Deprecated) Create Artifact # noqa: E501
|
|
519
689
|
|
|
520
690
|
This method makes a synchronous HTTP request by default. To make an
|
|
521
691
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -548,7 +718,7 @@ class MlfoundryArtifactsApi:
|
|
|
548
718
|
def create_artifact_post_with_http_info(
|
|
549
719
|
self, create_artifact_request_dto: CreateArtifactRequestDto, **kwargs
|
|
550
720
|
) -> ApiResponse: # noqa: E501
|
|
551
|
-
"""Create Artifact # noqa: E501
|
|
721
|
+
"""(Deprecated) Create Artifact # noqa: E501
|
|
552
722
|
|
|
553
723
|
This method makes a synchronous HTTP request by default. To make an
|
|
554
724
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -583,6 +753,11 @@ class MlfoundryArtifactsApi:
|
|
|
583
753
|
:rtype: tuple(CreateArtifactResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
584
754
|
"""
|
|
585
755
|
|
|
756
|
+
warnings.warn(
|
|
757
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifacts/create is deprecated.",
|
|
758
|
+
DeprecationWarning,
|
|
759
|
+
)
|
|
760
|
+
|
|
586
761
|
_params = locals()
|
|
587
762
|
|
|
588
763
|
_all_params = ["create_artifact_request_dto"]
|
|
@@ -639,7 +814,7 @@ class MlfoundryArtifactsApi:
|
|
|
639
814
|
_header_params["Content-Type"] = _content_types_list
|
|
640
815
|
|
|
641
816
|
# authentication setting
|
|
642
|
-
_auth_settings = ["
|
|
817
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
643
818
|
|
|
644
819
|
_response_types_map = {
|
|
645
820
|
"200": "CreateArtifactResponseDto",
|
|
@@ -671,7 +846,7 @@ class MlfoundryArtifactsApi:
|
|
|
671
846
|
create_artifact_version_request_dto: CreateArtifactVersionRequestDto,
|
|
672
847
|
**kwargs,
|
|
673
848
|
) -> CreateArtifactVersionResponseDto: # noqa: E501
|
|
674
|
-
"""Create Artifact Version # noqa: E501
|
|
849
|
+
"""(Deprecated) Create Artifact Version # noqa: E501
|
|
675
850
|
|
|
676
851
|
Create artifact version API # noqa: E501
|
|
677
852
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -707,7 +882,7 @@ class MlfoundryArtifactsApi:
|
|
|
707
882
|
create_artifact_version_request_dto: CreateArtifactVersionRequestDto,
|
|
708
883
|
**kwargs,
|
|
709
884
|
) -> ApiResponse: # noqa: E501
|
|
710
|
-
"""Create Artifact Version # noqa: E501
|
|
885
|
+
"""(Deprecated) Create Artifact Version # noqa: E501
|
|
711
886
|
|
|
712
887
|
Create artifact version API # noqa: E501
|
|
713
888
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -743,6 +918,11 @@ class MlfoundryArtifactsApi:
|
|
|
743
918
|
:rtype: tuple(CreateArtifactVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
744
919
|
"""
|
|
745
920
|
|
|
921
|
+
warnings.warn(
|
|
922
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/create is deprecated.",
|
|
923
|
+
DeprecationWarning,
|
|
924
|
+
)
|
|
925
|
+
|
|
746
926
|
_params = locals()
|
|
747
927
|
|
|
748
928
|
_all_params = ["create_artifact_version_request_dto"]
|
|
@@ -799,7 +979,7 @@ class MlfoundryArtifactsApi:
|
|
|
799
979
|
_header_params["Content-Type"] = _content_types_list
|
|
800
980
|
|
|
801
981
|
# authentication setting
|
|
802
|
-
_auth_settings = ["
|
|
982
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
803
983
|
|
|
804
984
|
_response_types_map = {
|
|
805
985
|
"200": "CreateArtifactVersionResponseDto",
|
|
@@ -829,7 +1009,7 @@ class MlfoundryArtifactsApi:
|
|
|
829
1009
|
def create_dataset_post(
|
|
830
1010
|
self, create_dataset_request_dto: CreateDatasetRequestDto, **kwargs
|
|
831
1011
|
) -> DatasetResponseDto: # noqa: E501
|
|
832
|
-
"""Create Dataset # noqa: E501
|
|
1012
|
+
"""(Deprecated) Create Dataset # noqa: E501
|
|
833
1013
|
|
|
834
1014
|
This method makes a synchronous HTTP request by default. To make an
|
|
835
1015
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -862,7 +1042,7 @@ class MlfoundryArtifactsApi:
|
|
|
862
1042
|
def create_dataset_post_with_http_info(
|
|
863
1043
|
self, create_dataset_request_dto: CreateDatasetRequestDto, **kwargs
|
|
864
1044
|
) -> ApiResponse: # noqa: E501
|
|
865
|
-
"""Create Dataset # noqa: E501
|
|
1045
|
+
"""(Deprecated) Create Dataset # noqa: E501
|
|
866
1046
|
|
|
867
1047
|
This method makes a synchronous HTTP request by default. To make an
|
|
868
1048
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -897,6 +1077,11 @@ class MlfoundryArtifactsApi:
|
|
|
897
1077
|
:rtype: tuple(DatasetResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
898
1078
|
"""
|
|
899
1079
|
|
|
1080
|
+
warnings.warn(
|
|
1081
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/create is deprecated.",
|
|
1082
|
+
DeprecationWarning,
|
|
1083
|
+
)
|
|
1084
|
+
|
|
900
1085
|
_params = locals()
|
|
901
1086
|
|
|
902
1087
|
_all_params = ["create_dataset_request_dto"]
|
|
@@ -953,7 +1138,7 @@ class MlfoundryArtifactsApi:
|
|
|
953
1138
|
_header_params["Content-Type"] = _content_types_list
|
|
954
1139
|
|
|
955
1140
|
# authentication setting
|
|
956
|
-
_auth_settings = ["
|
|
1141
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
957
1142
|
|
|
958
1143
|
_response_types_map = {
|
|
959
1144
|
"200": "DatasetResponseDto",
|
|
@@ -983,7 +1168,7 @@ class MlfoundryArtifactsApi:
|
|
|
983
1168
|
def create_model_version_post(
|
|
984
1169
|
self, create_model_version_request_dto: CreateModelVersionRequestDto, **kwargs
|
|
985
1170
|
) -> ModelVersionResponseDto: # noqa: E501
|
|
986
|
-
"""Create Model Version # noqa: E501
|
|
1171
|
+
"""(Deprecated) Create Model Version # noqa: E501
|
|
987
1172
|
|
|
988
1173
|
Create Models # noqa: E501
|
|
989
1174
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1017,7 +1202,7 @@ class MlfoundryArtifactsApi:
|
|
|
1017
1202
|
def create_model_version_post_with_http_info(
|
|
1018
1203
|
self, create_model_version_request_dto: CreateModelVersionRequestDto, **kwargs
|
|
1019
1204
|
) -> ApiResponse: # noqa: E501
|
|
1020
|
-
"""Create Model Version # noqa: E501
|
|
1205
|
+
"""(Deprecated) Create Model Version # noqa: E501
|
|
1021
1206
|
|
|
1022
1207
|
Create Models # noqa: E501
|
|
1023
1208
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1053,6 +1238,11 @@ class MlfoundryArtifactsApi:
|
|
|
1053
1238
|
:rtype: tuple(ModelVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
1054
1239
|
"""
|
|
1055
1240
|
|
|
1241
|
+
warnings.warn(
|
|
1242
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/model-versions/create is deprecated.",
|
|
1243
|
+
DeprecationWarning,
|
|
1244
|
+
)
|
|
1245
|
+
|
|
1056
1246
|
_params = locals()
|
|
1057
1247
|
|
|
1058
1248
|
_all_params = ["create_model_version_request_dto"]
|
|
@@ -1109,7 +1299,7 @@ class MlfoundryArtifactsApi:
|
|
|
1109
1299
|
_header_params["Content-Type"] = _content_types_list
|
|
1110
1300
|
|
|
1111
1301
|
# authentication setting
|
|
1112
|
-
_auth_settings = ["
|
|
1302
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1113
1303
|
|
|
1114
1304
|
_response_types_map = {
|
|
1115
1305
|
"200": "ModelVersionResponseDto",
|
|
@@ -1141,7 +1331,7 @@ class MlfoundryArtifactsApi:
|
|
|
1141
1331
|
create_multi_part_upload_request_dto: CreateMultiPartUploadRequestDto,
|
|
1142
1332
|
**kwargs,
|
|
1143
1333
|
) -> MultiPartUploadResponseDto: # noqa: E501
|
|
1144
|
-
"""Create Multi Part Upload # noqa: E501
|
|
1334
|
+
"""(Deprecated) Create Multi Part Upload # noqa: E501
|
|
1145
1335
|
|
|
1146
1336
|
This method makes a synchronous HTTP request by default. To make an
|
|
1147
1337
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1176,7 +1366,7 @@ class MlfoundryArtifactsApi:
|
|
|
1176
1366
|
create_multi_part_upload_request_dto: CreateMultiPartUploadRequestDto,
|
|
1177
1367
|
**kwargs,
|
|
1178
1368
|
) -> ApiResponse: # noqa: E501
|
|
1179
|
-
"""Create Multi Part Upload # noqa: E501
|
|
1369
|
+
"""(Deprecated) Create Multi Part Upload # noqa: E501
|
|
1180
1370
|
|
|
1181
1371
|
This method makes a synchronous HTTP request by default. To make an
|
|
1182
1372
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1211,6 +1401,11 @@ class MlfoundryArtifactsApi:
|
|
|
1211
1401
|
:rtype: tuple(MultiPartUploadResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
1212
1402
|
"""
|
|
1213
1403
|
|
|
1404
|
+
warnings.warn(
|
|
1405
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/multi-part-upload/create is deprecated.",
|
|
1406
|
+
DeprecationWarning,
|
|
1407
|
+
)
|
|
1408
|
+
|
|
1214
1409
|
_params = locals()
|
|
1215
1410
|
|
|
1216
1411
|
_all_params = ["create_multi_part_upload_request_dto"]
|
|
@@ -1267,7 +1462,7 @@ class MlfoundryArtifactsApi:
|
|
|
1267
1462
|
_header_params["Content-Type"] = _content_types_list
|
|
1268
1463
|
|
|
1269
1464
|
# authentication setting
|
|
1270
|
-
_auth_settings = ["
|
|
1465
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1271
1466
|
|
|
1272
1467
|
_response_types_map = {
|
|
1273
1468
|
"200": "MultiPartUploadResponseDto",
|
|
@@ -1299,7 +1494,7 @@ class MlfoundryArtifactsApi:
|
|
|
1299
1494
|
create_multi_part_upload_for_dataset_request_dto: CreateMultiPartUploadForDatasetRequestDto,
|
|
1300
1495
|
**kwargs,
|
|
1301
1496
|
) -> CreateMultiPartUploadForDatasetResponseDto: # noqa: E501
|
|
1302
|
-
"""Create Multipart Upload For Dataset # noqa: E501
|
|
1497
|
+
"""(Deprecated) Create Multipart Upload For Dataset # noqa: E501
|
|
1303
1498
|
|
|
1304
1499
|
This method makes a synchronous HTTP request by default. To make an
|
|
1305
1500
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1334,7 +1529,7 @@ class MlfoundryArtifactsApi:
|
|
|
1334
1529
|
create_multi_part_upload_for_dataset_request_dto: CreateMultiPartUploadForDatasetRequestDto,
|
|
1335
1530
|
**kwargs,
|
|
1336
1531
|
) -> ApiResponse: # noqa: E501
|
|
1337
|
-
"""Create Multipart Upload For Dataset # noqa: E501
|
|
1532
|
+
"""(Deprecated) Create Multipart Upload For Dataset # noqa: E501
|
|
1338
1533
|
|
|
1339
1534
|
This method makes a synchronous HTTP request by default. To make an
|
|
1340
1535
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1369,6 +1564,11 @@ class MlfoundryArtifactsApi:
|
|
|
1369
1564
|
:rtype: tuple(CreateMultiPartUploadForDatasetResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
1370
1565
|
"""
|
|
1371
1566
|
|
|
1567
|
+
warnings.warn(
|
|
1568
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/multi-part-upload/create is deprecated.",
|
|
1569
|
+
DeprecationWarning,
|
|
1570
|
+
)
|
|
1571
|
+
|
|
1372
1572
|
_params = locals()
|
|
1373
1573
|
|
|
1374
1574
|
_all_params = ["create_multi_part_upload_for_dataset_request_dto"]
|
|
@@ -1425,7 +1625,7 @@ class MlfoundryArtifactsApi:
|
|
|
1425
1625
|
_header_params["Content-Type"] = _content_types_list
|
|
1426
1626
|
|
|
1427
1627
|
# authentication setting
|
|
1428
|
-
_auth_settings = ["
|
|
1628
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1429
1629
|
|
|
1430
1630
|
_response_types_map = {
|
|
1431
1631
|
"200": "CreateMultiPartUploadForDatasetResponseDto",
|
|
@@ -1455,7 +1655,7 @@ class MlfoundryArtifactsApi:
|
|
|
1455
1655
|
def delete_artifact_post(
|
|
1456
1656
|
self, delete_model_version_request_dto: DeleteModelVersionRequestDto, **kwargs
|
|
1457
1657
|
) -> object: # noqa: E501
|
|
1458
|
-
"""Delete Artifact # noqa: E501
|
|
1658
|
+
"""(Deprecated) Delete Artifact # noqa: E501
|
|
1459
1659
|
|
|
1460
1660
|
This method makes a synchronous HTTP request by default. To make an
|
|
1461
1661
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1488,7 +1688,7 @@ class MlfoundryArtifactsApi:
|
|
|
1488
1688
|
def delete_artifact_post_with_http_info(
|
|
1489
1689
|
self, delete_model_version_request_dto: DeleteModelVersionRequestDto, **kwargs
|
|
1490
1690
|
) -> ApiResponse: # noqa: E501
|
|
1491
|
-
"""Delete Artifact # noqa: E501
|
|
1691
|
+
"""(Deprecated) Delete Artifact # noqa: E501
|
|
1492
1692
|
|
|
1493
1693
|
This method makes a synchronous HTTP request by default. To make an
|
|
1494
1694
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1523,6 +1723,11 @@ class MlfoundryArtifactsApi:
|
|
|
1523
1723
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
1524
1724
|
"""
|
|
1525
1725
|
|
|
1726
|
+
warnings.warn(
|
|
1727
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact/delete is deprecated.",
|
|
1728
|
+
DeprecationWarning,
|
|
1729
|
+
)
|
|
1730
|
+
|
|
1526
1731
|
_params = locals()
|
|
1527
1732
|
|
|
1528
1733
|
_all_params = ["delete_model_version_request_dto"]
|
|
@@ -1579,7 +1784,7 @@ class MlfoundryArtifactsApi:
|
|
|
1579
1784
|
_header_params["Content-Type"] = _content_types_list
|
|
1580
1785
|
|
|
1581
1786
|
# authentication setting
|
|
1582
|
-
_auth_settings = ["
|
|
1787
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1583
1788
|
|
|
1584
1789
|
_response_types_map = {
|
|
1585
1790
|
"200": "object",
|
|
@@ -1611,7 +1816,7 @@ class MlfoundryArtifactsApi:
|
|
|
1611
1816
|
delete_artifact_versions_request_dto: DeleteArtifactVersionsRequestDto,
|
|
1612
1817
|
**kwargs,
|
|
1613
1818
|
) -> object: # noqa: E501
|
|
1614
|
-
"""Delete Artifact Version # noqa: E501
|
|
1819
|
+
"""(Deprecated) Delete Artifact Version # noqa: E501
|
|
1615
1820
|
|
|
1616
1821
|
This method makes a synchronous HTTP request by default. To make an
|
|
1617
1822
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1646,7 +1851,7 @@ class MlfoundryArtifactsApi:
|
|
|
1646
1851
|
delete_artifact_versions_request_dto: DeleteArtifactVersionsRequestDto,
|
|
1647
1852
|
**kwargs,
|
|
1648
1853
|
) -> ApiResponse: # noqa: E501
|
|
1649
|
-
"""Delete Artifact Version # noqa: E501
|
|
1854
|
+
"""(Deprecated) Delete Artifact Version # noqa: E501
|
|
1650
1855
|
|
|
1651
1856
|
This method makes a synchronous HTTP request by default. To make an
|
|
1652
1857
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1681,6 +1886,11 @@ class MlfoundryArtifactsApi:
|
|
|
1681
1886
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
1682
1887
|
"""
|
|
1683
1888
|
|
|
1889
|
+
warnings.warn(
|
|
1890
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/delete is deprecated.",
|
|
1891
|
+
DeprecationWarning,
|
|
1892
|
+
)
|
|
1893
|
+
|
|
1684
1894
|
_params = locals()
|
|
1685
1895
|
|
|
1686
1896
|
_all_params = ["delete_artifact_versions_request_dto"]
|
|
@@ -1737,7 +1947,7 @@ class MlfoundryArtifactsApi:
|
|
|
1737
1947
|
_header_params["Content-Type"] = _content_types_list
|
|
1738
1948
|
|
|
1739
1949
|
# authentication setting
|
|
1740
|
-
_auth_settings = ["
|
|
1950
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1741
1951
|
|
|
1742
1952
|
_response_types_map = {
|
|
1743
1953
|
"200": "object",
|
|
@@ -1767,7 +1977,7 @@ class MlfoundryArtifactsApi:
|
|
|
1767
1977
|
def delete_dataset_post(
|
|
1768
1978
|
self, delete_dataset_request_dto: DeleteDatasetRequestDto, **kwargs
|
|
1769
1979
|
) -> object: # noqa: E501
|
|
1770
|
-
"""Delete Dataset # noqa: E501
|
|
1980
|
+
"""(Deprecated) Delete Dataset # noqa: E501
|
|
1771
1981
|
|
|
1772
1982
|
This method makes a synchronous HTTP request by default. To make an
|
|
1773
1983
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1800,7 +2010,7 @@ class MlfoundryArtifactsApi:
|
|
|
1800
2010
|
def delete_dataset_post_with_http_info(
|
|
1801
2011
|
self, delete_dataset_request_dto: DeleteDatasetRequestDto, **kwargs
|
|
1802
2012
|
) -> ApiResponse: # noqa: E501
|
|
1803
|
-
"""Delete Dataset # noqa: E501
|
|
2013
|
+
"""(Deprecated) Delete Dataset # noqa: E501
|
|
1804
2014
|
|
|
1805
2015
|
This method makes a synchronous HTTP request by default. To make an
|
|
1806
2016
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1835,6 +2045,11 @@ class MlfoundryArtifactsApi:
|
|
|
1835
2045
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
1836
2046
|
"""
|
|
1837
2047
|
|
|
2048
|
+
warnings.warn(
|
|
2049
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/delete is deprecated.",
|
|
2050
|
+
DeprecationWarning,
|
|
2051
|
+
)
|
|
2052
|
+
|
|
1838
2053
|
_params = locals()
|
|
1839
2054
|
|
|
1840
2055
|
_all_params = ["delete_dataset_request_dto"]
|
|
@@ -1891,7 +2106,7 @@ class MlfoundryArtifactsApi:
|
|
|
1891
2106
|
_header_params["Content-Type"] = _content_types_list
|
|
1892
2107
|
|
|
1893
2108
|
# authentication setting
|
|
1894
|
-
_auth_settings = ["
|
|
2109
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1895
2110
|
|
|
1896
2111
|
_response_types_map = {
|
|
1897
2112
|
"200": "object",
|
|
@@ -1923,7 +2138,7 @@ class MlfoundryArtifactsApi:
|
|
|
1923
2138
|
delete_files_for_dataset_request_dto: DeleteFilesForDatasetRequestDto,
|
|
1924
2139
|
**kwargs,
|
|
1925
2140
|
) -> object: # noqa: E501
|
|
1926
|
-
"""Delete Files For Dataset # noqa: E501
|
|
2141
|
+
"""(Deprecated) Delete Files For Dataset # noqa: E501
|
|
1927
2142
|
|
|
1928
2143
|
Delete files from the dataset. # noqa: E501
|
|
1929
2144
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1959,7 +2174,7 @@ class MlfoundryArtifactsApi:
|
|
|
1959
2174
|
delete_files_for_dataset_request_dto: DeleteFilesForDatasetRequestDto,
|
|
1960
2175
|
**kwargs,
|
|
1961
2176
|
) -> ApiResponse: # noqa: E501
|
|
1962
|
-
"""Delete Files For Dataset # noqa: E501
|
|
2177
|
+
"""(Deprecated) Delete Files For Dataset # noqa: E501
|
|
1963
2178
|
|
|
1964
2179
|
Delete files from the dataset. # noqa: E501
|
|
1965
2180
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1995,6 +2210,11 @@ class MlfoundryArtifactsApi:
|
|
|
1995
2210
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
1996
2211
|
"""
|
|
1997
2212
|
|
|
2213
|
+
warnings.warn(
|
|
2214
|
+
"DELETE /api/2.0/mlflow/mlfoundry-artifacts/datasets/files/ is deprecated.",
|
|
2215
|
+
DeprecationWarning,
|
|
2216
|
+
)
|
|
2217
|
+
|
|
1998
2218
|
_params = locals()
|
|
1999
2219
|
|
|
2000
2220
|
_all_params = ["delete_files_for_dataset_request_dto"]
|
|
@@ -2051,7 +2271,7 @@ class MlfoundryArtifactsApi:
|
|
|
2051
2271
|
_header_params["Content-Type"] = _content_types_list
|
|
2052
2272
|
|
|
2053
2273
|
# authentication setting
|
|
2054
|
-
_auth_settings = ["
|
|
2274
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
2055
2275
|
|
|
2056
2276
|
_response_types_map = {
|
|
2057
2277
|
"200": "object",
|
|
@@ -2081,7 +2301,7 @@ class MlfoundryArtifactsApi:
|
|
|
2081
2301
|
def delete_model_version_post(
|
|
2082
2302
|
self, delete_model_version_request_dto: DeleteModelVersionRequestDto, **kwargs
|
|
2083
2303
|
) -> object: # noqa: E501
|
|
2084
|
-
"""Delete Model Version # noqa: E501
|
|
2304
|
+
"""(Deprecated) Delete Model Version # noqa: E501
|
|
2085
2305
|
|
|
2086
2306
|
This method makes a synchronous HTTP request by default. To make an
|
|
2087
2307
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2114,7 +2334,7 @@ class MlfoundryArtifactsApi:
|
|
|
2114
2334
|
def delete_model_version_post_with_http_info(
|
|
2115
2335
|
self, delete_model_version_request_dto: DeleteModelVersionRequestDto, **kwargs
|
|
2116
2336
|
) -> ApiResponse: # noqa: E501
|
|
2117
|
-
"""Delete Model Version # noqa: E501
|
|
2337
|
+
"""(Deprecated) Delete Model Version # noqa: E501
|
|
2118
2338
|
|
|
2119
2339
|
This method makes a synchronous HTTP request by default. To make an
|
|
2120
2340
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2149,6 +2369,11 @@ class MlfoundryArtifactsApi:
|
|
|
2149
2369
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
2150
2370
|
"""
|
|
2151
2371
|
|
|
2372
|
+
warnings.warn(
|
|
2373
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/model-versions/delete is deprecated.",
|
|
2374
|
+
DeprecationWarning,
|
|
2375
|
+
)
|
|
2376
|
+
|
|
2152
2377
|
_params = locals()
|
|
2153
2378
|
|
|
2154
2379
|
_all_params = ["delete_model_version_request_dto"]
|
|
@@ -2205,7 +2430,7 @@ class MlfoundryArtifactsApi:
|
|
|
2205
2430
|
_header_params["Content-Type"] = _content_types_list
|
|
2206
2431
|
|
|
2207
2432
|
# authentication setting
|
|
2208
|
-
_auth_settings = ["
|
|
2433
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
2209
2434
|
|
|
2210
2435
|
_response_types_map = {
|
|
2211
2436
|
"200": "object",
|
|
@@ -2237,7 +2462,7 @@ class MlfoundryArtifactsApi:
|
|
|
2237
2462
|
export_deployment_files_request_dto: ExportDeploymentFilesRequestDto,
|
|
2238
2463
|
**kwargs,
|
|
2239
2464
|
) -> object: # noqa: E501
|
|
2240
|
-
"""Export Deployment Files By Fqn # noqa: E501
|
|
2465
|
+
"""(Deprecated) Export Deployment Files By Fqn # noqa: E501
|
|
2241
2466
|
|
|
2242
2467
|
This method makes a synchronous HTTP request by default. To make an
|
|
2243
2468
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2272,7 +2497,7 @@ class MlfoundryArtifactsApi:
|
|
|
2272
2497
|
export_deployment_files_request_dto: ExportDeploymentFilesRequestDto,
|
|
2273
2498
|
**kwargs,
|
|
2274
2499
|
) -> ApiResponse: # noqa: E501
|
|
2275
|
-
"""Export Deployment Files By Fqn # noqa: E501
|
|
2500
|
+
"""(Deprecated) Export Deployment Files By Fqn # noqa: E501
|
|
2276
2501
|
|
|
2277
2502
|
This method makes a synchronous HTTP request by default. To make an
|
|
2278
2503
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2307,6 +2532,11 @@ class MlfoundryArtifactsApi:
|
|
|
2307
2532
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
2308
2533
|
"""
|
|
2309
2534
|
|
|
2535
|
+
warnings.warn(
|
|
2536
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/model-versions/export-deployment-files-by-fqn is deprecated.",
|
|
2537
|
+
DeprecationWarning,
|
|
2538
|
+
)
|
|
2539
|
+
|
|
2310
2540
|
_params = locals()
|
|
2311
2541
|
|
|
2312
2542
|
_all_params = ["export_deployment_files_request_dto"]
|
|
@@ -2363,7 +2593,7 @@ class MlfoundryArtifactsApi:
|
|
|
2363
2593
|
_header_params["Content-Type"] = _content_types_list
|
|
2364
2594
|
|
|
2365
2595
|
# authentication setting
|
|
2366
|
-
_auth_settings = ["
|
|
2596
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
2367
2597
|
|
|
2368
2598
|
_response_types_map = {
|
|
2369
2599
|
"200": "object",
|
|
@@ -2395,7 +2625,7 @@ class MlfoundryArtifactsApi:
|
|
|
2395
2625
|
finalize_artifact_version_request_dto: FinalizeArtifactVersionRequestDto,
|
|
2396
2626
|
**kwargs,
|
|
2397
2627
|
) -> ArtifactVersionResponseDto: # noqa: E501
|
|
2398
|
-
"""Finalize Artifact Version # noqa: E501
|
|
2628
|
+
"""(Deprecated) Finalize Artifact Version # noqa: E501
|
|
2399
2629
|
|
|
2400
2630
|
This method makes a synchronous HTTP request by default. To make an
|
|
2401
2631
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2430,7 +2660,7 @@ class MlfoundryArtifactsApi:
|
|
|
2430
2660
|
finalize_artifact_version_request_dto: FinalizeArtifactVersionRequestDto,
|
|
2431
2661
|
**kwargs,
|
|
2432
2662
|
) -> ApiResponse: # noqa: E501
|
|
2433
|
-
"""Finalize Artifact Version # noqa: E501
|
|
2663
|
+
"""(Deprecated) Finalize Artifact Version # noqa: E501
|
|
2434
2664
|
|
|
2435
2665
|
This method makes a synchronous HTTP request by default. To make an
|
|
2436
2666
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2465,6 +2695,11 @@ class MlfoundryArtifactsApi:
|
|
|
2465
2695
|
:rtype: tuple(ArtifactVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
2466
2696
|
"""
|
|
2467
2697
|
|
|
2698
|
+
warnings.warn(
|
|
2699
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/finalize is deprecated.",
|
|
2700
|
+
DeprecationWarning,
|
|
2701
|
+
)
|
|
2702
|
+
|
|
2468
2703
|
_params = locals()
|
|
2469
2704
|
|
|
2470
2705
|
_all_params = ["finalize_artifact_version_request_dto"]
|
|
@@ -2521,7 +2756,7 @@ class MlfoundryArtifactsApi:
|
|
|
2521
2756
|
_header_params["Content-Type"] = _content_types_list
|
|
2522
2757
|
|
|
2523
2758
|
# authentication setting
|
|
2524
|
-
_auth_settings = ["
|
|
2759
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
2525
2760
|
|
|
2526
2761
|
_response_types_map = {
|
|
2527
2762
|
"200": "ArtifactVersionResponseDto",
|
|
@@ -2549,7 +2784,7 @@ class MlfoundryArtifactsApi:
|
|
|
2549
2784
|
|
|
2550
2785
|
@validate_arguments
|
|
2551
2786
|
def get_artifact_by_fqn_get(self, fqn: StrictStr, **kwargs) -> ArtifactResponseDto: # noqa: E501
|
|
2552
|
-
"""Get Artifact By Fqn # noqa: E501
|
|
2787
|
+
"""(Deprecated) Get Artifact By Fqn # noqa: E501
|
|
2553
2788
|
|
|
2554
2789
|
This method makes a synchronous HTTP request by default. To make an
|
|
2555
2790
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2580,7 +2815,7 @@ class MlfoundryArtifactsApi:
|
|
|
2580
2815
|
def get_artifact_by_fqn_get_with_http_info(
|
|
2581
2816
|
self, fqn: StrictStr, **kwargs
|
|
2582
2817
|
) -> ApiResponse: # noqa: E501
|
|
2583
|
-
"""Get Artifact By Fqn # noqa: E501
|
|
2818
|
+
"""(Deprecated) Get Artifact By Fqn # noqa: E501
|
|
2584
2819
|
|
|
2585
2820
|
This method makes a synchronous HTTP request by default. To make an
|
|
2586
2821
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2615,6 +2850,11 @@ class MlfoundryArtifactsApi:
|
|
|
2615
2850
|
:rtype: tuple(ArtifactResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
2616
2851
|
"""
|
|
2617
2852
|
|
|
2853
|
+
warnings.warn(
|
|
2854
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/artifacts/get-by-fqn is deprecated.",
|
|
2855
|
+
DeprecationWarning,
|
|
2856
|
+
)
|
|
2857
|
+
|
|
2618
2858
|
_params = locals()
|
|
2619
2859
|
|
|
2620
2860
|
_all_params = ["fqn"]
|
|
@@ -2663,7 +2903,7 @@ class MlfoundryArtifactsApi:
|
|
|
2663
2903
|
) # noqa: E501
|
|
2664
2904
|
|
|
2665
2905
|
# authentication setting
|
|
2666
|
-
_auth_settings = ["
|
|
2906
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
2667
2907
|
|
|
2668
2908
|
_response_types_map = {
|
|
2669
2909
|
"200": "ArtifactResponseDto",
|
|
@@ -2691,7 +2931,7 @@ class MlfoundryArtifactsApi:
|
|
|
2691
2931
|
|
|
2692
2932
|
@validate_arguments
|
|
2693
2933
|
def get_artifact_by_id_get(self, id: StrictStr, **kwargs) -> ArtifactResponseDto: # noqa: E501
|
|
2694
|
-
"""Get Artifact By Id # noqa: E501
|
|
2934
|
+
"""(Deprecated) Get Artifact By Id # noqa: E501
|
|
2695
2935
|
|
|
2696
2936
|
This method makes a synchronous HTTP request by default. To make an
|
|
2697
2937
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2722,7 +2962,7 @@ class MlfoundryArtifactsApi:
|
|
|
2722
2962
|
def get_artifact_by_id_get_with_http_info(
|
|
2723
2963
|
self, id: StrictStr, **kwargs
|
|
2724
2964
|
) -> ApiResponse: # noqa: E501
|
|
2725
|
-
"""Get Artifact By Id # noqa: E501
|
|
2965
|
+
"""(Deprecated) Get Artifact By Id # noqa: E501
|
|
2726
2966
|
|
|
2727
2967
|
This method makes a synchronous HTTP request by default. To make an
|
|
2728
2968
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2757,6 +2997,11 @@ class MlfoundryArtifactsApi:
|
|
|
2757
2997
|
:rtype: tuple(ArtifactResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
2758
2998
|
"""
|
|
2759
2999
|
|
|
3000
|
+
warnings.warn(
|
|
3001
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/artifacts/get is deprecated.",
|
|
3002
|
+
DeprecationWarning,
|
|
3003
|
+
)
|
|
3004
|
+
|
|
2760
3005
|
_params = locals()
|
|
2761
3006
|
|
|
2762
3007
|
_all_params = ["id"]
|
|
@@ -2805,7 +3050,7 @@ class MlfoundryArtifactsApi:
|
|
|
2805
3050
|
) # noqa: E501
|
|
2806
3051
|
|
|
2807
3052
|
# authentication setting
|
|
2808
|
-
_auth_settings = ["
|
|
3053
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
2809
3054
|
|
|
2810
3055
|
_response_types_map = {
|
|
2811
3056
|
"200": "ArtifactResponseDto",
|
|
@@ -2835,7 +3080,7 @@ class MlfoundryArtifactsApi:
|
|
|
2835
3080
|
def get_artifact_version_by_fqn_get(
|
|
2836
3081
|
self, fqn: StrictStr, **kwargs
|
|
2837
3082
|
) -> ArtifactVersionResponseDto: # noqa: E501
|
|
2838
|
-
"""Get Artifact Version By Fqn # noqa: E501
|
|
3083
|
+
"""(Deprecated) Get Artifact Version By Fqn # noqa: E501
|
|
2839
3084
|
|
|
2840
3085
|
This method makes a synchronous HTTP request by default. To make an
|
|
2841
3086
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2866,7 +3111,7 @@ class MlfoundryArtifactsApi:
|
|
|
2866
3111
|
def get_artifact_version_by_fqn_get_with_http_info(
|
|
2867
3112
|
self, fqn: StrictStr, **kwargs
|
|
2868
3113
|
) -> ApiResponse: # noqa: E501
|
|
2869
|
-
"""Get Artifact Version By Fqn # noqa: E501
|
|
3114
|
+
"""(Deprecated) Get Artifact Version By Fqn # noqa: E501
|
|
2870
3115
|
|
|
2871
3116
|
This method makes a synchronous HTTP request by default. To make an
|
|
2872
3117
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2901,6 +3146,11 @@ class MlfoundryArtifactsApi:
|
|
|
2901
3146
|
:rtype: tuple(ArtifactVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
2902
3147
|
"""
|
|
2903
3148
|
|
|
3149
|
+
warnings.warn(
|
|
3150
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-by-fqn is deprecated.",
|
|
3151
|
+
DeprecationWarning,
|
|
3152
|
+
)
|
|
3153
|
+
|
|
2904
3154
|
_params = locals()
|
|
2905
3155
|
|
|
2906
3156
|
_all_params = ["fqn"]
|
|
@@ -2949,7 +3199,7 @@ class MlfoundryArtifactsApi:
|
|
|
2949
3199
|
) # noqa: E501
|
|
2950
3200
|
|
|
2951
3201
|
# authentication setting
|
|
2952
|
-
_auth_settings = ["
|
|
3202
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
2953
3203
|
|
|
2954
3204
|
_response_types_map = {
|
|
2955
3205
|
"200": "ArtifactVersionResponseDto",
|
|
@@ -2979,7 +3229,7 @@ class MlfoundryArtifactsApi:
|
|
|
2979
3229
|
def get_artifact_version_by_id_get(
|
|
2980
3230
|
self, id: StrictStr, **kwargs
|
|
2981
3231
|
) -> ArtifactVersionResponseDto: # noqa: E501
|
|
2982
|
-
"""Get Artifact Version By Id # noqa: E501
|
|
3232
|
+
"""(Deprecated) Get Artifact Version By Id # noqa: E501
|
|
2983
3233
|
|
|
2984
3234
|
This method makes a synchronous HTTP request by default. To make an
|
|
2985
3235
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3010,7 +3260,7 @@ class MlfoundryArtifactsApi:
|
|
|
3010
3260
|
def get_artifact_version_by_id_get_with_http_info(
|
|
3011
3261
|
self, id: StrictStr, **kwargs
|
|
3012
3262
|
) -> ApiResponse: # noqa: E501
|
|
3013
|
-
"""Get Artifact Version By Id # noqa: E501
|
|
3263
|
+
"""(Deprecated) Get Artifact Version By Id # noqa: E501
|
|
3014
3264
|
|
|
3015
3265
|
This method makes a synchronous HTTP request by default. To make an
|
|
3016
3266
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3045,6 +3295,11 @@ class MlfoundryArtifactsApi:
|
|
|
3045
3295
|
:rtype: tuple(ArtifactVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
3046
3296
|
"""
|
|
3047
3297
|
|
|
3298
|
+
warnings.warn(
|
|
3299
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get is deprecated.",
|
|
3300
|
+
DeprecationWarning,
|
|
3301
|
+
)
|
|
3302
|
+
|
|
3048
3303
|
_params = locals()
|
|
3049
3304
|
|
|
3050
3305
|
_all_params = ["id"]
|
|
@@ -3093,7 +3348,7 @@ class MlfoundryArtifactsApi:
|
|
|
3093
3348
|
) # noqa: E501
|
|
3094
3349
|
|
|
3095
3350
|
# authentication setting
|
|
3096
|
-
_auth_settings = ["
|
|
3351
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
3097
3352
|
|
|
3098
3353
|
_response_types_map = {
|
|
3099
3354
|
"200": "ArtifactVersionResponseDto",
|
|
@@ -3128,7 +3383,7 @@ class MlfoundryArtifactsApi:
|
|
|
3128
3383
|
artifact_type: Optional[ArtifactType] = None,
|
|
3129
3384
|
**kwargs,
|
|
3130
3385
|
) -> ArtifactVersionResponseDto: # noqa: E501
|
|
3131
|
-
"""Get Artifact Version By Name # noqa: E501
|
|
3386
|
+
"""(Deprecated) Get Artifact Version By Name # noqa: E501
|
|
3132
3387
|
|
|
3133
3388
|
Get artifact version API # noqa: E501
|
|
3134
3389
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -3173,7 +3428,7 @@ class MlfoundryArtifactsApi:
|
|
|
3173
3428
|
artifact_type: Optional[ArtifactType] = None,
|
|
3174
3429
|
**kwargs,
|
|
3175
3430
|
) -> ApiResponse: # noqa: E501
|
|
3176
|
-
"""Get Artifact Version By Name # noqa: E501
|
|
3431
|
+
"""(Deprecated) Get Artifact Version By Name # noqa: E501
|
|
3177
3432
|
|
|
3178
3433
|
Get artifact version API # noqa: E501
|
|
3179
3434
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -3215,6 +3470,11 @@ class MlfoundryArtifactsApi:
|
|
|
3215
3470
|
:rtype: tuple(ArtifactVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
3216
3471
|
"""
|
|
3217
3472
|
|
|
3473
|
+
warnings.warn(
|
|
3474
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-by-name is deprecated.",
|
|
3475
|
+
DeprecationWarning,
|
|
3476
|
+
)
|
|
3477
|
+
|
|
3218
3478
|
_params = locals()
|
|
3219
3479
|
|
|
3220
3480
|
_all_params = ["experiment_id", "artifact_name", "version", "artifact_type"]
|
|
@@ -3272,7 +3532,7 @@ class MlfoundryArtifactsApi:
|
|
|
3272
3532
|
) # noqa: E501
|
|
3273
3533
|
|
|
3274
3534
|
# authentication setting
|
|
3275
|
-
_auth_settings = ["
|
|
3535
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
3276
3536
|
|
|
3277
3537
|
_response_types_map = {
|
|
3278
3538
|
"200": "ArtifactVersionResponseDto",
|
|
@@ -3300,7 +3560,7 @@ class MlfoundryArtifactsApi:
|
|
|
3300
3560
|
|
|
3301
3561
|
@validate_arguments
|
|
3302
3562
|
def get_dataset_by_fqn_get(self, fqn: StrictStr, **kwargs) -> DatasetResponseDto: # noqa: E501
|
|
3303
|
-
"""Get Dataset By Fqn # noqa: E501
|
|
3563
|
+
"""(Deprecated) Get Dataset By Fqn # noqa: E501
|
|
3304
3564
|
|
|
3305
3565
|
This method makes a synchronous HTTP request by default. To make an
|
|
3306
3566
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3331,7 +3591,7 @@ class MlfoundryArtifactsApi:
|
|
|
3331
3591
|
def get_dataset_by_fqn_get_with_http_info(
|
|
3332
3592
|
self, fqn: StrictStr, **kwargs
|
|
3333
3593
|
) -> ApiResponse: # noqa: E501
|
|
3334
|
-
"""Get Dataset By Fqn # noqa: E501
|
|
3594
|
+
"""(Deprecated) Get Dataset By Fqn # noqa: E501
|
|
3335
3595
|
|
|
3336
3596
|
This method makes a synchronous HTTP request by default. To make an
|
|
3337
3597
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3366,6 +3626,11 @@ class MlfoundryArtifactsApi:
|
|
|
3366
3626
|
:rtype: tuple(DatasetResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
3367
3627
|
"""
|
|
3368
3628
|
|
|
3629
|
+
warnings.warn(
|
|
3630
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/datasets/get-by-fqn is deprecated.",
|
|
3631
|
+
DeprecationWarning,
|
|
3632
|
+
)
|
|
3633
|
+
|
|
3369
3634
|
_params = locals()
|
|
3370
3635
|
|
|
3371
3636
|
_all_params = ["fqn"]
|
|
@@ -3414,7 +3679,7 @@ class MlfoundryArtifactsApi:
|
|
|
3414
3679
|
) # noqa: E501
|
|
3415
3680
|
|
|
3416
3681
|
# authentication setting
|
|
3417
|
-
_auth_settings = ["
|
|
3682
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
3418
3683
|
|
|
3419
3684
|
_response_types_map = {
|
|
3420
3685
|
"200": "DatasetResponseDto",
|
|
@@ -3442,7 +3707,7 @@ class MlfoundryArtifactsApi:
|
|
|
3442
3707
|
|
|
3443
3708
|
@validate_arguments
|
|
3444
3709
|
def get_dataset_get(self, id: StrictStr, **kwargs) -> DatasetResponseDto: # noqa: E501
|
|
3445
|
-
"""Get Dataset # noqa: E501
|
|
3710
|
+
"""(Deprecated) Get Dataset # noqa: E501
|
|
3446
3711
|
|
|
3447
3712
|
This method makes a synchronous HTTP request by default. To make an
|
|
3448
3713
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3471,7 +3736,7 @@ class MlfoundryArtifactsApi:
|
|
|
3471
3736
|
|
|
3472
3737
|
@validate_arguments
|
|
3473
3738
|
def get_dataset_get_with_http_info(self, id: StrictStr, **kwargs) -> ApiResponse: # noqa: E501
|
|
3474
|
-
"""Get Dataset # noqa: E501
|
|
3739
|
+
"""(Deprecated) Get Dataset # noqa: E501
|
|
3475
3740
|
|
|
3476
3741
|
This method makes a synchronous HTTP request by default. To make an
|
|
3477
3742
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3506,6 +3771,11 @@ class MlfoundryArtifactsApi:
|
|
|
3506
3771
|
:rtype: tuple(DatasetResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
3507
3772
|
"""
|
|
3508
3773
|
|
|
3774
|
+
warnings.warn(
|
|
3775
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/datasets/get is deprecated.",
|
|
3776
|
+
DeprecationWarning,
|
|
3777
|
+
)
|
|
3778
|
+
|
|
3509
3779
|
_params = locals()
|
|
3510
3780
|
|
|
3511
3781
|
_all_params = ["id"]
|
|
@@ -3554,7 +3824,7 @@ class MlfoundryArtifactsApi:
|
|
|
3554
3824
|
) # noqa: E501
|
|
3555
3825
|
|
|
3556
3826
|
# authentication setting
|
|
3557
|
-
_auth_settings = ["
|
|
3827
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
3558
3828
|
|
|
3559
3829
|
_response_types_map = {
|
|
3560
3830
|
"200": "DatasetResponseDto",
|
|
@@ -3582,7 +3852,7 @@ class MlfoundryArtifactsApi:
|
|
|
3582
3852
|
|
|
3583
3853
|
@validate_arguments
|
|
3584
3854
|
def get_model_by_fqn_get(self, fqn: StrictStr, **kwargs) -> ModelResponseDto: # noqa: E501
|
|
3585
|
-
"""Get Model By Fqn # noqa: E501
|
|
3855
|
+
"""(Deprecated) Get Model By Fqn # noqa: E501
|
|
3586
3856
|
|
|
3587
3857
|
This method makes a synchronous HTTP request by default. To make an
|
|
3588
3858
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3613,7 +3883,7 @@ class MlfoundryArtifactsApi:
|
|
|
3613
3883
|
def get_model_by_fqn_get_with_http_info(
|
|
3614
3884
|
self, fqn: StrictStr, **kwargs
|
|
3615
3885
|
) -> ApiResponse: # noqa: E501
|
|
3616
|
-
"""Get Model By Fqn # noqa: E501
|
|
3886
|
+
"""(Deprecated) Get Model By Fqn # noqa: E501
|
|
3617
3887
|
|
|
3618
3888
|
This method makes a synchronous HTTP request by default. To make an
|
|
3619
3889
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3648,6 +3918,11 @@ class MlfoundryArtifactsApi:
|
|
|
3648
3918
|
:rtype: tuple(ModelResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
3649
3919
|
"""
|
|
3650
3920
|
|
|
3921
|
+
warnings.warn(
|
|
3922
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/models/get-by-fqn is deprecated.",
|
|
3923
|
+
DeprecationWarning,
|
|
3924
|
+
)
|
|
3925
|
+
|
|
3651
3926
|
_params = locals()
|
|
3652
3927
|
|
|
3653
3928
|
_all_params = ["fqn"]
|
|
@@ -3696,7 +3971,7 @@ class MlfoundryArtifactsApi:
|
|
|
3696
3971
|
) # noqa: E501
|
|
3697
3972
|
|
|
3698
3973
|
# authentication setting
|
|
3699
|
-
_auth_settings = ["
|
|
3974
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
3700
3975
|
|
|
3701
3976
|
_response_types_map = {
|
|
3702
3977
|
"200": "ModelResponseDto",
|
|
@@ -3726,7 +4001,7 @@ class MlfoundryArtifactsApi:
|
|
|
3726
4001
|
def get_model_by_name_get(
|
|
3727
4002
|
self, experiment_id: StrictInt, name: StrictStr, **kwargs
|
|
3728
4003
|
) -> ModelResponseDto: # noqa: E501
|
|
3729
|
-
"""Get Model By Name # noqa: E501
|
|
4004
|
+
"""(Deprecated) Get Model By Name # noqa: E501
|
|
3730
4005
|
|
|
3731
4006
|
This method makes a synchronous HTTP request by default. To make an
|
|
3732
4007
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3759,7 +4034,7 @@ class MlfoundryArtifactsApi:
|
|
|
3759
4034
|
def get_model_by_name_get_with_http_info(
|
|
3760
4035
|
self, experiment_id: StrictInt, name: StrictStr, **kwargs
|
|
3761
4036
|
) -> ApiResponse: # noqa: E501
|
|
3762
|
-
"""Get Model By Name # noqa: E501
|
|
4037
|
+
"""(Deprecated) Get Model By Name # noqa: E501
|
|
3763
4038
|
|
|
3764
4039
|
This method makes a synchronous HTTP request by default. To make an
|
|
3765
4040
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3796,6 +4071,11 @@ class MlfoundryArtifactsApi:
|
|
|
3796
4071
|
:rtype: tuple(ModelResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
3797
4072
|
"""
|
|
3798
4073
|
|
|
4074
|
+
warnings.warn(
|
|
4075
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/models/get-by-name is deprecated.",
|
|
4076
|
+
DeprecationWarning,
|
|
4077
|
+
)
|
|
4078
|
+
|
|
3799
4079
|
_params = locals()
|
|
3800
4080
|
|
|
3801
4081
|
_all_params = ["experiment_id", "name"]
|
|
@@ -3847,7 +4127,7 @@ class MlfoundryArtifactsApi:
|
|
|
3847
4127
|
) # noqa: E501
|
|
3848
4128
|
|
|
3849
4129
|
# authentication setting
|
|
3850
|
-
_auth_settings = ["
|
|
4130
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
3851
4131
|
|
|
3852
4132
|
_response_types_map = {
|
|
3853
4133
|
"200": "ModelResponseDto",
|
|
@@ -3875,7 +4155,7 @@ class MlfoundryArtifactsApi:
|
|
|
3875
4155
|
|
|
3876
4156
|
@validate_arguments
|
|
3877
4157
|
def get_model_get(self, id: StrictStr, **kwargs) -> ModelResponseDto: # noqa: E501
|
|
3878
|
-
"""Get Model # noqa: E501
|
|
4158
|
+
"""(Deprecated) Get Model # noqa: E501
|
|
3879
4159
|
|
|
3880
4160
|
This method makes a synchronous HTTP request by default. To make an
|
|
3881
4161
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3904,7 +4184,7 @@ class MlfoundryArtifactsApi:
|
|
|
3904
4184
|
|
|
3905
4185
|
@validate_arguments
|
|
3906
4186
|
def get_model_get_with_http_info(self, id: StrictStr, **kwargs) -> ApiResponse: # noqa: E501
|
|
3907
|
-
"""Get Model # noqa: E501
|
|
4187
|
+
"""(Deprecated) Get Model # noqa: E501
|
|
3908
4188
|
|
|
3909
4189
|
This method makes a synchronous HTTP request by default. To make an
|
|
3910
4190
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -3939,6 +4219,11 @@ class MlfoundryArtifactsApi:
|
|
|
3939
4219
|
:rtype: tuple(ModelResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
3940
4220
|
"""
|
|
3941
4221
|
|
|
4222
|
+
warnings.warn(
|
|
4223
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/models/get is deprecated.",
|
|
4224
|
+
DeprecationWarning,
|
|
4225
|
+
)
|
|
4226
|
+
|
|
3942
4227
|
_params = locals()
|
|
3943
4228
|
|
|
3944
4229
|
_all_params = ["id"]
|
|
@@ -3987,7 +4272,7 @@ class MlfoundryArtifactsApi:
|
|
|
3987
4272
|
) # noqa: E501
|
|
3988
4273
|
|
|
3989
4274
|
# authentication setting
|
|
3990
|
-
_auth_settings = ["
|
|
4275
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
3991
4276
|
|
|
3992
4277
|
_response_types_map = {
|
|
3993
4278
|
"200": "ModelResponseDto",
|
|
@@ -4017,7 +4302,7 @@ class MlfoundryArtifactsApi:
|
|
|
4017
4302
|
def get_model_version_by_fqn_get(
|
|
4018
4303
|
self, fqn: StrictStr, **kwargs
|
|
4019
4304
|
) -> ModelVersionResponseDto: # noqa: E501
|
|
4020
|
-
"""Get Model Version By Fqn # noqa: E501
|
|
4305
|
+
"""(Deprecated) Get Model Version By Fqn # noqa: E501
|
|
4021
4306
|
|
|
4022
4307
|
This method makes a synchronous HTTP request by default. To make an
|
|
4023
4308
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4048,7 +4333,7 @@ class MlfoundryArtifactsApi:
|
|
|
4048
4333
|
def get_model_version_by_fqn_get_with_http_info(
|
|
4049
4334
|
self, fqn: StrictStr, **kwargs
|
|
4050
4335
|
) -> ApiResponse: # noqa: E501
|
|
4051
|
-
"""Get Model Version By Fqn # noqa: E501
|
|
4336
|
+
"""(Deprecated) Get Model Version By Fqn # noqa: E501
|
|
4052
4337
|
|
|
4053
4338
|
This method makes a synchronous HTTP request by default. To make an
|
|
4054
4339
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4083,6 +4368,11 @@ class MlfoundryArtifactsApi:
|
|
|
4083
4368
|
:rtype: tuple(ModelVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
4084
4369
|
"""
|
|
4085
4370
|
|
|
4371
|
+
warnings.warn(
|
|
4372
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/model-versions/get-by-fqn is deprecated.",
|
|
4373
|
+
DeprecationWarning,
|
|
4374
|
+
)
|
|
4375
|
+
|
|
4086
4376
|
_params = locals()
|
|
4087
4377
|
|
|
4088
4378
|
_all_params = ["fqn"]
|
|
@@ -4131,7 +4421,7 @@ class MlfoundryArtifactsApi:
|
|
|
4131
4421
|
) # noqa: E501
|
|
4132
4422
|
|
|
4133
4423
|
# authentication setting
|
|
4134
|
-
_auth_settings = ["
|
|
4424
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
4135
4425
|
|
|
4136
4426
|
_response_types_map = {
|
|
4137
4427
|
"200": "ModelVersionResponseDto",
|
|
@@ -4166,7 +4456,7 @@ class MlfoundryArtifactsApi:
|
|
|
4166
4456
|
name: Optional[StrictStr] = None,
|
|
4167
4457
|
**kwargs,
|
|
4168
4458
|
) -> ModelVersionResponseDto: # noqa: E501
|
|
4169
|
-
"""Get Model Version By Name # noqa: E501
|
|
4459
|
+
"""(Deprecated) Get Model Version By Name # noqa: E501
|
|
4170
4460
|
|
|
4171
4461
|
This method makes a synchronous HTTP request by default. To make an
|
|
4172
4462
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4210,7 +4500,7 @@ class MlfoundryArtifactsApi:
|
|
|
4210
4500
|
name: Optional[StrictStr] = None,
|
|
4211
4501
|
**kwargs,
|
|
4212
4502
|
) -> ApiResponse: # noqa: E501
|
|
4213
|
-
"""Get Model Version By Name # noqa: E501
|
|
4503
|
+
"""(Deprecated) Get Model Version By Name # noqa: E501
|
|
4214
4504
|
|
|
4215
4505
|
This method makes a synchronous HTTP request by default. To make an
|
|
4216
4506
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4251,6 +4541,11 @@ class MlfoundryArtifactsApi:
|
|
|
4251
4541
|
:rtype: tuple(ModelVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
4252
4542
|
"""
|
|
4253
4543
|
|
|
4544
|
+
warnings.warn(
|
|
4545
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/model-versions/get-by-name is deprecated.",
|
|
4546
|
+
DeprecationWarning,
|
|
4547
|
+
)
|
|
4548
|
+
|
|
4254
4549
|
_params = locals()
|
|
4255
4550
|
|
|
4256
4551
|
_all_params = ["experiment_id", "model_name", "version", "name"]
|
|
@@ -4308,7 +4603,7 @@ class MlfoundryArtifactsApi:
|
|
|
4308
4603
|
) # noqa: E501
|
|
4309
4604
|
|
|
4310
4605
|
# authentication setting
|
|
4311
|
-
_auth_settings = ["
|
|
4606
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
4312
4607
|
|
|
4313
4608
|
_response_types_map = {
|
|
4314
4609
|
"200": "ModelVersionResponseDto",
|
|
@@ -4336,7 +4631,7 @@ class MlfoundryArtifactsApi:
|
|
|
4336
4631
|
|
|
4337
4632
|
@validate_arguments
|
|
4338
4633
|
def get_model_version_get(self, id: StrictStr, **kwargs) -> ModelVersionResponseDto: # noqa: E501
|
|
4339
|
-
"""Get Model Version # noqa: E501
|
|
4634
|
+
"""(Deprecated) Get Model Version # noqa: E501
|
|
4340
4635
|
|
|
4341
4636
|
This method makes a synchronous HTTP request by default. To make an
|
|
4342
4637
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4367,7 +4662,7 @@ class MlfoundryArtifactsApi:
|
|
|
4367
4662
|
def get_model_version_get_with_http_info(
|
|
4368
4663
|
self, id: StrictStr, **kwargs
|
|
4369
4664
|
) -> ApiResponse: # noqa: E501
|
|
4370
|
-
"""Get Model Version # noqa: E501
|
|
4665
|
+
"""(Deprecated) Get Model Version # noqa: E501
|
|
4371
4666
|
|
|
4372
4667
|
This method makes a synchronous HTTP request by default. To make an
|
|
4373
4668
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4402,6 +4697,11 @@ class MlfoundryArtifactsApi:
|
|
|
4402
4697
|
:rtype: tuple(ModelVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
4403
4698
|
"""
|
|
4404
4699
|
|
|
4700
|
+
warnings.warn(
|
|
4701
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/model-versions/get is deprecated.",
|
|
4702
|
+
DeprecationWarning,
|
|
4703
|
+
)
|
|
4704
|
+
|
|
4405
4705
|
_params = locals()
|
|
4406
4706
|
|
|
4407
4707
|
_all_params = ["id"]
|
|
@@ -4450,7 +4750,7 @@ class MlfoundryArtifactsApi:
|
|
|
4450
4750
|
) # noqa: E501
|
|
4451
4751
|
|
|
4452
4752
|
# authentication setting
|
|
4453
|
-
_auth_settings = ["
|
|
4753
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
4454
4754
|
|
|
4455
4755
|
_response_types_map = {
|
|
4456
4756
|
"200": "ModelVersionResponseDto",
|
|
@@ -4482,7 +4782,7 @@ class MlfoundryArtifactsApi:
|
|
|
4482
4782
|
get_signed_urls_for_dataset_read_request_dto: GetSignedURLsForDatasetReadRequestDto,
|
|
4483
4783
|
**kwargs,
|
|
4484
4784
|
) -> GetSignedURLsForDatasetReadResponseDto: # noqa: E501
|
|
4485
|
-
"""Get Signed Urls Dataset Read # noqa: E501
|
|
4785
|
+
"""(Deprecated) Get Signed Urls Dataset Read # noqa: E501
|
|
4486
4786
|
|
|
4487
4787
|
This method makes a synchronous HTTP request by default. To make an
|
|
4488
4788
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4517,7 +4817,7 @@ class MlfoundryArtifactsApi:
|
|
|
4517
4817
|
get_signed_urls_for_dataset_read_request_dto: GetSignedURLsForDatasetReadRequestDto,
|
|
4518
4818
|
**kwargs,
|
|
4519
4819
|
) -> ApiResponse: # noqa: E501
|
|
4520
|
-
"""Get Signed Urls Dataset Read # noqa: E501
|
|
4820
|
+
"""(Deprecated) Get Signed Urls Dataset Read # noqa: E501
|
|
4521
4821
|
|
|
4522
4822
|
This method makes a synchronous HTTP request by default. To make an
|
|
4523
4823
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4552,6 +4852,11 @@ class MlfoundryArtifactsApi:
|
|
|
4552
4852
|
:rtype: tuple(GetSignedURLsForDatasetReadResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
4553
4853
|
"""
|
|
4554
4854
|
|
|
4855
|
+
warnings.warn(
|
|
4856
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/get-signed-urls-for-read is deprecated.",
|
|
4857
|
+
DeprecationWarning,
|
|
4858
|
+
)
|
|
4859
|
+
|
|
4555
4860
|
_params = locals()
|
|
4556
4861
|
|
|
4557
4862
|
_all_params = ["get_signed_urls_for_dataset_read_request_dto"]
|
|
@@ -4608,7 +4913,7 @@ class MlfoundryArtifactsApi:
|
|
|
4608
4913
|
_header_params["Content-Type"] = _content_types_list
|
|
4609
4914
|
|
|
4610
4915
|
# authentication setting
|
|
4611
|
-
_auth_settings = ["
|
|
4916
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
4612
4917
|
|
|
4613
4918
|
_response_types_map = {
|
|
4614
4919
|
"200": "GetSignedURLsForDatasetReadResponseDto",
|
|
@@ -4640,7 +4945,7 @@ class MlfoundryArtifactsApi:
|
|
|
4640
4945
|
get_signed_url_for_dataset_write_request_dto: GetSignedURLForDatasetWriteRequestDto,
|
|
4641
4946
|
**kwargs,
|
|
4642
4947
|
) -> GetSignedURLsForDatasetWriteResponseDto: # noqa: E501
|
|
4643
|
-
"""Get Signed Urls For Dataset Write # noqa: E501
|
|
4948
|
+
"""(Deprecated) Get Signed Urls For Dataset Write # noqa: E501
|
|
4644
4949
|
|
|
4645
4950
|
This method makes a synchronous HTTP request by default. To make an
|
|
4646
4951
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4675,7 +4980,7 @@ class MlfoundryArtifactsApi:
|
|
|
4675
4980
|
get_signed_url_for_dataset_write_request_dto: GetSignedURLForDatasetWriteRequestDto,
|
|
4676
4981
|
**kwargs,
|
|
4677
4982
|
) -> ApiResponse: # noqa: E501
|
|
4678
|
-
"""Get Signed Urls For Dataset Write # noqa: E501
|
|
4983
|
+
"""(Deprecated) Get Signed Urls For Dataset Write # noqa: E501
|
|
4679
4984
|
|
|
4680
4985
|
This method makes a synchronous HTTP request by default. To make an
|
|
4681
4986
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4710,6 +5015,11 @@ class MlfoundryArtifactsApi:
|
|
|
4710
5015
|
:rtype: tuple(GetSignedURLsForDatasetWriteResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
4711
5016
|
"""
|
|
4712
5017
|
|
|
5018
|
+
warnings.warn(
|
|
5019
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/get-signed-urls-for-write is deprecated.",
|
|
5020
|
+
DeprecationWarning,
|
|
5021
|
+
)
|
|
5022
|
+
|
|
4713
5023
|
_params = locals()
|
|
4714
5024
|
|
|
4715
5025
|
_all_params = ["get_signed_url_for_dataset_write_request_dto"]
|
|
@@ -4766,7 +5076,7 @@ class MlfoundryArtifactsApi:
|
|
|
4766
5076
|
_header_params["Content-Type"] = _content_types_list
|
|
4767
5077
|
|
|
4768
5078
|
# authentication setting
|
|
4769
|
-
_auth_settings = ["
|
|
5079
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
4770
5080
|
|
|
4771
5081
|
_response_types_map = {
|
|
4772
5082
|
"200": "GetSignedURLsForDatasetWriteResponseDto",
|
|
@@ -4798,7 +5108,7 @@ class MlfoundryArtifactsApi:
|
|
|
4798
5108
|
get_signed_urls_for_artifact_version_read_request_dto: GetSignedURLsForArtifactVersionReadRequestDto,
|
|
4799
5109
|
**kwargs,
|
|
4800
5110
|
) -> GetSignedURLsForArtifactVersionReadResponseDto: # noqa: E501
|
|
4801
|
-
"""Get Signed Urls For Read # noqa: E501
|
|
5111
|
+
"""(Deprecated) Get Signed Urls For Read # noqa: E501
|
|
4802
5112
|
|
|
4803
5113
|
This method makes a synchronous HTTP request by default. To make an
|
|
4804
5114
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4833,7 +5143,7 @@ class MlfoundryArtifactsApi:
|
|
|
4833
5143
|
get_signed_urls_for_artifact_version_read_request_dto: GetSignedURLsForArtifactVersionReadRequestDto,
|
|
4834
5144
|
**kwargs,
|
|
4835
5145
|
) -> ApiResponse: # noqa: E501
|
|
4836
|
-
"""Get Signed Urls For Read # noqa: E501
|
|
5146
|
+
"""(Deprecated) Get Signed Urls For Read # noqa: E501
|
|
4837
5147
|
|
|
4838
5148
|
This method makes a synchronous HTTP request by default. To make an
|
|
4839
5149
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4868,6 +5178,11 @@ class MlfoundryArtifactsApi:
|
|
|
4868
5178
|
:rtype: tuple(GetSignedURLsForArtifactVersionReadResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
4869
5179
|
"""
|
|
4870
5180
|
|
|
5181
|
+
warnings.warn(
|
|
5182
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-signed-urls-for-read is deprecated.",
|
|
5183
|
+
DeprecationWarning,
|
|
5184
|
+
)
|
|
5185
|
+
|
|
4871
5186
|
_params = locals()
|
|
4872
5187
|
|
|
4873
5188
|
_all_params = ["get_signed_urls_for_artifact_version_read_request_dto"]
|
|
@@ -4926,7 +5241,7 @@ class MlfoundryArtifactsApi:
|
|
|
4926
5241
|
_header_params["Content-Type"] = _content_types_list
|
|
4927
5242
|
|
|
4928
5243
|
# authentication setting
|
|
4929
|
-
_auth_settings = ["
|
|
5244
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
4930
5245
|
|
|
4931
5246
|
_response_types_map = {
|
|
4932
5247
|
"200": "GetSignedURLsForArtifactVersionReadResponseDto",
|
|
@@ -4958,7 +5273,7 @@ class MlfoundryArtifactsApi:
|
|
|
4958
5273
|
get_signed_urls_for_artifact_version_write_request_dto: GetSignedURLsForArtifactVersionWriteRequestDto,
|
|
4959
5274
|
**kwargs,
|
|
4960
5275
|
) -> GetSignedURLsForArtifactVersionWriteResponseDto: # noqa: E501
|
|
4961
|
-
"""Get Signed Urls For Write # noqa: E501
|
|
5276
|
+
"""(Deprecated) Get Signed Urls For Write # noqa: E501
|
|
4962
5277
|
|
|
4963
5278
|
This method makes a synchronous HTTP request by default. To make an
|
|
4964
5279
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -4993,7 +5308,7 @@ class MlfoundryArtifactsApi:
|
|
|
4993
5308
|
get_signed_urls_for_artifact_version_write_request_dto: GetSignedURLsForArtifactVersionWriteRequestDto,
|
|
4994
5309
|
**kwargs,
|
|
4995
5310
|
) -> ApiResponse: # noqa: E501
|
|
4996
|
-
"""Get Signed Urls For Write # noqa: E501
|
|
5311
|
+
"""(Deprecated) Get Signed Urls For Write # noqa: E501
|
|
4997
5312
|
|
|
4998
5313
|
This method makes a synchronous HTTP request by default. To make an
|
|
4999
5314
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5028,6 +5343,11 @@ class MlfoundryArtifactsApi:
|
|
|
5028
5343
|
:rtype: tuple(GetSignedURLsForArtifactVersionWriteResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
5029
5344
|
"""
|
|
5030
5345
|
|
|
5346
|
+
warnings.warn(
|
|
5347
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-signed-urls-for-write is deprecated.",
|
|
5348
|
+
DeprecationWarning,
|
|
5349
|
+
)
|
|
5350
|
+
|
|
5031
5351
|
_params = locals()
|
|
5032
5352
|
|
|
5033
5353
|
_all_params = ["get_signed_urls_for_artifact_version_write_request_dto"]
|
|
@@ -5089,7 +5409,7 @@ class MlfoundryArtifactsApi:
|
|
|
5089
5409
|
_header_params["Content-Type"] = _content_types_list
|
|
5090
5410
|
|
|
5091
5411
|
# authentication setting
|
|
5092
|
-
_auth_settings = ["
|
|
5412
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
5093
5413
|
|
|
5094
5414
|
_response_types_map = {
|
|
5095
5415
|
"200": "GetSignedURLsForArtifactVersionWriteResponseDto",
|
|
@@ -5119,7 +5439,7 @@ class MlfoundryArtifactsApi:
|
|
|
5119
5439
|
def get_version_aliases_for_artifact_get(
|
|
5120
5440
|
self, artifact_id: StrictStr, **kwargs
|
|
5121
5441
|
) -> GetArtifactVersionAliasesResponseDto: # noqa: E501
|
|
5122
|
-
"""Get Version Aliases For Artifact # noqa: E501
|
|
5442
|
+
"""(Deprecated) Get Version Aliases For Artifact # noqa: E501
|
|
5123
5443
|
|
|
5124
5444
|
This method makes a synchronous HTTP request by default. To make an
|
|
5125
5445
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5152,7 +5472,7 @@ class MlfoundryArtifactsApi:
|
|
|
5152
5472
|
def get_version_aliases_for_artifact_get_with_http_info(
|
|
5153
5473
|
self, artifact_id: StrictStr, **kwargs
|
|
5154
5474
|
) -> ApiResponse: # noqa: E501
|
|
5155
|
-
"""Get Version Aliases For Artifact # noqa: E501
|
|
5475
|
+
"""(Deprecated) Get Version Aliases For Artifact # noqa: E501
|
|
5156
5476
|
|
|
5157
5477
|
This method makes a synchronous HTTP request by default. To make an
|
|
5158
5478
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5187,6 +5507,11 @@ class MlfoundryArtifactsApi:
|
|
|
5187
5507
|
:rtype: tuple(GetArtifactVersionAliasesResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
5188
5508
|
"""
|
|
5189
5509
|
|
|
5510
|
+
warnings.warn(
|
|
5511
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/artifacts/get-version-aliases is deprecated.",
|
|
5512
|
+
DeprecationWarning,
|
|
5513
|
+
)
|
|
5514
|
+
|
|
5190
5515
|
_params = locals()
|
|
5191
5516
|
|
|
5192
5517
|
_all_params = ["artifact_id"]
|
|
@@ -5235,7 +5560,7 @@ class MlfoundryArtifactsApi:
|
|
|
5235
5560
|
) # noqa: E501
|
|
5236
5561
|
|
|
5237
5562
|
# authentication setting
|
|
5238
|
-
_auth_settings = ["
|
|
5563
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
5239
5564
|
|
|
5240
5565
|
_response_types_map = {
|
|
5241
5566
|
"200": "GetArtifactVersionAliasesResponseDto",
|
|
@@ -5267,7 +5592,7 @@ class MlfoundryArtifactsApi:
|
|
|
5267
5592
|
list_artifact_versions_request_dto: ListArtifactVersionsRequestDto,
|
|
5268
5593
|
**kwargs,
|
|
5269
5594
|
) -> ListArtifactVersionsResponseDto: # noqa: E501
|
|
5270
|
-
"""List Artifact Versions # noqa: E501
|
|
5595
|
+
"""(Deprecated) List Artifact Versions # noqa: E501
|
|
5271
5596
|
|
|
5272
5597
|
This method makes a synchronous HTTP request by default. To make an
|
|
5273
5598
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5302,7 +5627,7 @@ class MlfoundryArtifactsApi:
|
|
|
5302
5627
|
list_artifact_versions_request_dto: ListArtifactVersionsRequestDto,
|
|
5303
5628
|
**kwargs,
|
|
5304
5629
|
) -> ApiResponse: # noqa: E501
|
|
5305
|
-
"""List Artifact Versions # noqa: E501
|
|
5630
|
+
"""(Deprecated) List Artifact Versions # noqa: E501
|
|
5306
5631
|
|
|
5307
5632
|
This method makes a synchronous HTTP request by default. To make an
|
|
5308
5633
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5337,6 +5662,11 @@ class MlfoundryArtifactsApi:
|
|
|
5337
5662
|
:rtype: tuple(ListArtifactVersionsResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
5338
5663
|
"""
|
|
5339
5664
|
|
|
5665
|
+
warnings.warn(
|
|
5666
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/list is deprecated.",
|
|
5667
|
+
DeprecationWarning,
|
|
5668
|
+
)
|
|
5669
|
+
|
|
5340
5670
|
_params = locals()
|
|
5341
5671
|
|
|
5342
5672
|
_all_params = ["list_artifact_versions_request_dto"]
|
|
@@ -5393,7 +5723,7 @@ class MlfoundryArtifactsApi:
|
|
|
5393
5723
|
_header_params["Content-Type"] = _content_types_list
|
|
5394
5724
|
|
|
5395
5725
|
# authentication setting
|
|
5396
|
-
_auth_settings = ["
|
|
5726
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
5397
5727
|
|
|
5398
5728
|
_response_types_map = {
|
|
5399
5729
|
"200": "ListArtifactVersionsResponseDto",
|
|
@@ -5423,7 +5753,7 @@ class MlfoundryArtifactsApi:
|
|
|
5423
5753
|
def list_artifacts_post(
|
|
5424
5754
|
self, list_artifacts_request_dto: ListArtifactsRequestDto, **kwargs
|
|
5425
5755
|
) -> ListArtifactsResponseDto: # noqa: E501
|
|
5426
|
-
"""List Artifacts # noqa: E501
|
|
5756
|
+
"""(Deprecated) List Artifacts # noqa: E501
|
|
5427
5757
|
|
|
5428
5758
|
This method makes a synchronous HTTP request by default. To make an
|
|
5429
5759
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5456,7 +5786,7 @@ class MlfoundryArtifactsApi:
|
|
|
5456
5786
|
def list_artifacts_post_with_http_info(
|
|
5457
5787
|
self, list_artifacts_request_dto: ListArtifactsRequestDto, **kwargs
|
|
5458
5788
|
) -> ApiResponse: # noqa: E501
|
|
5459
|
-
"""List Artifacts # noqa: E501
|
|
5789
|
+
"""(Deprecated) List Artifacts # noqa: E501
|
|
5460
5790
|
|
|
5461
5791
|
This method makes a synchronous HTTP request by default. To make an
|
|
5462
5792
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5491,6 +5821,11 @@ class MlfoundryArtifactsApi:
|
|
|
5491
5821
|
:rtype: tuple(ListArtifactsResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
5492
5822
|
"""
|
|
5493
5823
|
|
|
5824
|
+
warnings.warn(
|
|
5825
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifacts/list is deprecated.",
|
|
5826
|
+
DeprecationWarning,
|
|
5827
|
+
)
|
|
5828
|
+
|
|
5494
5829
|
_params = locals()
|
|
5495
5830
|
|
|
5496
5831
|
_all_params = ["list_artifacts_request_dto"]
|
|
@@ -5547,7 +5882,7 @@ class MlfoundryArtifactsApi:
|
|
|
5547
5882
|
_header_params["Content-Type"] = _content_types_list
|
|
5548
5883
|
|
|
5549
5884
|
# authentication setting
|
|
5550
|
-
_auth_settings = ["
|
|
5885
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
5551
5886
|
|
|
5552
5887
|
_response_types_map = {
|
|
5553
5888
|
"200": "ListArtifactsResponseDto",
|
|
@@ -5577,7 +5912,7 @@ class MlfoundryArtifactsApi:
|
|
|
5577
5912
|
def list_datasets_post(
|
|
5578
5913
|
self, list_datasets_request_dto: ListDatasetsRequestDto, **kwargs
|
|
5579
5914
|
) -> ListDatasetsResponseDto: # noqa: E501
|
|
5580
|
-
"""List Datasets # noqa: E501
|
|
5915
|
+
"""(Deprecated) List Datasets # noqa: E501
|
|
5581
5916
|
|
|
5582
5917
|
This method makes a synchronous HTTP request by default. To make an
|
|
5583
5918
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5610,7 +5945,7 @@ class MlfoundryArtifactsApi:
|
|
|
5610
5945
|
def list_datasets_post_with_http_info(
|
|
5611
5946
|
self, list_datasets_request_dto: ListDatasetsRequestDto, **kwargs
|
|
5612
5947
|
) -> ApiResponse: # noqa: E501
|
|
5613
|
-
"""List Datasets # noqa: E501
|
|
5948
|
+
"""(Deprecated) List Datasets # noqa: E501
|
|
5614
5949
|
|
|
5615
5950
|
This method makes a synchronous HTTP request by default. To make an
|
|
5616
5951
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5645,6 +5980,11 @@ class MlfoundryArtifactsApi:
|
|
|
5645
5980
|
:rtype: tuple(ListDatasetsResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
5646
5981
|
"""
|
|
5647
5982
|
|
|
5983
|
+
warnings.warn(
|
|
5984
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/list is deprecated.",
|
|
5985
|
+
DeprecationWarning,
|
|
5986
|
+
)
|
|
5987
|
+
|
|
5648
5988
|
_params = locals()
|
|
5649
5989
|
|
|
5650
5990
|
_all_params = ["list_datasets_request_dto"]
|
|
@@ -5701,7 +6041,7 @@ class MlfoundryArtifactsApi:
|
|
|
5701
6041
|
_header_params["Content-Type"] = _content_types_list
|
|
5702
6042
|
|
|
5703
6043
|
# authentication setting
|
|
5704
|
-
_auth_settings = ["
|
|
6044
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
5705
6045
|
|
|
5706
6046
|
_response_types_map = {
|
|
5707
6047
|
"200": "ListDatasetsResponseDto",
|
|
@@ -5733,7 +6073,7 @@ class MlfoundryArtifactsApi:
|
|
|
5733
6073
|
list_files_for_artifact_version_request_dto: ListFilesForArtifactVersionRequestDto,
|
|
5734
6074
|
**kwargs,
|
|
5735
6075
|
) -> ListFilesForArtifactVersionsResponseDto: # noqa: E501
|
|
5736
|
-
"""List Files For Artifact Version # noqa: E501
|
|
6076
|
+
"""(Deprecated) List Files For Artifact Version # noqa: E501
|
|
5737
6077
|
|
|
5738
6078
|
This method makes a synchronous HTTP request by default. To make an
|
|
5739
6079
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5768,7 +6108,7 @@ class MlfoundryArtifactsApi:
|
|
|
5768
6108
|
list_files_for_artifact_version_request_dto: ListFilesForArtifactVersionRequestDto,
|
|
5769
6109
|
**kwargs,
|
|
5770
6110
|
) -> ApiResponse: # noqa: E501
|
|
5771
|
-
"""List Files For Artifact Version # noqa: E501
|
|
6111
|
+
"""(Deprecated) List Files For Artifact Version # noqa: E501
|
|
5772
6112
|
|
|
5773
6113
|
This method makes a synchronous HTTP request by default. To make an
|
|
5774
6114
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5803,6 +6143,11 @@ class MlfoundryArtifactsApi:
|
|
|
5803
6143
|
:rtype: tuple(ListFilesForArtifactVersionsResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
5804
6144
|
"""
|
|
5805
6145
|
|
|
6146
|
+
warnings.warn(
|
|
6147
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/files/list is deprecated.",
|
|
6148
|
+
DeprecationWarning,
|
|
6149
|
+
)
|
|
6150
|
+
|
|
5806
6151
|
_params = locals()
|
|
5807
6152
|
|
|
5808
6153
|
_all_params = ["list_files_for_artifact_version_request_dto"]
|
|
@@ -5859,7 +6204,7 @@ class MlfoundryArtifactsApi:
|
|
|
5859
6204
|
_header_params["Content-Type"] = _content_types_list
|
|
5860
6205
|
|
|
5861
6206
|
# authentication setting
|
|
5862
|
-
_auth_settings = ["
|
|
6207
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
5863
6208
|
|
|
5864
6209
|
_response_types_map = {
|
|
5865
6210
|
"200": "ListFilesForArtifactVersionsResponseDto",
|
|
@@ -5891,7 +6236,7 @@ class MlfoundryArtifactsApi:
|
|
|
5891
6236
|
list_files_for_dataset_request_dto: ListFilesForDatasetRequestDto,
|
|
5892
6237
|
**kwargs,
|
|
5893
6238
|
) -> ListFilesForDatasetResponseDto: # noqa: E501
|
|
5894
|
-
"""List Files For Dataset # noqa: E501
|
|
6239
|
+
"""(Deprecated) List Files For Dataset # noqa: E501
|
|
5895
6240
|
|
|
5896
6241
|
This method makes a synchronous HTTP request by default. To make an
|
|
5897
6242
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5926,7 +6271,7 @@ class MlfoundryArtifactsApi:
|
|
|
5926
6271
|
list_files_for_dataset_request_dto: ListFilesForDatasetRequestDto,
|
|
5927
6272
|
**kwargs,
|
|
5928
6273
|
) -> ApiResponse: # noqa: E501
|
|
5929
|
-
"""List Files For Dataset # noqa: E501
|
|
6274
|
+
"""(Deprecated) List Files For Dataset # noqa: E501
|
|
5930
6275
|
|
|
5931
6276
|
This method makes a synchronous HTTP request by default. To make an
|
|
5932
6277
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -5961,6 +6306,11 @@ class MlfoundryArtifactsApi:
|
|
|
5961
6306
|
:rtype: tuple(ListFilesForDatasetResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
5962
6307
|
"""
|
|
5963
6308
|
|
|
6309
|
+
warnings.warn(
|
|
6310
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/files/list is deprecated.",
|
|
6311
|
+
DeprecationWarning,
|
|
6312
|
+
)
|
|
6313
|
+
|
|
5964
6314
|
_params = locals()
|
|
5965
6315
|
|
|
5966
6316
|
_all_params = ["list_files_for_dataset_request_dto"]
|
|
@@ -6017,7 +6367,7 @@ class MlfoundryArtifactsApi:
|
|
|
6017
6367
|
_header_params["Content-Type"] = _content_types_list
|
|
6018
6368
|
|
|
6019
6369
|
# authentication setting
|
|
6020
|
-
_auth_settings = ["
|
|
6370
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
6021
6371
|
|
|
6022
6372
|
_response_types_map = {
|
|
6023
6373
|
"200": "ListFilesForDatasetResponseDto",
|
|
@@ -6047,7 +6397,7 @@ class MlfoundryArtifactsApi:
|
|
|
6047
6397
|
def list_model_versions_post(
|
|
6048
6398
|
self, list_model_versions_request_dto: ListModelVersionsRequestDto, **kwargs
|
|
6049
6399
|
) -> ListModelVersionResponseDto: # noqa: E501
|
|
6050
|
-
"""List Model Versions # noqa: E501
|
|
6400
|
+
"""(Deprecated) List Model Versions # noqa: E501
|
|
6051
6401
|
|
|
6052
6402
|
This method makes a synchronous HTTP request by default. To make an
|
|
6053
6403
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6080,7 +6430,7 @@ class MlfoundryArtifactsApi:
|
|
|
6080
6430
|
def list_model_versions_post_with_http_info(
|
|
6081
6431
|
self, list_model_versions_request_dto: ListModelVersionsRequestDto, **kwargs
|
|
6082
6432
|
) -> ApiResponse: # noqa: E501
|
|
6083
|
-
"""List Model Versions # noqa: E501
|
|
6433
|
+
"""(Deprecated) List Model Versions # noqa: E501
|
|
6084
6434
|
|
|
6085
6435
|
This method makes a synchronous HTTP request by default. To make an
|
|
6086
6436
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6115,6 +6465,11 @@ class MlfoundryArtifactsApi:
|
|
|
6115
6465
|
:rtype: tuple(ListModelVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
6116
6466
|
"""
|
|
6117
6467
|
|
|
6468
|
+
warnings.warn(
|
|
6469
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/model-versions/list is deprecated.",
|
|
6470
|
+
DeprecationWarning,
|
|
6471
|
+
)
|
|
6472
|
+
|
|
6118
6473
|
_params = locals()
|
|
6119
6474
|
|
|
6120
6475
|
_all_params = ["list_model_versions_request_dto"]
|
|
@@ -6171,7 +6526,7 @@ class MlfoundryArtifactsApi:
|
|
|
6171
6526
|
_header_params["Content-Type"] = _content_types_list
|
|
6172
6527
|
|
|
6173
6528
|
# authentication setting
|
|
6174
|
-
_auth_settings = ["
|
|
6529
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
6175
6530
|
|
|
6176
6531
|
_response_types_map = {
|
|
6177
6532
|
"200": "ListModelVersionResponseDto",
|
|
@@ -6201,7 +6556,7 @@ class MlfoundryArtifactsApi:
|
|
|
6201
6556
|
def list_models_post(
|
|
6202
6557
|
self, list_models_request_dto: ListModelsRequestDto, **kwargs
|
|
6203
6558
|
) -> ListModelsResponseDto: # noqa: E501
|
|
6204
|
-
"""List Models # noqa: E501
|
|
6559
|
+
"""(Deprecated) List Models # noqa: E501
|
|
6205
6560
|
|
|
6206
6561
|
List Models # noqa: E501
|
|
6207
6562
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -6233,7 +6588,7 @@ class MlfoundryArtifactsApi:
|
|
|
6233
6588
|
def list_models_post_with_http_info(
|
|
6234
6589
|
self, list_models_request_dto: ListModelsRequestDto, **kwargs
|
|
6235
6590
|
) -> ApiResponse: # noqa: E501
|
|
6236
|
-
"""List Models # noqa: E501
|
|
6591
|
+
"""(Deprecated) List Models # noqa: E501
|
|
6237
6592
|
|
|
6238
6593
|
List Models # noqa: E501
|
|
6239
6594
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -6269,6 +6624,11 @@ class MlfoundryArtifactsApi:
|
|
|
6269
6624
|
:rtype: tuple(ListModelsResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
6270
6625
|
"""
|
|
6271
6626
|
|
|
6627
|
+
warnings.warn(
|
|
6628
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/models/list is deprecated.",
|
|
6629
|
+
DeprecationWarning,
|
|
6630
|
+
)
|
|
6631
|
+
|
|
6272
6632
|
_params = locals()
|
|
6273
6633
|
|
|
6274
6634
|
_all_params = ["list_models_request_dto"]
|
|
@@ -6325,7 +6685,7 @@ class MlfoundryArtifactsApi:
|
|
|
6325
6685
|
_header_params["Content-Type"] = _content_types_list
|
|
6326
6686
|
|
|
6327
6687
|
# authentication setting
|
|
6328
|
-
_auth_settings = ["
|
|
6688
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
6329
6689
|
|
|
6330
6690
|
_response_types_map = {
|
|
6331
6691
|
"200": "ListModelsResponseDto",
|
|
@@ -6357,7 +6717,7 @@ class MlfoundryArtifactsApi:
|
|
|
6357
6717
|
notify_artifact_version_failure_dto: NotifyArtifactVersionFailureDto,
|
|
6358
6718
|
**kwargs,
|
|
6359
6719
|
) -> object: # noqa: E501
|
|
6360
|
-
"""Notify Failure # noqa: E501
|
|
6720
|
+
"""(Deprecated) Notify Failure # noqa: E501
|
|
6361
6721
|
|
|
6362
6722
|
This method makes a synchronous HTTP request by default. To make an
|
|
6363
6723
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6392,7 +6752,7 @@ class MlfoundryArtifactsApi:
|
|
|
6392
6752
|
notify_artifact_version_failure_dto: NotifyArtifactVersionFailureDto,
|
|
6393
6753
|
**kwargs,
|
|
6394
6754
|
) -> ApiResponse: # noqa: E501
|
|
6395
|
-
"""Notify Failure # noqa: E501
|
|
6755
|
+
"""(Deprecated) Notify Failure # noqa: E501
|
|
6396
6756
|
|
|
6397
6757
|
This method makes a synchronous HTTP request by default. To make an
|
|
6398
6758
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6427,6 +6787,11 @@ class MlfoundryArtifactsApi:
|
|
|
6427
6787
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
6428
6788
|
"""
|
|
6429
6789
|
|
|
6790
|
+
warnings.warn(
|
|
6791
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/notify-failure is deprecated.",
|
|
6792
|
+
DeprecationWarning,
|
|
6793
|
+
)
|
|
6794
|
+
|
|
6430
6795
|
_params = locals()
|
|
6431
6796
|
|
|
6432
6797
|
_all_params = ["notify_artifact_version_failure_dto"]
|
|
@@ -6483,7 +6848,7 @@ class MlfoundryArtifactsApi:
|
|
|
6483
6848
|
_header_params["Content-Type"] = _content_types_list
|
|
6484
6849
|
|
|
6485
6850
|
# authentication setting
|
|
6486
|
-
_auth_settings = ["
|
|
6851
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
6487
6852
|
|
|
6488
6853
|
_response_types_map = {
|
|
6489
6854
|
"200": "object",
|
|
@@ -6511,7 +6876,7 @@ class MlfoundryArtifactsApi:
|
|
|
6511
6876
|
|
|
6512
6877
|
@validate_arguments
|
|
6513
6878
|
def resolve_agent_get(self, fqn: StrictStr, **kwargs) -> ResolveAgentAppResponseDto: # noqa: E501
|
|
6514
|
-
"""Resolve Agent # noqa: E501
|
|
6879
|
+
"""(Deprecated) Resolve Agent # noqa: E501
|
|
6515
6880
|
|
|
6516
6881
|
This method makes a synchronous HTTP request by default. To make an
|
|
6517
6882
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6540,7 +6905,7 @@ class MlfoundryArtifactsApi:
|
|
|
6540
6905
|
|
|
6541
6906
|
@validate_arguments
|
|
6542
6907
|
def resolve_agent_get_with_http_info(self, fqn: StrictStr, **kwargs) -> ApiResponse: # noqa: E501
|
|
6543
|
-
"""Resolve Agent # noqa: E501
|
|
6908
|
+
"""(Deprecated) Resolve Agent # noqa: E501
|
|
6544
6909
|
|
|
6545
6910
|
This method makes a synchronous HTTP request by default. To make an
|
|
6546
6911
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6575,6 +6940,11 @@ class MlfoundryArtifactsApi:
|
|
|
6575
6940
|
:rtype: tuple(ResolveAgentAppResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
6576
6941
|
"""
|
|
6577
6942
|
|
|
6943
|
+
warnings.warn(
|
|
6944
|
+
"GET /api/2.0/mlflow/mlfoundry-artifacts/agent/resolve is deprecated.",
|
|
6945
|
+
DeprecationWarning,
|
|
6946
|
+
)
|
|
6947
|
+
|
|
6578
6948
|
_params = locals()
|
|
6579
6949
|
|
|
6580
6950
|
_all_params = ["fqn"]
|
|
@@ -6623,7 +6993,7 @@ class MlfoundryArtifactsApi:
|
|
|
6623
6993
|
) # noqa: E501
|
|
6624
6994
|
|
|
6625
6995
|
# authentication setting
|
|
6626
|
-
_auth_settings = ["
|
|
6996
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
6627
6997
|
|
|
6628
6998
|
_response_types_map = {
|
|
6629
6999
|
"200": "ResolveAgentAppResponseDto",
|
|
@@ -6655,7 +7025,7 @@ class MlfoundryArtifactsApi:
|
|
|
6655
7025
|
update_artifact_version_request_dto: UpdateArtifactVersionRequestDto,
|
|
6656
7026
|
**kwargs,
|
|
6657
7027
|
) -> ArtifactVersionResponseDto: # noqa: E501
|
|
6658
|
-
"""Update Artifact Version # noqa: E501
|
|
7028
|
+
"""(Deprecated) Update Artifact Version # noqa: E501
|
|
6659
7029
|
|
|
6660
7030
|
This method makes a synchronous HTTP request by default. To make an
|
|
6661
7031
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6690,7 +7060,7 @@ class MlfoundryArtifactsApi:
|
|
|
6690
7060
|
update_artifact_version_request_dto: UpdateArtifactVersionRequestDto,
|
|
6691
7061
|
**kwargs,
|
|
6692
7062
|
) -> ApiResponse: # noqa: E501
|
|
6693
|
-
"""Update Artifact Version # noqa: E501
|
|
7063
|
+
"""(Deprecated) Update Artifact Version # noqa: E501
|
|
6694
7064
|
|
|
6695
7065
|
This method makes a synchronous HTTP request by default. To make an
|
|
6696
7066
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6725,6 +7095,11 @@ class MlfoundryArtifactsApi:
|
|
|
6725
7095
|
:rtype: tuple(ArtifactVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
6726
7096
|
"""
|
|
6727
7097
|
|
|
7098
|
+
warnings.warn(
|
|
7099
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/update is deprecated.",
|
|
7100
|
+
DeprecationWarning,
|
|
7101
|
+
)
|
|
7102
|
+
|
|
6728
7103
|
_params = locals()
|
|
6729
7104
|
|
|
6730
7105
|
_all_params = ["update_artifact_version_request_dto"]
|
|
@@ -6781,7 +7156,7 @@ class MlfoundryArtifactsApi:
|
|
|
6781
7156
|
_header_params["Content-Type"] = _content_types_list
|
|
6782
7157
|
|
|
6783
7158
|
# authentication setting
|
|
6784
|
-
_auth_settings = ["
|
|
7159
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
6785
7160
|
|
|
6786
7161
|
_response_types_map = {
|
|
6787
7162
|
"200": "ArtifactVersionResponseDto",
|
|
@@ -6811,7 +7186,7 @@ class MlfoundryArtifactsApi:
|
|
|
6811
7186
|
def update_dataset_post(
|
|
6812
7187
|
self, update_dataset_request_dto: UpdateDatasetRequestDto, **kwargs
|
|
6813
7188
|
) -> DatasetResponseDto: # noqa: E501
|
|
6814
|
-
"""Update Dataset # noqa: E501
|
|
7189
|
+
"""(Deprecated) Update Dataset # noqa: E501
|
|
6815
7190
|
|
|
6816
7191
|
This method makes a synchronous HTTP request by default. To make an
|
|
6817
7192
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6844,7 +7219,7 @@ class MlfoundryArtifactsApi:
|
|
|
6844
7219
|
def update_dataset_post_with_http_info(
|
|
6845
7220
|
self, update_dataset_request_dto: UpdateDatasetRequestDto, **kwargs
|
|
6846
7221
|
) -> ApiResponse: # noqa: E501
|
|
6847
|
-
"""Update Dataset # noqa: E501
|
|
7222
|
+
"""(Deprecated) Update Dataset # noqa: E501
|
|
6848
7223
|
|
|
6849
7224
|
This method makes a synchronous HTTP request by default. To make an
|
|
6850
7225
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6879,6 +7254,11 @@ class MlfoundryArtifactsApi:
|
|
|
6879
7254
|
:rtype: tuple(DatasetResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
6880
7255
|
"""
|
|
6881
7256
|
|
|
7257
|
+
warnings.warn(
|
|
7258
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/datasets/update is deprecated.",
|
|
7259
|
+
DeprecationWarning,
|
|
7260
|
+
)
|
|
7261
|
+
|
|
6882
7262
|
_params = locals()
|
|
6883
7263
|
|
|
6884
7264
|
_all_params = ["update_dataset_request_dto"]
|
|
@@ -6935,7 +7315,7 @@ class MlfoundryArtifactsApi:
|
|
|
6935
7315
|
_header_params["Content-Type"] = _content_types_list
|
|
6936
7316
|
|
|
6937
7317
|
# authentication setting
|
|
6938
|
-
_auth_settings = ["
|
|
7318
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
6939
7319
|
|
|
6940
7320
|
_response_types_map = {
|
|
6941
7321
|
"200": "DatasetResponseDto",
|
|
@@ -6965,7 +7345,7 @@ class MlfoundryArtifactsApi:
|
|
|
6965
7345
|
def update_model_version_post(
|
|
6966
7346
|
self, update_model_version_request_dto: UpdateModelVersionRequestDto, **kwargs
|
|
6967
7347
|
) -> ModelVersionResponseDto: # noqa: E501
|
|
6968
|
-
"""Update Model Version # noqa: E501
|
|
7348
|
+
"""(Deprecated) Update Model Version # noqa: E501
|
|
6969
7349
|
|
|
6970
7350
|
This method makes a synchronous HTTP request by default. To make an
|
|
6971
7351
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -6998,7 +7378,7 @@ class MlfoundryArtifactsApi:
|
|
|
6998
7378
|
def update_model_version_post_with_http_info(
|
|
6999
7379
|
self, update_model_version_request_dto: UpdateModelVersionRequestDto, **kwargs
|
|
7000
7380
|
) -> ApiResponse: # noqa: E501
|
|
7001
|
-
"""Update Model Version # noqa: E501
|
|
7381
|
+
"""(Deprecated) Update Model Version # noqa: E501
|
|
7002
7382
|
|
|
7003
7383
|
This method makes a synchronous HTTP request by default. To make an
|
|
7004
7384
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -7033,6 +7413,11 @@ class MlfoundryArtifactsApi:
|
|
|
7033
7413
|
:rtype: tuple(ModelVersionResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
7034
7414
|
"""
|
|
7035
7415
|
|
|
7416
|
+
warnings.warn(
|
|
7417
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/model-versions/update is deprecated.",
|
|
7418
|
+
DeprecationWarning,
|
|
7419
|
+
)
|
|
7420
|
+
|
|
7036
7421
|
_params = locals()
|
|
7037
7422
|
|
|
7038
7423
|
_all_params = ["update_model_version_request_dto"]
|
|
@@ -7089,7 +7474,7 @@ class MlfoundryArtifactsApi:
|
|
|
7089
7474
|
_header_params["Content-Type"] = _content_types_list
|
|
7090
7475
|
|
|
7091
7476
|
# authentication setting
|
|
7092
|
-
_auth_settings = ["
|
|
7477
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
7093
7478
|
|
|
7094
7479
|
_response_types_map = {
|
|
7095
7480
|
"200": "ModelVersionResponseDto",
|
|
@@ -7121,7 +7506,7 @@ class MlfoundryArtifactsApi:
|
|
|
7121
7506
|
validate_external_storage_root_request_dto: ValidateExternalStorageRootRequestDto,
|
|
7122
7507
|
**kwargs,
|
|
7123
7508
|
) -> ValidateExternalStorageRootResponseDto: # noqa: E501
|
|
7124
|
-
"""Validate External Storage Root Path # noqa: E501
|
|
7509
|
+
"""(Deprecated) Validate External Storage Root Path # noqa: E501
|
|
7125
7510
|
|
|
7126
7511
|
This method makes a synchronous HTTP request by default. To make an
|
|
7127
7512
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -7156,7 +7541,7 @@ class MlfoundryArtifactsApi:
|
|
|
7156
7541
|
validate_external_storage_root_request_dto: ValidateExternalStorageRootRequestDto,
|
|
7157
7542
|
**kwargs,
|
|
7158
7543
|
) -> ApiResponse: # noqa: E501
|
|
7159
|
-
"""Validate External Storage Root Path # noqa: E501
|
|
7544
|
+
"""(Deprecated) Validate External Storage Root Path # noqa: E501
|
|
7160
7545
|
|
|
7161
7546
|
This method makes a synchronous HTTP request by default. To make an
|
|
7162
7547
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -7191,6 +7576,11 @@ class MlfoundryArtifactsApi:
|
|
|
7191
7576
|
:rtype: tuple(ValidateExternalStorageRootResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
7192
7577
|
"""
|
|
7193
7578
|
|
|
7579
|
+
warnings.warn(
|
|
7580
|
+
"POST /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/validate-storage-root is deprecated.",
|
|
7581
|
+
DeprecationWarning,
|
|
7582
|
+
)
|
|
7583
|
+
|
|
7194
7584
|
_params = locals()
|
|
7195
7585
|
|
|
7196
7586
|
_all_params = ["validate_external_storage_root_request_dto"]
|
|
@@ -7247,7 +7637,7 @@ class MlfoundryArtifactsApi:
|
|
|
7247
7637
|
_header_params["Content-Type"] = _content_types_list
|
|
7248
7638
|
|
|
7249
7639
|
# authentication setting
|
|
7250
|
-
_auth_settings = ["
|
|
7640
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
7251
7641
|
|
|
7252
7642
|
_response_types_map = {
|
|
7253
7643
|
"200": "ValidateExternalStorageRootResponseDto",
|