polyaxon 2.5.3__py3-none-any.whl → 2.6.0.post1__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.
- polyaxon/_auxiliaries/default_scheduling.py +17 -7
- polyaxon/_auxiliaries/init.py +14 -6
- polyaxon/_auxiliaries/sidecar.py +10 -8
- polyaxon/_compiler/resolver/agent.py +10 -9
- polyaxon/_deploy/schemas/auth.py +3 -3
- polyaxon/_deploy/schemas/celery.py +10 -8
- polyaxon/_deploy/schemas/deployment.py +148 -115
- polyaxon/_deploy/schemas/email.py +8 -8
- polyaxon/_deploy/schemas/ingress.py +7 -7
- polyaxon/_deploy/schemas/intervals.py +3 -1
- polyaxon/_deploy/schemas/operators.py +8 -8
- polyaxon/_deploy/schemas/proxy.py +9 -9
- polyaxon/_deploy/schemas/rbac.py +1 -1
- polyaxon/_deploy/schemas/root_user.py +5 -5
- polyaxon/_deploy/schemas/security_context.py +25 -15
- polyaxon/_deploy/schemas/service.py +73 -69
- polyaxon/_deploy/schemas/ssl.py +3 -3
- polyaxon/_deploy/schemas/ui.py +10 -8
- polyaxon/_docker/builder/builder.py +4 -1
- polyaxon/_docker/converter/base/containers.py +4 -7
- polyaxon/_docker/converter/base/env_vars.py +5 -5
- polyaxon/_docker/converter/base/mounts.py +2 -2
- polyaxon/_docker/docker_types.py +57 -30
- polyaxon/_flow/__init__.py +3 -2
- polyaxon/_flow/builds/__init__.py +8 -8
- polyaxon/_flow/cache/__init__.py +4 -4
- polyaxon/_flow/component/base.py +25 -18
- polyaxon/_flow/component/component.py +4 -3
- polyaxon/_flow/early_stopping/__init__.py +1 -1
- polyaxon/_flow/early_stopping/policies.py +12 -10
- polyaxon/_flow/environment/__init__.py +42 -24
- polyaxon/_flow/hooks/__init__.py +11 -11
- polyaxon/_flow/init/__init__.py +41 -25
- polyaxon/_flow/io/io.py +59 -47
- polyaxon/_flow/joins/__init__.py +5 -5
- polyaxon/_flow/matrix/bayes.py +23 -17
- polyaxon/_flow/matrix/grid_search.py +16 -7
- polyaxon/_flow/matrix/hyperband.py +10 -10
- polyaxon/_flow/matrix/hyperopt.py +14 -9
- polyaxon/_flow/matrix/iterative.py +14 -8
- polyaxon/_flow/matrix/mapping.py +4 -4
- polyaxon/_flow/matrix/params.py +138 -77
- polyaxon/_flow/matrix/random_search.py +10 -5
- polyaxon/_flow/matrix/tuner.py +4 -4
- polyaxon/_flow/mounts/artifacts_mounts.py +1 -1
- polyaxon/_flow/notifications/__init__.py +1 -1
- polyaxon/_flow/operations/base.py +10 -8
- polyaxon/_flow/operations/compiled_operation.py +5 -4
- polyaxon/_flow/operations/operation.py +30 -22
- polyaxon/_flow/optimization/__init__.py +2 -2
- polyaxon/_flow/params/params.py +11 -10
- polyaxon/_flow/plugins/__init__.py +19 -13
- polyaxon/_flow/run/dag.py +12 -9
- polyaxon/_flow/run/dask/dask.py +4 -4
- polyaxon/_flow/run/dask/replica.py +17 -11
- polyaxon/_flow/run/job.py +17 -11
- polyaxon/_flow/run/kubeflow/mpi_job.py +10 -5
- polyaxon/_flow/run/kubeflow/mx_job.py +25 -9
- polyaxon/_flow/run/kubeflow/paddle_job.py +16 -9
- polyaxon/_flow/run/kubeflow/pytorch_job.py +24 -17
- polyaxon/_flow/run/kubeflow/replica.py +17 -11
- polyaxon/_flow/run/kubeflow/scheduling_policy.py +7 -5
- polyaxon/_flow/run/kubeflow/tf_job.py +15 -8
- polyaxon/_flow/run/kubeflow/xgboost_job.py +9 -4
- polyaxon/_flow/run/ray/ray.py +9 -6
- polyaxon/_flow/run/ray/replica.py +25 -16
- polyaxon/_flow/run/resources.py +14 -13
- polyaxon/_flow/run/service.py +4 -4
- polyaxon/_flow/schedules/cron.py +4 -4
- polyaxon/_flow/schedules/interval.py +4 -4
- polyaxon/_flow/templates/__init__.py +3 -3
- polyaxon/_flow/termination/__init__.py +3 -3
- polyaxon/_fs/watcher.py +26 -27
- polyaxon/_k8s/k8s_validation.py +1 -1
- polyaxon/_local_process/converter/base/containers.py +4 -7
- polyaxon/_local_process/converter/base/env_vars.py +5 -5
- polyaxon/_local_process/process_types.py +15 -12
- polyaxon/_polyaxonfile/specs/compiled_operation.py +1 -1
- polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
- polyaxon/_polyaxonfile/specs/operation.py +1 -1
- polyaxon/_runner/agent/sync_agent.py +1 -1
- polyaxon/_runner/converter/converter.py +1 -1
- polyaxon/_schemas/agent.py +69 -37
- polyaxon/_schemas/authentication.py +4 -4
- polyaxon/_schemas/base.py +26 -2
- polyaxon/_schemas/checks.py +3 -3
- polyaxon/_schemas/cli.py +4 -6
- polyaxon/_schemas/client.py +20 -18
- polyaxon/_schemas/compatibility.py +4 -4
- polyaxon/_schemas/container_resources.py +1 -1
- polyaxon/_schemas/home.py +3 -3
- polyaxon/_schemas/installation.py +8 -8
- polyaxon/_schemas/lifecycle.py +21 -21
- polyaxon/_schemas/log_handler.py +2 -2
- polyaxon/_schemas/services.py +26 -14
- polyaxon/_schemas/types/artifacts.py +3 -3
- polyaxon/_schemas/types/dockerfile.py +14 -12
- polyaxon/_schemas/types/event.py +2 -2
- polyaxon/_schemas/types/file.py +3 -3
- polyaxon/_schemas/types/git.py +12 -4
- polyaxon/_schemas/types/tensorboard.py +14 -8
- polyaxon/_schemas/user.py +3 -3
- polyaxon/_schemas/version.py +2 -2
- polyaxon/_sdk/api/agents_v1_api.py +45 -45
- polyaxon/_sdk/api/artifacts_stores_v1_api.py +3 -3
- polyaxon/_sdk/api/auth_v1_api.py +13 -13
- polyaxon/_sdk/api/connections_v1_api.py +15 -15
- polyaxon/_sdk/api/dashboards_v1_api.py +15 -15
- polyaxon/_sdk/api/organizations_v1_api.py +77 -77
- polyaxon/_sdk/api/presets_v1_api.py +15 -15
- polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -17
- polyaxon/_sdk/api/project_searches_v1_api.py +17 -17
- polyaxon/_sdk/api/projects_v1_api.py +65 -65
- polyaxon/_sdk/api/queues_v1_api.py +19 -19
- polyaxon/_sdk/api/runs_v1_api.py +127 -127
- polyaxon/_sdk/api/searches_v1_api.py +15 -15
- polyaxon/_sdk/api/service_accounts_v1_api.py +27 -27
- polyaxon/_sdk/api/tags_v1_api.py +17 -17
- polyaxon/_sdk/api/teams_v1_api.py +51 -51
- polyaxon/_sdk/api/users_v1_api.py +25 -25
- polyaxon/_sdk/api/versions_v1_api.py +7 -7
- polyaxon/_sdk/schemas/v1_activity.py +8 -8
- polyaxon/_sdk/schemas/v1_agent.py +17 -17
- polyaxon/_sdk/schemas/v1_agent_state_response.py +4 -4
- polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +10 -10
- polyaxon/_sdk/schemas/v1_agent_status_body_request.py +3 -3
- polyaxon/_sdk/schemas/v1_analytics_spec.py +4 -4
- polyaxon/_sdk/schemas/v1_artifact_tree.py +3 -3
- polyaxon/_sdk/schemas/v1_auth.py +1 -1
- polyaxon/_sdk/schemas/v1_cloning.py +3 -3
- polyaxon/_sdk/schemas/v1_connection_response.py +9 -9
- polyaxon/_sdk/schemas/v1_dashboard.py +9 -9
- polyaxon/_sdk/schemas/v1_dashboard_spec.py +5 -5
- polyaxon/_sdk/schemas/v1_entities_tags.py +2 -2
- polyaxon/_sdk/schemas/v1_entities_transfer.py +2 -2
- polyaxon/_sdk/schemas/v1_entity_notification_body.py +7 -7
- polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +5 -5
- polyaxon/_sdk/schemas/v1_entity_status_body_request.py +5 -5
- polyaxon/_sdk/schemas/v1_events_response.py +2 -2
- polyaxon/_sdk/schemas/v1_list_activities_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_agents_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_connections_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_dashboards_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_organization_members_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_organizations_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_presets_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_project_versions_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_projects_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_queues_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_run_connections_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_run_edges_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_runs_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_searches_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_tags_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_team_members_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_teams_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_token_response.py +4 -4
- polyaxon/_sdk/schemas/v1_operation_body.py +8 -8
- polyaxon/_sdk/schemas/v1_organization.py +16 -16
- polyaxon/_sdk/schemas/v1_organization_member.py +6 -6
- polyaxon/_sdk/schemas/v1_password_change.py +3 -3
- polyaxon/_sdk/schemas/v1_pipeline.py +3 -3
- polyaxon/_sdk/schemas/v1_preset.py +11 -11
- polyaxon/_sdk/schemas/v1_project.py +17 -17
- polyaxon/_sdk/schemas/v1_project_settings.py +11 -11
- polyaxon/_sdk/schemas/v1_project_version.py +20 -20
- polyaxon/_sdk/schemas/v1_queue.py +12 -12
- polyaxon/_sdk/schemas/v1_run.py +38 -38
- polyaxon/_sdk/schemas/v1_run_connection.py +3 -3
- polyaxon/_sdk/schemas/v1_run_edge.py +5 -5
- polyaxon/_sdk/schemas/v1_run_edge_lineage.py +3 -3
- polyaxon/_sdk/schemas/v1_run_edges_graph.py +1 -1
- polyaxon/_sdk/schemas/v1_run_reference_catalog.py +4 -4
- polyaxon/_sdk/schemas/v1_run_settings.py +9 -9
- polyaxon/_sdk/schemas/v1_search.py +10 -10
- polyaxon/_sdk/schemas/v1_search_spec.py +14 -14
- polyaxon/_sdk/schemas/v1_section_spec.py +12 -12
- polyaxon/_sdk/schemas/v1_service_account.py +9 -9
- polyaxon/_sdk/schemas/v1_settings_catalog.py +4 -4
- polyaxon/_sdk/schemas/v1_tag.py +6 -6
- polyaxon/_sdk/schemas/v1_team.py +11 -11
- polyaxon/_sdk/schemas/v1_team_member.py +6 -6
- polyaxon/_sdk/schemas/v1_team_settings.py +2 -2
- polyaxon/_sdk/schemas/v1_token.py +10 -10
- polyaxon/_sdk/schemas/v1_trial_start.py +6 -6
- polyaxon/_sdk/schemas/v1_user.py +6 -6
- polyaxon/_sdk/schemas/v1_user_access.py +7 -7
- polyaxon/_sdk/schemas/v1_user_email.py +1 -1
- polyaxon/_sdk/schemas/v1_user_singup.py +5 -5
- polyaxon/_sdk/schemas/v1_uuids.py +1 -1
- polyaxon/_utils/test_utils.py +2 -1
- polyaxon/pkg.py +1 -1
- {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/METADATA +10 -10
- {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/RECORD +201 -201
- {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/LICENSE +0 -0
- {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/WHEEL +0 -0
- {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/top_level.txt +0 -0
polyaxon/_sdk/api/runs_v1_api.py
CHANGED
@@ -2,7 +2,7 @@ from datetime import datetime
|
|
2
2
|
from typing import Any, Dict, Optional
|
3
3
|
from typing_extensions import Annotated
|
4
4
|
|
5
|
-
from clipped.compact.pydantic import Field, StrictInt, StrictStr,
|
5
|
+
from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_call
|
6
6
|
|
7
7
|
from polyaxon._schemas.lifecycle import V1Status
|
8
8
|
from polyaxon._sdk.base_api import BaseApi
|
@@ -38,7 +38,7 @@ from traceml.logging import V1Logs
|
|
38
38
|
|
39
39
|
|
40
40
|
class RunsV1Api(BaseApi):
|
41
|
-
@
|
41
|
+
@validate_call
|
42
42
|
def approve_run(
|
43
43
|
self,
|
44
44
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -87,7 +87,7 @@ class RunsV1Api(BaseApi):
|
|
87
87
|
owner, entity, uuid, **kwargs
|
88
88
|
) # noqa: E501
|
89
89
|
|
90
|
-
@
|
90
|
+
@validate_call
|
91
91
|
def approve_run_with_http_info(
|
92
92
|
self,
|
93
93
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -218,7 +218,7 @@ class RunsV1Api(BaseApi):
|
|
218
218
|
_request_auth=_params.get("_request_auth"),
|
219
219
|
)
|
220
220
|
|
221
|
-
@
|
221
|
+
@validate_call
|
222
222
|
def approve_runs(
|
223
223
|
self,
|
224
224
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -260,7 +260,7 @@ class RunsV1Api(BaseApi):
|
|
260
260
|
owner, name, body, **kwargs
|
261
261
|
) # noqa: E501
|
262
262
|
|
263
|
-
@
|
263
|
+
@validate_call
|
264
264
|
def approve_runs_with_http_info(
|
265
265
|
self,
|
266
266
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -392,7 +392,7 @@ class RunsV1Api(BaseApi):
|
|
392
392
|
_request_auth=_params.get("_request_auth"),
|
393
393
|
)
|
394
394
|
|
395
|
-
@
|
395
|
+
@validate_call
|
396
396
|
def archive_run(
|
397
397
|
self,
|
398
398
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -441,7 +441,7 @@ class RunsV1Api(BaseApi):
|
|
441
441
|
owner, entity, uuid, **kwargs
|
442
442
|
) # noqa: E501
|
443
443
|
|
444
|
-
@
|
444
|
+
@validate_call
|
445
445
|
def archive_run_with_http_info(
|
446
446
|
self,
|
447
447
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -572,7 +572,7 @@ class RunsV1Api(BaseApi):
|
|
572
572
|
_request_auth=_params.get("_request_auth"),
|
573
573
|
)
|
574
574
|
|
575
|
-
@
|
575
|
+
@validate_call
|
576
576
|
def archive_runs(
|
577
577
|
self,
|
578
578
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -614,7 +614,7 @@ class RunsV1Api(BaseApi):
|
|
614
614
|
owner, name, body, **kwargs
|
615
615
|
) # noqa: E501
|
616
616
|
|
617
|
-
@
|
617
|
+
@validate_call
|
618
618
|
def archive_runs_with_http_info(
|
619
619
|
self,
|
620
620
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -746,7 +746,7 @@ class RunsV1Api(BaseApi):
|
|
746
746
|
_request_auth=_params.get("_request_auth"),
|
747
747
|
)
|
748
748
|
|
749
|
-
@
|
749
|
+
@validate_call
|
750
750
|
def bookmark_run(
|
751
751
|
self,
|
752
752
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -795,7 +795,7 @@ class RunsV1Api(BaseApi):
|
|
795
795
|
owner, entity, uuid, **kwargs
|
796
796
|
) # noqa: E501
|
797
797
|
|
798
|
-
@
|
798
|
+
@validate_call
|
799
799
|
def bookmark_run_with_http_info(
|
800
800
|
self,
|
801
801
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -926,7 +926,7 @@ class RunsV1Api(BaseApi):
|
|
926
926
|
_request_auth=_params.get("_request_auth"),
|
927
927
|
)
|
928
928
|
|
929
|
-
@
|
929
|
+
@validate_call
|
930
930
|
def bookmark_runs(
|
931
931
|
self,
|
932
932
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -968,7 +968,7 @@ class RunsV1Api(BaseApi):
|
|
968
968
|
owner, name, body, **kwargs
|
969
969
|
) # noqa: E501
|
970
970
|
|
971
|
-
@
|
971
|
+
@validate_call
|
972
972
|
def bookmark_runs_with_http_info(
|
973
973
|
self,
|
974
974
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1100,7 +1100,7 @@ class RunsV1Api(BaseApi):
|
|
1100
1100
|
_request_auth=_params.get("_request_auth"),
|
1101
1101
|
)
|
1102
1102
|
|
1103
|
-
@
|
1103
|
+
@validate_call
|
1104
1104
|
def collect_run_logs(
|
1105
1105
|
self,
|
1106
1106
|
namespace: StrictStr,
|
@@ -1152,7 +1152,7 @@ class RunsV1Api(BaseApi):
|
|
1152
1152
|
namespace, owner, project, uuid, kind, **kwargs
|
1153
1153
|
) # noqa: E501
|
1154
1154
|
|
1155
|
-
@
|
1155
|
+
@validate_call
|
1156
1156
|
def collect_run_logs_with_http_info(
|
1157
1157
|
self,
|
1158
1158
|
namespace: StrictStr,
|
@@ -1290,7 +1290,7 @@ class RunsV1Api(BaseApi):
|
|
1290
1290
|
_request_auth=_params.get("_request_auth"),
|
1291
1291
|
)
|
1292
1292
|
|
1293
|
-
@
|
1293
|
+
@validate_call
|
1294
1294
|
def copy_run(
|
1295
1295
|
self,
|
1296
1296
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1337,7 +1337,7 @@ class RunsV1Api(BaseApi):
|
|
1337
1337
|
owner, project, run_uuid, body, **kwargs
|
1338
1338
|
) # noqa: E501
|
1339
1339
|
|
1340
|
-
@
|
1340
|
+
@validate_call
|
1341
1341
|
def copy_run_with_http_info(
|
1342
1342
|
self,
|
1343
1343
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1481,7 +1481,7 @@ class RunsV1Api(BaseApi):
|
|
1481
1481
|
_request_auth=_params.get("_request_auth"),
|
1482
1482
|
)
|
1483
1483
|
|
1484
|
-
@
|
1484
|
+
@validate_call
|
1485
1485
|
def create_run(
|
1486
1486
|
self,
|
1487
1487
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1525,7 +1525,7 @@ class RunsV1Api(BaseApi):
|
|
1525
1525
|
owner, project, body, **kwargs
|
1526
1526
|
) # noqa: E501
|
1527
1527
|
|
1528
|
-
@
|
1528
|
+
@validate_call
|
1529
1529
|
def create_run_with_http_info(
|
1530
1530
|
self,
|
1531
1531
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1664,7 +1664,7 @@ class RunsV1Api(BaseApi):
|
|
1664
1664
|
_request_auth=_params.get("_request_auth"),
|
1665
1665
|
)
|
1666
1666
|
|
1667
|
-
@
|
1667
|
+
@validate_call
|
1668
1668
|
def create_run_artifacts_lineage(
|
1669
1669
|
self,
|
1670
1670
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1713,7 +1713,7 @@ class RunsV1Api(BaseApi):
|
|
1713
1713
|
owner, project, uuid, body, **kwargs
|
1714
1714
|
) # noqa: E501
|
1715
1715
|
|
1716
|
-
@
|
1716
|
+
@validate_call
|
1717
1717
|
def create_run_artifacts_lineage_with_http_info(
|
1718
1718
|
self,
|
1719
1719
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1854,7 +1854,7 @@ class RunsV1Api(BaseApi):
|
|
1854
1854
|
_request_auth=_params.get("_request_auth"),
|
1855
1855
|
)
|
1856
1856
|
|
1857
|
-
@
|
1857
|
+
@validate_call
|
1858
1858
|
def create_run_status(
|
1859
1859
|
self,
|
1860
1860
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -1903,7 +1903,7 @@ class RunsV1Api(BaseApi):
|
|
1903
1903
|
owner, project, uuid, body, **kwargs
|
1904
1904
|
) # noqa: E501
|
1905
1905
|
|
1906
|
-
@
|
1906
|
+
@validate_call
|
1907
1907
|
def create_run_status_with_http_info(
|
1908
1908
|
self,
|
1909
1909
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -2049,7 +2049,7 @@ class RunsV1Api(BaseApi):
|
|
2049
2049
|
_request_auth=_params.get("_request_auth"),
|
2050
2050
|
)
|
2051
2051
|
|
2052
|
-
@
|
2052
|
+
@validate_call
|
2053
2053
|
def delete_run(
|
2054
2054
|
self,
|
2055
2055
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -2098,7 +2098,7 @@ class RunsV1Api(BaseApi):
|
|
2098
2098
|
owner, entity, uuid, **kwargs
|
2099
2099
|
) # noqa: E501
|
2100
2100
|
|
2101
|
-
@
|
2101
|
+
@validate_call
|
2102
2102
|
def delete_run_with_http_info(
|
2103
2103
|
self,
|
2104
2104
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -2229,7 +2229,7 @@ class RunsV1Api(BaseApi):
|
|
2229
2229
|
_request_auth=_params.get("_request_auth"),
|
2230
2230
|
)
|
2231
2231
|
|
2232
|
-
@
|
2232
|
+
@validate_call
|
2233
2233
|
def delete_run_artifact(
|
2234
2234
|
self,
|
2235
2235
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -2288,7 +2288,7 @@ class RunsV1Api(BaseApi):
|
|
2288
2288
|
namespace, owner, project, uuid, path, connection, **kwargs
|
2289
2289
|
) # noqa: E501
|
2290
2290
|
|
2291
|
-
@
|
2291
|
+
@validate_call
|
2292
2292
|
def delete_run_artifact_with_http_info(
|
2293
2293
|
self,
|
2294
2294
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -2435,7 +2435,7 @@ class RunsV1Api(BaseApi):
|
|
2435
2435
|
_request_auth=_params.get("_request_auth"),
|
2436
2436
|
)
|
2437
2437
|
|
2438
|
-
@
|
2438
|
+
@validate_call
|
2439
2439
|
def delete_run_artifact_lineage(
|
2440
2440
|
self,
|
2441
2441
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -2489,7 +2489,7 @@ class RunsV1Api(BaseApi):
|
|
2489
2489
|
owner, project, uuid, name, namespace, **kwargs
|
2490
2490
|
) # noqa: E501
|
2491
2491
|
|
2492
|
-
@
|
2492
|
+
@validate_call
|
2493
2493
|
def delete_run_artifact_lineage_with_http_info(
|
2494
2494
|
self,
|
2495
2495
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -2629,7 +2629,7 @@ class RunsV1Api(BaseApi):
|
|
2629
2629
|
_request_auth=_params.get("_request_auth"),
|
2630
2630
|
)
|
2631
2631
|
|
2632
|
-
@
|
2632
|
+
@validate_call
|
2633
2633
|
def delete_run_artifacts(
|
2634
2634
|
self,
|
2635
2635
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -2688,7 +2688,7 @@ class RunsV1Api(BaseApi):
|
|
2688
2688
|
namespace, owner, project, uuid, path, connection, **kwargs
|
2689
2689
|
) # noqa: E501
|
2690
2690
|
|
2691
|
-
@
|
2691
|
+
@validate_call
|
2692
2692
|
def delete_run_artifacts_with_http_info(
|
2693
2693
|
self,
|
2694
2694
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -2835,7 +2835,7 @@ class RunsV1Api(BaseApi):
|
|
2835
2835
|
_request_auth=_params.get("_request_auth"),
|
2836
2836
|
)
|
2837
2837
|
|
2838
|
-
@
|
2838
|
+
@validate_call
|
2839
2839
|
def delete_runs(
|
2840
2840
|
self,
|
2841
2841
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -2877,7 +2877,7 @@ class RunsV1Api(BaseApi):
|
|
2877
2877
|
owner, name, body, **kwargs
|
2878
2878
|
) # noqa: E501
|
2879
2879
|
|
2880
|
-
@
|
2880
|
+
@validate_call
|
2881
2881
|
def delete_runs_with_http_info(
|
2882
2882
|
self,
|
2883
2883
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -3009,7 +3009,7 @@ class RunsV1Api(BaseApi):
|
|
3009
3009
|
_request_auth=_params.get("_request_auth"),
|
3010
3010
|
)
|
3011
3011
|
|
3012
|
-
@
|
3012
|
+
@validate_call
|
3013
3013
|
def get_multi_run_events(
|
3014
3014
|
self,
|
3015
3015
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -3102,7 +3102,7 @@ class RunsV1Api(BaseApi):
|
|
3102
3102
|
**kwargs
|
3103
3103
|
) # noqa: E501
|
3104
3104
|
|
3105
|
-
@
|
3105
|
+
@validate_call
|
3106
3106
|
def get_multi_run_events_with_http_info(
|
3107
3107
|
self,
|
3108
3108
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -3299,7 +3299,7 @@ class RunsV1Api(BaseApi):
|
|
3299
3299
|
_request_auth=_params.get("_request_auth"),
|
3300
3300
|
)
|
3301
3301
|
|
3302
|
-
@
|
3302
|
+
@validate_call
|
3303
3303
|
def get_multi_run_importance(
|
3304
3304
|
self,
|
3305
3305
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -3346,7 +3346,7 @@ class RunsV1Api(BaseApi):
|
|
3346
3346
|
namespace, owner, entity, body, **kwargs
|
3347
3347
|
) # noqa: E501
|
3348
3348
|
|
3349
|
-
@
|
3349
|
+
@validate_call
|
3350
3350
|
def get_multi_run_importance_with_http_info(
|
3351
3351
|
self,
|
3352
3352
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -3489,7 +3489,7 @@ class RunsV1Api(BaseApi):
|
|
3489
3489
|
_request_auth=_params.get("_request_auth"),
|
3490
3490
|
)
|
3491
3491
|
|
3492
|
-
@
|
3492
|
+
@validate_call
|
3493
3493
|
def get_run(
|
3494
3494
|
self,
|
3495
3495
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -3536,7 +3536,7 @@ class RunsV1Api(BaseApi):
|
|
3536
3536
|
kwargs["_return_http_data_only"] = True
|
3537
3537
|
return self.get_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
3538
3538
|
|
3539
|
-
@
|
3539
|
+
@validate_call
|
3540
3540
|
def get_run_with_http_info(
|
3541
3541
|
self,
|
3542
3542
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -3672,7 +3672,7 @@ class RunsV1Api(BaseApi):
|
|
3672
3672
|
_request_auth=_params.get("_request_auth"),
|
3673
3673
|
)
|
3674
3674
|
|
3675
|
-
@
|
3675
|
+
@validate_call
|
3676
3676
|
def get_run_artifact(
|
3677
3677
|
self,
|
3678
3678
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -3742,7 +3742,7 @@ class RunsV1Api(BaseApi):
|
|
3742
3742
|
namespace, owner, project, uuid, path, stream, force, connection, **kwargs
|
3743
3743
|
) # noqa: E501
|
3744
3744
|
|
3745
|
-
@
|
3745
|
+
@validate_call
|
3746
3746
|
def get_run_artifact_with_http_info(
|
3747
3747
|
self,
|
3748
3748
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -3918,7 +3918,7 @@ class RunsV1Api(BaseApi):
|
|
3918
3918
|
_request_auth=_params.get("_request_auth"),
|
3919
3919
|
)
|
3920
3920
|
|
3921
|
-
@
|
3921
|
+
@validate_call
|
3922
3922
|
def get_run_artifact_lineage(
|
3923
3923
|
self,
|
3924
3924
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -3972,7 +3972,7 @@ class RunsV1Api(BaseApi):
|
|
3972
3972
|
owner, project, uuid, name, namespace, **kwargs
|
3973
3973
|
) # noqa: E501
|
3974
3974
|
|
3975
|
-
@
|
3975
|
+
@validate_call
|
3976
3976
|
def get_run_artifact_lineage_with_http_info(
|
3977
3977
|
self,
|
3978
3978
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -4117,7 +4117,7 @@ class RunsV1Api(BaseApi):
|
|
4117
4117
|
_request_auth=_params.get("_request_auth"),
|
4118
4118
|
)
|
4119
4119
|
|
4120
|
-
@
|
4120
|
+
@validate_call
|
4121
4121
|
def get_run_artifacts(
|
4122
4122
|
self,
|
4123
4123
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -4182,7 +4182,7 @@ class RunsV1Api(BaseApi):
|
|
4182
4182
|
namespace, owner, project, uuid, path, force, connection, **kwargs
|
4183
4183
|
) # noqa: E501
|
4184
4184
|
|
4185
|
-
@
|
4185
|
+
@validate_call
|
4186
4186
|
def get_run_artifacts_with_http_info(
|
4187
4187
|
self,
|
4188
4188
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -4352,7 +4352,7 @@ class RunsV1Api(BaseApi):
|
|
4352
4352
|
_request_auth=_params.get("_request_auth"),
|
4353
4353
|
)
|
4354
4354
|
|
4355
|
-
@
|
4355
|
+
@validate_call
|
4356
4356
|
def get_run_artifacts_lineage(
|
4357
4357
|
self,
|
4358
4358
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -4417,7 +4417,7 @@ class RunsV1Api(BaseApi):
|
|
4417
4417
|
owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
|
4418
4418
|
) # noqa: E501
|
4419
4419
|
|
4420
|
-
@
|
4420
|
+
@validate_call
|
4421
4421
|
def get_run_artifacts_lineage_with_http_info(
|
4422
4422
|
self,
|
4423
4423
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -4588,7 +4588,7 @@ class RunsV1Api(BaseApi):
|
|
4588
4588
|
_request_auth=_params.get("_request_auth"),
|
4589
4589
|
)
|
4590
4590
|
|
4591
|
-
@
|
4591
|
+
@validate_call
|
4592
4592
|
def get_run_artifacts_lineage_names(
|
4593
4593
|
self,
|
4594
4594
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -4653,7 +4653,7 @@ class RunsV1Api(BaseApi):
|
|
4653
4653
|
owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
|
4654
4654
|
) # noqa: E501
|
4655
4655
|
|
4656
|
-
@
|
4656
|
+
@validate_call
|
4657
4657
|
def get_run_artifacts_lineage_names_with_http_info(
|
4658
4658
|
self,
|
4659
4659
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -4824,7 +4824,7 @@ class RunsV1Api(BaseApi):
|
|
4824
4824
|
_request_auth=_params.get("_request_auth"),
|
4825
4825
|
)
|
4826
4826
|
|
4827
|
-
@
|
4827
|
+
@validate_call
|
4828
4828
|
def get_run_artifacts_tree(
|
4829
4829
|
self,
|
4830
4830
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -4883,7 +4883,7 @@ class RunsV1Api(BaseApi):
|
|
4883
4883
|
namespace, owner, project, uuid, path, connection, **kwargs
|
4884
4884
|
) # noqa: E501
|
4885
4885
|
|
4886
|
-
@
|
4886
|
+
@validate_call
|
4887
4887
|
def get_run_artifacts_tree_with_http_info(
|
4888
4888
|
self,
|
4889
4889
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -5035,7 +5035,7 @@ class RunsV1Api(BaseApi):
|
|
5035
5035
|
_request_auth=_params.get("_request_auth"),
|
5036
5036
|
)
|
5037
5037
|
|
5038
|
-
@
|
5038
|
+
@validate_call
|
5039
5039
|
def get_run_clones_lineage(
|
5040
5040
|
self,
|
5041
5041
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -5100,7 +5100,7 @@ class RunsV1Api(BaseApi):
|
|
5100
5100
|
owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
|
5101
5101
|
) # noqa: E501
|
5102
5102
|
|
5103
|
-
@
|
5103
|
+
@validate_call
|
5104
5104
|
def get_run_clones_lineage_with_http_info(
|
5105
5105
|
self,
|
5106
5106
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -5271,7 +5271,7 @@ class RunsV1Api(BaseApi):
|
|
5271
5271
|
_request_auth=_params.get("_request_auth"),
|
5272
5272
|
)
|
5273
5273
|
|
5274
|
-
@
|
5274
|
+
@validate_call
|
5275
5275
|
def get_run_connections_lineage(
|
5276
5276
|
self,
|
5277
5277
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -5336,7 +5336,7 @@ class RunsV1Api(BaseApi):
|
|
5336
5336
|
owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
|
5337
5337
|
) # noqa: E501
|
5338
5338
|
|
5339
|
-
@
|
5339
|
+
@validate_call
|
5340
5340
|
def get_run_connections_lineage_with_http_info(
|
5341
5341
|
self,
|
5342
5342
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -5507,7 +5507,7 @@ class RunsV1Api(BaseApi):
|
|
5507
5507
|
_request_auth=_params.get("_request_auth"),
|
5508
5508
|
)
|
5509
5509
|
|
5510
|
-
@
|
5510
|
+
@validate_call
|
5511
5511
|
def get_run_downstream_lineage(
|
5512
5512
|
self,
|
5513
5513
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -5572,7 +5572,7 @@ class RunsV1Api(BaseApi):
|
|
5572
5572
|
owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
|
5573
5573
|
) # noqa: E501
|
5574
5574
|
|
5575
|
-
@
|
5575
|
+
@validate_call
|
5576
5576
|
def get_run_downstream_lineage_with_http_info(
|
5577
5577
|
self,
|
5578
5578
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -5743,7 +5743,7 @@ class RunsV1Api(BaseApi):
|
|
5743
5743
|
_request_auth=_params.get("_request_auth"),
|
5744
5744
|
)
|
5745
5745
|
|
5746
|
-
@
|
5746
|
+
@validate_call
|
5747
5747
|
def get_run_events(
|
5748
5748
|
self,
|
5749
5749
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -5836,7 +5836,7 @@ class RunsV1Api(BaseApi):
|
|
5836
5836
|
**kwargs
|
5837
5837
|
) # noqa: E501
|
5838
5838
|
|
5839
|
-
@
|
5839
|
+
@validate_call
|
5840
5840
|
def get_run_events_with_http_info(
|
5841
5841
|
self,
|
5842
5842
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -6033,7 +6033,7 @@ class RunsV1Api(BaseApi):
|
|
6033
6033
|
_request_auth=_params.get("_request_auth"),
|
6034
6034
|
)
|
6035
6035
|
|
6036
|
-
@
|
6036
|
+
@validate_call
|
6037
6037
|
def get_run_logs(
|
6038
6038
|
self,
|
6039
6039
|
namespace: StrictStr,
|
@@ -6110,7 +6110,7 @@ class RunsV1Api(BaseApi):
|
|
6110
6110
|
**kwargs
|
6111
6111
|
) # noqa: E501
|
6112
6112
|
|
6113
|
-
@
|
6113
|
+
@validate_call
|
6114
6114
|
def get_run_logs_with_http_info(
|
6115
6115
|
self,
|
6116
6116
|
namespace: StrictStr,
|
@@ -6295,7 +6295,7 @@ class RunsV1Api(BaseApi):
|
|
6295
6295
|
_request_auth=_params.get("_request_auth"),
|
6296
6296
|
)
|
6297
6297
|
|
6298
|
-
@
|
6298
|
+
@validate_call
|
6299
6299
|
def get_run_namespace(
|
6300
6300
|
self,
|
6301
6301
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -6344,7 +6344,7 @@ class RunsV1Api(BaseApi):
|
|
6344
6344
|
owner, entity, uuid, **kwargs
|
6345
6345
|
) # noqa: E501
|
6346
6346
|
|
6347
|
-
@
|
6347
|
+
@validate_call
|
6348
6348
|
def get_run_namespace_with_http_info(
|
6349
6349
|
self,
|
6350
6350
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -6480,7 +6480,7 @@ class RunsV1Api(BaseApi):
|
|
6480
6480
|
_request_auth=_params.get("_request_auth"),
|
6481
6481
|
)
|
6482
6482
|
|
6483
|
-
@
|
6483
|
+
@validate_call
|
6484
6484
|
def get_run_resources(
|
6485
6485
|
self,
|
6486
6486
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -6569,7 +6569,7 @@ class RunsV1Api(BaseApi):
|
|
6569
6569
|
**kwargs
|
6570
6570
|
) # noqa: E501
|
6571
6571
|
|
6572
|
-
@
|
6572
|
+
@validate_call
|
6573
6573
|
def get_run_resources_with_http_info(
|
6574
6574
|
self,
|
6575
6575
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -6760,7 +6760,7 @@ class RunsV1Api(BaseApi):
|
|
6760
6760
|
_request_auth=_params.get("_request_auth"),
|
6761
6761
|
)
|
6762
6762
|
|
6763
|
-
@
|
6763
|
+
@validate_call
|
6764
6764
|
def get_run_settings(
|
6765
6765
|
self,
|
6766
6766
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -6809,7 +6809,7 @@ class RunsV1Api(BaseApi):
|
|
6809
6809
|
owner, entity, uuid, **kwargs
|
6810
6810
|
) # noqa: E501
|
6811
6811
|
|
6812
|
-
@
|
6812
|
+
@validate_call
|
6813
6813
|
def get_run_settings_with_http_info(
|
6814
6814
|
self,
|
6815
6815
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -6945,7 +6945,7 @@ class RunsV1Api(BaseApi):
|
|
6945
6945
|
_request_auth=_params.get("_request_auth"),
|
6946
6946
|
)
|
6947
6947
|
|
6948
|
-
@
|
6948
|
+
@validate_call
|
6949
6949
|
def get_run_stats(
|
6950
6950
|
self,
|
6951
6951
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7044,7 +7044,7 @@ class RunsV1Api(BaseApi):
|
|
7044
7044
|
**kwargs
|
7045
7045
|
) # noqa: E501
|
7046
7046
|
|
7047
|
-
@
|
7047
|
+
@validate_call
|
7048
7048
|
def get_run_stats_with_http_info(
|
7049
7049
|
self,
|
7050
7050
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7251,7 +7251,7 @@ class RunsV1Api(BaseApi):
|
|
7251
7251
|
_request_auth=_params.get("_request_auth"),
|
7252
7252
|
)
|
7253
7253
|
|
7254
|
-
@
|
7254
|
+
@validate_call
|
7255
7255
|
def get_run_statuses(
|
7256
7256
|
self,
|
7257
7257
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7300,7 +7300,7 @@ class RunsV1Api(BaseApi):
|
|
7300
7300
|
owner, entity, uuid, **kwargs
|
7301
7301
|
) # noqa: E501
|
7302
7302
|
|
7303
|
-
@
|
7303
|
+
@validate_call
|
7304
7304
|
def get_run_statuses_with_http_info(
|
7305
7305
|
self,
|
7306
7306
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7436,7 +7436,7 @@ class RunsV1Api(BaseApi):
|
|
7436
7436
|
_request_auth=_params.get("_request_auth"),
|
7437
7437
|
)
|
7438
7438
|
|
7439
|
-
@
|
7439
|
+
@validate_call
|
7440
7440
|
def get_run_upstream_lineage(
|
7441
7441
|
self,
|
7442
7442
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7501,7 +7501,7 @@ class RunsV1Api(BaseApi):
|
|
7501
7501
|
owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
|
7502
7502
|
) # noqa: E501
|
7503
7503
|
|
7504
|
-
@
|
7504
|
+
@validate_call
|
7505
7505
|
def get_run_upstream_lineage_with_http_info(
|
7506
7506
|
self,
|
7507
7507
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7672,7 +7672,7 @@ class RunsV1Api(BaseApi):
|
|
7672
7672
|
_request_auth=_params.get("_request_auth"),
|
7673
7673
|
)
|
7674
7674
|
|
7675
|
-
@
|
7675
|
+
@validate_call
|
7676
7676
|
def get_runs_artifacts_lineage(
|
7677
7677
|
self,
|
7678
7678
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7744,7 +7744,7 @@ class RunsV1Api(BaseApi):
|
|
7744
7744
|
owner, name, offset, limit, sort, query, bookmarks, mode, no_page, **kwargs
|
7745
7745
|
) # noqa: E501
|
7746
7746
|
|
7747
|
-
@
|
7747
|
+
@validate_call
|
7748
7748
|
def get_runs_artifacts_lineage_with_http_info(
|
7749
7749
|
self,
|
7750
7750
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7925,7 +7925,7 @@ class RunsV1Api(BaseApi):
|
|
7925
7925
|
_request_auth=_params.get("_request_auth"),
|
7926
7926
|
)
|
7927
7927
|
|
7928
|
-
@
|
7928
|
+
@validate_call
|
7929
7929
|
def impersonate_token(
|
7930
7930
|
self,
|
7931
7931
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -7974,7 +7974,7 @@ class RunsV1Api(BaseApi):
|
|
7974
7974
|
owner, entity, uuid, **kwargs
|
7975
7975
|
) # noqa: E501
|
7976
7976
|
|
7977
|
-
@
|
7977
|
+
@validate_call
|
7978
7978
|
def impersonate_token_with_http_info(
|
7979
7979
|
self,
|
7980
7980
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -8110,7 +8110,7 @@ class RunsV1Api(BaseApi):
|
|
8110
8110
|
_request_auth=_params.get("_request_auth"),
|
8111
8111
|
)
|
8112
8112
|
|
8113
|
-
@
|
8113
|
+
@validate_call
|
8114
8114
|
def inspect_run(
|
8115
8115
|
self,
|
8116
8116
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -8199,7 +8199,7 @@ class RunsV1Api(BaseApi):
|
|
8199
8199
|
**kwargs
|
8200
8200
|
) # noqa: E501
|
8201
8201
|
|
8202
|
-
@
|
8202
|
+
@validate_call
|
8203
8203
|
def inspect_run_with_http_info(
|
8204
8204
|
self,
|
8205
8205
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
@@ -8390,7 +8390,7 @@ class RunsV1Api(BaseApi):
|
|
8390
8390
|
_request_auth=_params.get("_request_auth"),
|
8391
8391
|
)
|
8392
8392
|
|
8393
|
-
@
|
8393
|
+
@validate_call
|
8394
8394
|
def invalidate_run(
|
8395
8395
|
self,
|
8396
8396
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -8439,7 +8439,7 @@ class RunsV1Api(BaseApi):
|
|
8439
8439
|
owner, entity, uuid, **kwargs
|
8440
8440
|
) # noqa: E501
|
8441
8441
|
|
8442
|
-
@
|
8442
|
+
@validate_call
|
8443
8443
|
def invalidate_run_with_http_info(
|
8444
8444
|
self,
|
8445
8445
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -8570,7 +8570,7 @@ class RunsV1Api(BaseApi):
|
|
8570
8570
|
_request_auth=_params.get("_request_auth"),
|
8571
8571
|
)
|
8572
8572
|
|
8573
|
-
@
|
8573
|
+
@validate_call
|
8574
8574
|
def invalidate_runs(
|
8575
8575
|
self,
|
8576
8576
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -8612,7 +8612,7 @@ class RunsV1Api(BaseApi):
|
|
8612
8612
|
owner, name, body, **kwargs
|
8613
8613
|
) # noqa: E501
|
8614
8614
|
|
8615
|
-
@
|
8615
|
+
@validate_call
|
8616
8616
|
def invalidate_runs_with_http_info(
|
8617
8617
|
self,
|
8618
8618
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -8744,7 +8744,7 @@ class RunsV1Api(BaseApi):
|
|
8744
8744
|
_request_auth=_params.get("_request_auth"),
|
8745
8745
|
)
|
8746
8746
|
|
8747
|
-
@
|
8747
|
+
@validate_call
|
8748
8748
|
def list_archived_runs(
|
8749
8749
|
self,
|
8750
8750
|
user: Annotated[StrictStr, Field(..., description="User")],
|
@@ -8801,7 +8801,7 @@ class RunsV1Api(BaseApi):
|
|
8801
8801
|
user, offset, limit, sort, query, no_page, **kwargs
|
8802
8802
|
) # noqa: E501
|
8803
8803
|
|
8804
|
-
@
|
8804
|
+
@validate_call
|
8805
8805
|
def list_archived_runs_with_http_info(
|
8806
8806
|
self,
|
8807
8807
|
user: Annotated[StrictStr, Field(..., description="User")],
|
@@ -8951,7 +8951,7 @@ class RunsV1Api(BaseApi):
|
|
8951
8951
|
_request_auth=_params.get("_request_auth"),
|
8952
8952
|
)
|
8953
8953
|
|
8954
|
-
@
|
8954
|
+
@validate_call
|
8955
8955
|
def list_bookmarked_runs(
|
8956
8956
|
self,
|
8957
8957
|
user: Annotated[StrictStr, Field(..., description="User")],
|
@@ -9008,7 +9008,7 @@ class RunsV1Api(BaseApi):
|
|
9008
9008
|
user, offset, limit, sort, query, no_page, **kwargs
|
9009
9009
|
) # noqa: E501
|
9010
9010
|
|
9011
|
-
@
|
9011
|
+
@validate_call
|
9012
9012
|
def list_bookmarked_runs_with_http_info(
|
9013
9013
|
self,
|
9014
9014
|
user: Annotated[StrictStr, Field(..., description="User")],
|
@@ -9158,7 +9158,7 @@ class RunsV1Api(BaseApi):
|
|
9158
9158
|
_request_auth=_params.get("_request_auth"),
|
9159
9159
|
)
|
9160
9160
|
|
9161
|
-
@
|
9161
|
+
@validate_call
|
9162
9162
|
def list_runs(
|
9163
9163
|
self,
|
9164
9164
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -9230,7 +9230,7 @@ class RunsV1Api(BaseApi):
|
|
9230
9230
|
owner, name, offset, limit, sort, query, bookmarks, mode, no_page, **kwargs
|
9231
9231
|
) # noqa: E501
|
9232
9232
|
|
9233
|
-
@
|
9233
|
+
@validate_call
|
9234
9234
|
def list_runs_with_http_info(
|
9235
9235
|
self,
|
9236
9236
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -9411,7 +9411,7 @@ class RunsV1Api(BaseApi):
|
|
9411
9411
|
_request_auth=_params.get("_request_auth"),
|
9412
9412
|
)
|
9413
9413
|
|
9414
|
-
@
|
9414
|
+
@validate_call
|
9415
9415
|
def notify_run_status(
|
9416
9416
|
self,
|
9417
9417
|
namespace: Annotated[StrictStr, Field(..., description="Na,espace")],
|
@@ -9463,7 +9463,7 @@ class RunsV1Api(BaseApi):
|
|
9463
9463
|
namespace, owner, project, uuid, body, **kwargs
|
9464
9464
|
) # noqa: E501
|
9465
9465
|
|
9466
|
-
@
|
9466
|
+
@validate_call
|
9467
9467
|
def notify_run_status_with_http_info(
|
9468
9468
|
self,
|
9469
9469
|
namespace: Annotated[StrictStr, Field(..., description="Na,espace")],
|
@@ -9609,7 +9609,7 @@ class RunsV1Api(BaseApi):
|
|
9609
9609
|
_request_auth=_params.get("_request_auth"),
|
9610
9610
|
)
|
9611
9611
|
|
9612
|
-
@
|
9612
|
+
@validate_call
|
9613
9613
|
def patch_run(
|
9614
9614
|
self,
|
9615
9615
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -9656,7 +9656,7 @@ class RunsV1Api(BaseApi):
|
|
9656
9656
|
owner, project, run_uuid, body, **kwargs
|
9657
9657
|
) # noqa: E501
|
9658
9658
|
|
9659
|
-
@
|
9659
|
+
@validate_call
|
9660
9660
|
def patch_run_with_http_info(
|
9661
9661
|
self,
|
9662
9662
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -9800,7 +9800,7 @@ class RunsV1Api(BaseApi):
|
|
9800
9800
|
_request_auth=_params.get("_request_auth"),
|
9801
9801
|
)
|
9802
9802
|
|
9803
|
-
@
|
9803
|
+
@validate_call
|
9804
9804
|
def restart_run(
|
9805
9805
|
self,
|
9806
9806
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -9847,7 +9847,7 @@ class RunsV1Api(BaseApi):
|
|
9847
9847
|
owner, project, run_uuid, body, **kwargs
|
9848
9848
|
) # noqa: E501
|
9849
9849
|
|
9850
|
-
@
|
9850
|
+
@validate_call
|
9851
9851
|
def restart_run_with_http_info(
|
9852
9852
|
self,
|
9853
9853
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -9991,7 +9991,7 @@ class RunsV1Api(BaseApi):
|
|
9991
9991
|
_request_auth=_params.get("_request_auth"),
|
9992
9992
|
)
|
9993
9993
|
|
9994
|
-
@
|
9994
|
+
@validate_call
|
9995
9995
|
def restore_run(
|
9996
9996
|
self,
|
9997
9997
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10040,7 +10040,7 @@ class RunsV1Api(BaseApi):
|
|
10040
10040
|
owner, entity, uuid, **kwargs
|
10041
10041
|
) # noqa: E501
|
10042
10042
|
|
10043
|
-
@
|
10043
|
+
@validate_call
|
10044
10044
|
def restore_run_with_http_info(
|
10045
10045
|
self,
|
10046
10046
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10171,7 +10171,7 @@ class RunsV1Api(BaseApi):
|
|
10171
10171
|
_request_auth=_params.get("_request_auth"),
|
10172
10172
|
)
|
10173
10173
|
|
10174
|
-
@
|
10174
|
+
@validate_call
|
10175
10175
|
def restore_runs(
|
10176
10176
|
self,
|
10177
10177
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10213,7 +10213,7 @@ class RunsV1Api(BaseApi):
|
|
10213
10213
|
owner, name, body, **kwargs
|
10214
10214
|
) # noqa: E501
|
10215
10215
|
|
10216
|
-
@
|
10216
|
+
@validate_call
|
10217
10217
|
def restore_runs_with_http_info(
|
10218
10218
|
self,
|
10219
10219
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10345,7 +10345,7 @@ class RunsV1Api(BaseApi):
|
|
10345
10345
|
_request_auth=_params.get("_request_auth"),
|
10346
10346
|
)
|
10347
10347
|
|
10348
|
-
@
|
10348
|
+
@validate_call
|
10349
10349
|
def resume_run(
|
10350
10350
|
self,
|
10351
10351
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10392,7 +10392,7 @@ class RunsV1Api(BaseApi):
|
|
10392
10392
|
owner, project, run_uuid, body, **kwargs
|
10393
10393
|
) # noqa: E501
|
10394
10394
|
|
10395
|
-
@
|
10395
|
+
@validate_call
|
10396
10396
|
def resume_run_with_http_info(
|
10397
10397
|
self,
|
10398
10398
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10536,7 +10536,7 @@ class RunsV1Api(BaseApi):
|
|
10536
10536
|
_request_auth=_params.get("_request_auth"),
|
10537
10537
|
)
|
10538
10538
|
|
10539
|
-
@
|
10539
|
+
@validate_call
|
10540
10540
|
def set_run_edges_lineage(
|
10541
10541
|
self,
|
10542
10542
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10581,7 +10581,7 @@ class RunsV1Api(BaseApi):
|
|
10581
10581
|
owner, project, uuid, body, **kwargs
|
10582
10582
|
) # noqa: E501
|
10583
10583
|
|
10584
|
-
@
|
10584
|
+
@validate_call
|
10585
10585
|
def set_run_edges_lineage_with_http_info(
|
10586
10586
|
self,
|
10587
10587
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10715,7 +10715,7 @@ class RunsV1Api(BaseApi):
|
|
10715
10715
|
_request_auth=_params.get("_request_auth"),
|
10716
10716
|
)
|
10717
10717
|
|
10718
|
-
@
|
10718
|
+
@validate_call
|
10719
10719
|
def skip_run(
|
10720
10720
|
self,
|
10721
10721
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10762,7 +10762,7 @@ class RunsV1Api(BaseApi):
|
|
10762
10762
|
kwargs["_return_http_data_only"] = True
|
10763
10763
|
return self.skip_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
10764
10764
|
|
10765
|
-
@
|
10765
|
+
@validate_call
|
10766
10766
|
def skip_run_with_http_info(
|
10767
10767
|
self,
|
10768
10768
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10891,7 +10891,7 @@ class RunsV1Api(BaseApi):
|
|
10891
10891
|
_request_auth=_params.get("_request_auth"),
|
10892
10892
|
)
|
10893
10893
|
|
10894
|
-
@
|
10894
|
+
@validate_call
|
10895
10895
|
def skip_runs(
|
10896
10896
|
self,
|
10897
10897
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -10931,7 +10931,7 @@ class RunsV1Api(BaseApi):
|
|
10931
10931
|
kwargs["_return_http_data_only"] = True
|
10932
10932
|
return self.skip_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
10933
10933
|
|
10934
|
-
@
|
10934
|
+
@validate_call
|
10935
10935
|
def skip_runs_with_http_info(
|
10936
10936
|
self,
|
10937
10937
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11061,7 +11061,7 @@ class RunsV1Api(BaseApi):
|
|
11061
11061
|
_request_auth=_params.get("_request_auth"),
|
11062
11062
|
)
|
11063
11063
|
|
11064
|
-
@
|
11064
|
+
@validate_call
|
11065
11065
|
def stop_run(
|
11066
11066
|
self,
|
11067
11067
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11108,7 +11108,7 @@ class RunsV1Api(BaseApi):
|
|
11108
11108
|
kwargs["_return_http_data_only"] = True
|
11109
11109
|
return self.stop_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
11110
11110
|
|
11111
|
-
@
|
11111
|
+
@validate_call
|
11112
11112
|
def stop_run_with_http_info(
|
11113
11113
|
self,
|
11114
11114
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11239,7 +11239,7 @@ class RunsV1Api(BaseApi):
|
|
11239
11239
|
_request_auth=_params.get("_request_auth"),
|
11240
11240
|
)
|
11241
11241
|
|
11242
|
-
@
|
11242
|
+
@validate_call
|
11243
11243
|
def stop_runs(
|
11244
11244
|
self,
|
11245
11245
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11279,7 +11279,7 @@ class RunsV1Api(BaseApi):
|
|
11279
11279
|
kwargs["_return_http_data_only"] = True
|
11280
11280
|
return self.stop_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
11281
11281
|
|
11282
|
-
@
|
11282
|
+
@validate_call
|
11283
11283
|
def stop_runs_with_http_info(
|
11284
11284
|
self,
|
11285
11285
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11411,7 +11411,7 @@ class RunsV1Api(BaseApi):
|
|
11411
11411
|
_request_auth=_params.get("_request_auth"),
|
11412
11412
|
)
|
11413
11413
|
|
11414
|
-
@
|
11414
|
+
@validate_call
|
11415
11415
|
def sync_run(
|
11416
11416
|
self,
|
11417
11417
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11455,7 +11455,7 @@ class RunsV1Api(BaseApi):
|
|
11455
11455
|
owner, project, body, **kwargs
|
11456
11456
|
) # noqa: E501
|
11457
11457
|
|
11458
|
-
@
|
11458
|
+
@validate_call
|
11459
11459
|
def sync_run_with_http_info(
|
11460
11460
|
self,
|
11461
11461
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11589,7 +11589,7 @@ class RunsV1Api(BaseApi):
|
|
11589
11589
|
_request_auth=_params.get("_request_auth"),
|
11590
11590
|
)
|
11591
11591
|
|
11592
|
-
@
|
11592
|
+
@validate_call
|
11593
11593
|
def tag_runs(
|
11594
11594
|
self,
|
11595
11595
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11629,7 +11629,7 @@ class RunsV1Api(BaseApi):
|
|
11629
11629
|
kwargs["_return_http_data_only"] = True
|
11630
11630
|
return self.tag_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
11631
11631
|
|
11632
|
-
@
|
11632
|
+
@validate_call
|
11633
11633
|
def tag_runs_with_http_info(
|
11634
11634
|
self,
|
11635
11635
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11761,7 +11761,7 @@ class RunsV1Api(BaseApi):
|
|
11761
11761
|
_request_auth=_params.get("_request_auth"),
|
11762
11762
|
)
|
11763
11763
|
|
11764
|
-
@
|
11764
|
+
@validate_call
|
11765
11765
|
def transfer_run(
|
11766
11766
|
self,
|
11767
11767
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11808,7 +11808,7 @@ class RunsV1Api(BaseApi):
|
|
11808
11808
|
owner, project, run_uuid, body, **kwargs
|
11809
11809
|
) # noqa: E501
|
11810
11810
|
|
11811
|
-
@
|
11811
|
+
@validate_call
|
11812
11812
|
def transfer_run_with_http_info(
|
11813
11813
|
self,
|
11814
11814
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11947,7 +11947,7 @@ class RunsV1Api(BaseApi):
|
|
11947
11947
|
_request_auth=_params.get("_request_auth"),
|
11948
11948
|
)
|
11949
11949
|
|
11950
|
-
@
|
11950
|
+
@validate_call
|
11951
11951
|
def transfer_runs(
|
11952
11952
|
self,
|
11953
11953
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -11989,7 +11989,7 @@ class RunsV1Api(BaseApi):
|
|
11989
11989
|
owner, name, body, **kwargs
|
11990
11990
|
) # noqa: E501
|
11991
11991
|
|
11992
|
-
@
|
11992
|
+
@validate_call
|
11993
11993
|
def transfer_runs_with_http_info(
|
11994
11994
|
self,
|
11995
11995
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12121,7 +12121,7 @@ class RunsV1Api(BaseApi):
|
|
12121
12121
|
_request_auth=_params.get("_request_auth"),
|
12122
12122
|
)
|
12123
12123
|
|
12124
|
-
@
|
12124
|
+
@validate_call
|
12125
12125
|
def unbookmark_run(
|
12126
12126
|
self,
|
12127
12127
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12170,7 +12170,7 @@ class RunsV1Api(BaseApi):
|
|
12170
12170
|
owner, entity, uuid, **kwargs
|
12171
12171
|
) # noqa: E501
|
12172
12172
|
|
12173
|
-
@
|
12173
|
+
@validate_call
|
12174
12174
|
def unbookmark_run_with_http_info(
|
12175
12175
|
self,
|
12176
12176
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12301,7 +12301,7 @@ class RunsV1Api(BaseApi):
|
|
12301
12301
|
_request_auth=_params.get("_request_auth"),
|
12302
12302
|
)
|
12303
12303
|
|
12304
|
-
@
|
12304
|
+
@validate_call
|
12305
12305
|
def update_run(
|
12306
12306
|
self,
|
12307
12307
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12348,7 +12348,7 @@ class RunsV1Api(BaseApi):
|
|
12348
12348
|
owner, project, run_uuid, body, **kwargs
|
12349
12349
|
) # noqa: E501
|
12350
12350
|
|
12351
|
-
@
|
12351
|
+
@validate_call
|
12352
12352
|
def update_run_with_http_info(
|
12353
12353
|
self,
|
12354
12354
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12492,7 +12492,7 @@ class RunsV1Api(BaseApi):
|
|
12492
12492
|
_request_auth=_params.get("_request_auth"),
|
12493
12493
|
)
|
12494
12494
|
|
12495
|
-
@
|
12495
|
+
@validate_call
|
12496
12496
|
def upload_run_artifact(
|
12497
12497
|
self,
|
12498
12498
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12556,7 +12556,7 @@ class RunsV1Api(BaseApi):
|
|
12556
12556
|
owner, project, uuid, uploadfile, path, overwrite, connection, **kwargs
|
12557
12557
|
) # noqa: E501
|
12558
12558
|
|
12559
|
-
@
|
12559
|
+
@validate_call
|
12560
12560
|
def upload_run_artifact_with_http_info(
|
12561
12561
|
self,
|
12562
12562
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12726,7 +12726,7 @@ class RunsV1Api(BaseApi):
|
|
12726
12726
|
_request_auth=_params.get("_request_auth"),
|
12727
12727
|
)
|
12728
12728
|
|
12729
|
-
@
|
12729
|
+
@validate_call
|
12730
12730
|
def upload_run_logs(
|
12731
12731
|
self,
|
12732
12732
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
@@ -12790,7 +12790,7 @@ class RunsV1Api(BaseApi):
|
|
12790
12790
|
owner, project, uuid, uploadfile, path, overwrite, connection, **kwargs
|
12791
12791
|
) # noqa: E501
|
12792
12792
|
|
12793
|
-
@
|
12793
|
+
@validate_call
|
12794
12794
|
def upload_run_logs_with_http_info(
|
12795
12795
|
self,
|
12796
12796
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|