polyaxon 2.6.0rc1__py3-none-any.whl → 2.7.0rc0__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/_cli/operations.py +1 -1
- polyaxon/_cli/projects.py +2 -2
- polyaxon/_compiler/contexts/contexts.py +5 -5
- polyaxon/_compiler/contexts/dask_job.py +1 -1
- polyaxon/_compiler/contexts/kubeflow/mpi_job.py +1 -1
- polyaxon/_compiler/contexts/kubeflow/mx_job.py +1 -1
- polyaxon/_compiler/contexts/kubeflow/paddle_job.py +1 -1
- polyaxon/_compiler/contexts/kubeflow/pytroch_job.py +1 -1
- polyaxon/_compiler/contexts/kubeflow/tf_job.py +1 -1
- polyaxon/_compiler/contexts/kubeflow/xgb_job.py +1 -1
- polyaxon/_compiler/contexts/ray_job.py +1 -1
- polyaxon/_compiler/resolver/agent.py +1 -1
- polyaxon/_compiler/resolver/runtime.py +1 -1
- polyaxon/_deploy/schemas/deployment.py +1 -0
- polyaxon/_deploy/schemas/ui.py +3 -1
- polyaxon/_docker/converter/base/base.py +1 -1
- polyaxon/_docker/converter/base/env_vars.py +1 -1
- polyaxon/_docker/converter/converters/job.py +1 -1
- polyaxon/_docker/converter/converters/service.py +1 -1
- polyaxon/_flow/component/component.py +4 -0
- polyaxon/_flow/environment/__init__.py +5 -4
- polyaxon/_flow/io/io.py +2 -0
- polyaxon/_flow/matrix/params.py +1 -1
- polyaxon/_flow/operations/compiled_operation.py +4 -0
- polyaxon/_flow/operations/operation.py +5 -3
- polyaxon/_flow/params/params.py +2 -2
- polyaxon/_flow/run/__init__.py +3 -0
- polyaxon/_flow/run/dag.py +6 -6
- polyaxon/_flow/run/dask/dask.py +10 -0
- polyaxon/_flow/run/kubeflow/mpi_job.py +8 -0
- polyaxon/_flow/run/kubeflow/mx_job.py +16 -0
- polyaxon/_flow/run/kubeflow/paddle_job.py +8 -0
- polyaxon/_flow/run/kubeflow/pytorch_job.py +8 -0
- polyaxon/_flow/run/kubeflow/tf_job.py +12 -0
- polyaxon/_flow/run/kubeflow/xgboost_job.py +19 -33
- polyaxon/_flow/run/patch.py +37 -9
- polyaxon/_flow/run/ray/ray.py +9 -0
- polyaxon/_flow/run/resources.py +1 -1
- polyaxon/_fs/fs.py +1 -1
- polyaxon/_k8s/converter/base/containers.py +1 -1
- polyaxon/_k8s/converter/converters/dask_job.py +1 -1
- polyaxon/_k8s/converter/converters/job.py +1 -1
- polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py +1 -1
- polyaxon/_k8s/converter/converters/kubeflow/mx_job.py +1 -1
- polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py +1 -1
- polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py +1 -1
- polyaxon/_k8s/converter/converters/kubeflow/tf_job.py +1 -1
- polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py +1 -1
- polyaxon/_k8s/converter/converters/ray_job.py +1 -2
- polyaxon/_k8s/converter/converters/service.py +1 -1
- polyaxon/_k8s/k8s_validation.py +16 -16
- polyaxon/_k8s/logging/async_monitor.py +4 -4
- polyaxon/_k8s/manager/async_manager.py +5 -3
- polyaxon/_k8s/manager/manager.py +6 -6
- polyaxon/_local_process/converter/base/env_vars.py +1 -1
- polyaxon/_local_process/converter/base/init.py +1 -1
- polyaxon/_local_process/converter/base/mounts.py +0 -2
- polyaxon/_local_process/converter/converters/job.py +1 -1
- polyaxon/_local_process/converter/converters/service.py +1 -1
- polyaxon/_managers/project.py +3 -2
- polyaxon/_polyaxonfile/check.py +4 -4
- polyaxon/_polyaxonfile/specs/compiled_operation.py +8 -6
- polyaxon/_polyaxonfile/specs/libs/parser.py +1 -3
- polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
- polyaxon/_polyaxonfile/specs/operation.py +7 -3
- polyaxon/_pql/manager.py +1 -1
- polyaxon/_pql/parser.py +29 -26
- polyaxon/_runner/agent/base_agent.py +1 -2
- polyaxon/_runner/converter/init/artifacts.py +3 -2
- polyaxon/_runner/converter/init/tensorboard.py +1 -1
- polyaxon/_schemas/client.py +1 -1
- polyaxon/_sdk/api/agents_v1_api.py +56 -80
- polyaxon/_sdk/api/artifacts_stores_v1_api.py +2 -2
- polyaxon/_sdk/api/auth_v1_api.py +2 -6
- polyaxon/_sdk/api/connections_v1_api.py +16 -20
- polyaxon/_sdk/api/dashboards_v1_api.py +14 -14
- polyaxon/_sdk/api/organizations_v1_api.py +1735 -755
- polyaxon/_sdk/api/presets_v1_api.py +18 -26
- polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -19
- polyaxon/_sdk/api/project_searches_v1_api.py +20 -28
- polyaxon/_sdk/api/projects_v1_api.py +74 -92
- polyaxon/_sdk/api/queues_v1_api.py +22 -30
- polyaxon/_sdk/api/runs_v1_api.py +157 -207
- polyaxon/_sdk/api/searches_v1_api.py +16 -20
- polyaxon/_sdk/api/service_accounts_v1_api.py +30 -38
- polyaxon/_sdk/api/tags_v1_api.py +19 -25
- polyaxon/_sdk/api/teams_v1_api.py +64 -90
- polyaxon/_sdk/api/users_v1_api.py +17 -19
- polyaxon/_sdk/api/versions_v1_api.py +4 -4
- polyaxon/_sdk/async_client/rest.py +1 -3
- polyaxon/_sdk/schemas/v1_organization.py +3 -2
- polyaxon/_sdk/schemas/v1_project_settings.py +2 -1
- polyaxon/_sdk/schemas/v1_section_spec.py +1 -1
- polyaxon/_sdk/schemas/v1_user_access.py +3 -2
- polyaxon/_sdk/sync_client/api_client.py +2 -6
- polyaxon/_sdk/sync_client/rest.py +4 -8
- polyaxon/pkg.py +1 -1
- {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/METADATA +9 -9
- {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/RECORD +103 -103
- {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/LICENSE +0 -0
- {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/WHEEL +0 -0
- {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/top_level.txt +0 -0
polyaxon/_sdk/api/runs_v1_api.py
CHANGED
@@ -51,7 +51,7 @@ class RunsV1Api(BaseApi):
|
|
51
51
|
uuid: Annotated[
|
52
52
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
53
53
|
],
|
54
|
-
**kwargs
|
54
|
+
**kwargs,
|
55
55
|
) -> None: # noqa: E501
|
56
56
|
"""Approve run # noqa: E501
|
57
57
|
|
@@ -83,9 +83,7 @@ class RunsV1Api(BaseApi):
|
|
83
83
|
:rtype: None
|
84
84
|
"""
|
85
85
|
kwargs["_return_http_data_only"] = True
|
86
|
-
return self.approve_run_with_http_info(
|
87
|
-
owner, entity, uuid, **kwargs
|
88
|
-
) # noqa: E501
|
86
|
+
return self.approve_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
89
87
|
|
90
88
|
@validate_call
|
91
89
|
def approve_run_with_http_info(
|
@@ -100,7 +98,7 @@ class RunsV1Api(BaseApi):
|
|
100
98
|
uuid: Annotated[
|
101
99
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
102
100
|
],
|
103
|
-
**kwargs
|
101
|
+
**kwargs,
|
104
102
|
): # noqa: E501
|
105
103
|
"""Approve run # noqa: E501
|
106
104
|
|
@@ -224,7 +222,7 @@ class RunsV1Api(BaseApi):
|
|
224
222
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
225
223
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
226
224
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
227
|
-
**kwargs
|
225
|
+
**kwargs,
|
228
226
|
) -> None: # noqa: E501
|
229
227
|
"""Approve runs # noqa: E501
|
230
228
|
|
@@ -256,9 +254,7 @@ class RunsV1Api(BaseApi):
|
|
256
254
|
:rtype: None
|
257
255
|
"""
|
258
256
|
kwargs["_return_http_data_only"] = True
|
259
|
-
return self.approve_runs_with_http_info(
|
260
|
-
owner, name, body, **kwargs
|
261
|
-
) # noqa: E501
|
257
|
+
return self.approve_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
262
258
|
|
263
259
|
@validate_call
|
264
260
|
def approve_runs_with_http_info(
|
@@ -266,7 +262,7 @@ class RunsV1Api(BaseApi):
|
|
266
262
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
267
263
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
268
264
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
269
|
-
**kwargs
|
265
|
+
**kwargs,
|
270
266
|
): # noqa: E501
|
271
267
|
"""Approve runs # noqa: E501
|
272
268
|
|
@@ -405,7 +401,7 @@ class RunsV1Api(BaseApi):
|
|
405
401
|
uuid: Annotated[
|
406
402
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
407
403
|
],
|
408
|
-
**kwargs
|
404
|
+
**kwargs,
|
409
405
|
) -> None: # noqa: E501
|
410
406
|
"""Archive run # noqa: E501
|
411
407
|
|
@@ -437,9 +433,7 @@ class RunsV1Api(BaseApi):
|
|
437
433
|
:rtype: None
|
438
434
|
"""
|
439
435
|
kwargs["_return_http_data_only"] = True
|
440
|
-
return self.archive_run_with_http_info(
|
441
|
-
owner, entity, uuid, **kwargs
|
442
|
-
) # noqa: E501
|
436
|
+
return self.archive_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
443
437
|
|
444
438
|
@validate_call
|
445
439
|
def archive_run_with_http_info(
|
@@ -454,7 +448,7 @@ class RunsV1Api(BaseApi):
|
|
454
448
|
uuid: Annotated[
|
455
449
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
456
450
|
],
|
457
|
-
**kwargs
|
451
|
+
**kwargs,
|
458
452
|
): # noqa: E501
|
459
453
|
"""Archive run # noqa: E501
|
460
454
|
|
@@ -578,7 +572,7 @@ class RunsV1Api(BaseApi):
|
|
578
572
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
579
573
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
580
574
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
581
|
-
**kwargs
|
575
|
+
**kwargs,
|
582
576
|
) -> None: # noqa: E501
|
583
577
|
"""Archive runs # noqa: E501
|
584
578
|
|
@@ -610,9 +604,7 @@ class RunsV1Api(BaseApi):
|
|
610
604
|
:rtype: None
|
611
605
|
"""
|
612
606
|
kwargs["_return_http_data_only"] = True
|
613
|
-
return self.archive_runs_with_http_info(
|
614
|
-
owner, name, body, **kwargs
|
615
|
-
) # noqa: E501
|
607
|
+
return self.archive_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
616
608
|
|
617
609
|
@validate_call
|
618
610
|
def archive_runs_with_http_info(
|
@@ -620,7 +612,7 @@ class RunsV1Api(BaseApi):
|
|
620
612
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
621
613
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
622
614
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
623
|
-
**kwargs
|
615
|
+
**kwargs,
|
624
616
|
): # noqa: E501
|
625
617
|
"""Archive runs # noqa: E501
|
626
618
|
|
@@ -759,7 +751,7 @@ class RunsV1Api(BaseApi):
|
|
759
751
|
uuid: Annotated[
|
760
752
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
761
753
|
],
|
762
|
-
**kwargs
|
754
|
+
**kwargs,
|
763
755
|
) -> None: # noqa: E501
|
764
756
|
"""Bookmark run # noqa: E501
|
765
757
|
|
@@ -791,9 +783,7 @@ class RunsV1Api(BaseApi):
|
|
791
783
|
:rtype: None
|
792
784
|
"""
|
793
785
|
kwargs["_return_http_data_only"] = True
|
794
|
-
return self.bookmark_run_with_http_info(
|
795
|
-
owner, entity, uuid, **kwargs
|
796
|
-
) # noqa: E501
|
786
|
+
return self.bookmark_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
797
787
|
|
798
788
|
@validate_call
|
799
789
|
def bookmark_run_with_http_info(
|
@@ -808,7 +798,7 @@ class RunsV1Api(BaseApi):
|
|
808
798
|
uuid: Annotated[
|
809
799
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
810
800
|
],
|
811
|
-
**kwargs
|
801
|
+
**kwargs,
|
812
802
|
): # noqa: E501
|
813
803
|
"""Bookmark run # noqa: E501
|
814
804
|
|
@@ -932,7 +922,7 @@ class RunsV1Api(BaseApi):
|
|
932
922
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
933
923
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
934
924
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
935
|
-
**kwargs
|
925
|
+
**kwargs,
|
936
926
|
) -> None: # noqa: E501
|
937
927
|
"""Bookmark runs # noqa: E501
|
938
928
|
|
@@ -964,9 +954,7 @@ class RunsV1Api(BaseApi):
|
|
964
954
|
:rtype: None
|
965
955
|
"""
|
966
956
|
kwargs["_return_http_data_only"] = True
|
967
|
-
return self.bookmark_runs_with_http_info(
|
968
|
-
owner, name, body, **kwargs
|
969
|
-
) # noqa: E501
|
957
|
+
return self.bookmark_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
970
958
|
|
971
959
|
@validate_call
|
972
960
|
def bookmark_runs_with_http_info(
|
@@ -974,7 +962,7 @@ class RunsV1Api(BaseApi):
|
|
974
962
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
975
963
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
976
964
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
977
|
-
**kwargs
|
965
|
+
**kwargs,
|
978
966
|
): # noqa: E501
|
979
967
|
"""Bookmark runs # noqa: E501
|
980
968
|
|
@@ -1112,7 +1100,7 @@ class RunsV1Api(BaseApi):
|
|
1112
1100
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
1113
1101
|
],
|
1114
1102
|
kind: Annotated[str, Field(..., description="Kind of the entity")],
|
1115
|
-
**kwargs
|
1103
|
+
**kwargs,
|
1116
1104
|
) -> None: # noqa: E501
|
1117
1105
|
"""Internal API to collect run logs # noqa: E501
|
1118
1106
|
|
@@ -1164,7 +1152,7 @@ class RunsV1Api(BaseApi):
|
|
1164
1152
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
1165
1153
|
],
|
1166
1154
|
kind: Annotated[str, Field(..., description="Kind of the entity")],
|
1167
|
-
**kwargs
|
1155
|
+
**kwargs,
|
1168
1156
|
): # noqa: E501
|
1169
1157
|
"""Internal API to collect run logs # noqa: E501
|
1170
1158
|
|
@@ -1299,7 +1287,7 @@ class RunsV1Api(BaseApi):
|
|
1299
1287
|
],
|
1300
1288
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
1301
1289
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
1302
|
-
**kwargs
|
1290
|
+
**kwargs,
|
1303
1291
|
) -> V1Run: # noqa: E501
|
1304
1292
|
"""Restart run with copy # noqa: E501
|
1305
1293
|
|
@@ -1333,9 +1321,7 @@ class RunsV1Api(BaseApi):
|
|
1333
1321
|
:rtype: V1Run
|
1334
1322
|
"""
|
1335
1323
|
kwargs["_return_http_data_only"] = True
|
1336
|
-
return self.copy_run_with_http_info(
|
1337
|
-
owner, project, run_uuid, body, **kwargs
|
1338
|
-
) # noqa: E501
|
1324
|
+
return self.copy_run_with_http_info(owner, project, run_uuid, body, **kwargs) # noqa: E501
|
1339
1325
|
|
1340
1326
|
@validate_call
|
1341
1327
|
def copy_run_with_http_info(
|
@@ -1346,7 +1332,7 @@ class RunsV1Api(BaseApi):
|
|
1346
1332
|
],
|
1347
1333
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
1348
1334
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
1349
|
-
**kwargs
|
1335
|
+
**kwargs,
|
1350
1336
|
): # noqa: E501
|
1351
1337
|
"""Restart run with copy # noqa: E501
|
1352
1338
|
|
@@ -1489,7 +1475,7 @@ class RunsV1Api(BaseApi):
|
|
1489
1475
|
StrictStr, Field(..., description="Project where the run will be assigned")
|
1490
1476
|
],
|
1491
1477
|
body: Annotated[V1OperationBody, Field(..., description="operation object")],
|
1492
|
-
**kwargs
|
1478
|
+
**kwargs,
|
1493
1479
|
) -> V1Run: # noqa: E501
|
1494
1480
|
"""Create new run # noqa: E501
|
1495
1481
|
|
@@ -1521,9 +1507,7 @@ class RunsV1Api(BaseApi):
|
|
1521
1507
|
:rtype: V1Run
|
1522
1508
|
"""
|
1523
1509
|
kwargs["_return_http_data_only"] = True
|
1524
|
-
return self.create_run_with_http_info(
|
1525
|
-
owner, project, body, **kwargs
|
1526
|
-
) # noqa: E501
|
1510
|
+
return self.create_run_with_http_info(owner, project, body, **kwargs) # noqa: E501
|
1527
1511
|
|
1528
1512
|
@validate_call
|
1529
1513
|
def create_run_with_http_info(
|
@@ -1533,7 +1517,7 @@ class RunsV1Api(BaseApi):
|
|
1533
1517
|
StrictStr, Field(..., description="Project where the run will be assigned")
|
1534
1518
|
],
|
1535
1519
|
body: Annotated[V1OperationBody, Field(..., description="operation object")],
|
1536
|
-
**kwargs
|
1520
|
+
**kwargs,
|
1537
1521
|
): # noqa: E501
|
1538
1522
|
"""Create new run # noqa: E501
|
1539
1523
|
|
@@ -1675,7 +1659,7 @@ class RunsV1Api(BaseApi):
|
|
1675
1659
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
1676
1660
|
],
|
1677
1661
|
body: Annotated[V1RunArtifacts, Field(..., description="Run Artifacts")],
|
1678
|
-
**kwargs
|
1662
|
+
**kwargs,
|
1679
1663
|
) -> None: # noqa: E501
|
1680
1664
|
"""Create bulk run artifacts lineage # noqa: E501
|
1681
1665
|
|
@@ -1724,7 +1708,7 @@ class RunsV1Api(BaseApi):
|
|
1724
1708
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
1725
1709
|
],
|
1726
1710
|
body: Annotated[V1RunArtifacts, Field(..., description="Run Artifacts")],
|
1727
|
-
**kwargs
|
1711
|
+
**kwargs,
|
1728
1712
|
): # noqa: E501
|
1729
1713
|
"""Create bulk run artifacts lineage # noqa: E501
|
1730
1714
|
|
@@ -1865,7 +1849,7 @@ class RunsV1Api(BaseApi):
|
|
1865
1849
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
1866
1850
|
],
|
1867
1851
|
body: V1EntityStatusBodyRequest,
|
1868
|
-
**kwargs
|
1852
|
+
**kwargs,
|
1869
1853
|
) -> V1Status: # noqa: E501
|
1870
1854
|
"""Create new run status # noqa: E501
|
1871
1855
|
|
@@ -1914,7 +1898,7 @@ class RunsV1Api(BaseApi):
|
|
1914
1898
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
1915
1899
|
],
|
1916
1900
|
body: V1EntityStatusBodyRequest,
|
1917
|
-
**kwargs
|
1901
|
+
**kwargs,
|
1918
1902
|
): # noqa: E501
|
1919
1903
|
"""Create new run status # noqa: E501
|
1920
1904
|
|
@@ -2062,7 +2046,7 @@ class RunsV1Api(BaseApi):
|
|
2062
2046
|
uuid: Annotated[
|
2063
2047
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
2064
2048
|
],
|
2065
|
-
**kwargs
|
2049
|
+
**kwargs,
|
2066
2050
|
) -> None: # noqa: E501
|
2067
2051
|
"""Delete run # noqa: E501
|
2068
2052
|
|
@@ -2094,9 +2078,7 @@ class RunsV1Api(BaseApi):
|
|
2094
2078
|
:rtype: None
|
2095
2079
|
"""
|
2096
2080
|
kwargs["_return_http_data_only"] = True
|
2097
|
-
return self.delete_run_with_http_info(
|
2098
|
-
owner, entity, uuid, **kwargs
|
2099
|
-
) # noqa: E501
|
2081
|
+
return self.delete_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
2100
2082
|
|
2101
2083
|
@validate_call
|
2102
2084
|
def delete_run_with_http_info(
|
@@ -2111,7 +2093,7 @@ class RunsV1Api(BaseApi):
|
|
2111
2093
|
uuid: Annotated[
|
2112
2094
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
2113
2095
|
],
|
2114
|
-
**kwargs
|
2096
|
+
**kwargs,
|
2115
2097
|
): # noqa: E501
|
2116
2098
|
"""Delete run # noqa: E501
|
2117
2099
|
|
@@ -2246,7 +2228,7 @@ class RunsV1Api(BaseApi):
|
|
2246
2228
|
connection: Annotated[
|
2247
2229
|
Optional[StrictStr], Field(description="Connection query param.")
|
2248
2230
|
] = None,
|
2249
|
-
**kwargs
|
2231
|
+
**kwargs,
|
2250
2232
|
) -> None: # noqa: E501
|
2251
2233
|
"""Delete run artifact # noqa: E501
|
2252
2234
|
|
@@ -2305,7 +2287,7 @@ class RunsV1Api(BaseApi):
|
|
2305
2287
|
connection: Annotated[
|
2306
2288
|
Optional[StrictStr], Field(description="Connection query param.")
|
2307
2289
|
] = None,
|
2308
|
-
**kwargs
|
2290
|
+
**kwargs,
|
2309
2291
|
): # noqa: E501
|
2310
2292
|
"""Delete run artifact # noqa: E501
|
2311
2293
|
|
@@ -2449,7 +2431,7 @@ class RunsV1Api(BaseApi):
|
|
2449
2431
|
namespace: Annotated[
|
2450
2432
|
Optional[StrictStr], Field(description="namespace.")
|
2451
2433
|
] = None,
|
2452
|
-
**kwargs
|
2434
|
+
**kwargs,
|
2453
2435
|
) -> None: # noqa: E501
|
2454
2436
|
"""Delete run artifact lineage # noqa: E501
|
2455
2437
|
|
@@ -2503,7 +2485,7 @@ class RunsV1Api(BaseApi):
|
|
2503
2485
|
namespace: Annotated[
|
2504
2486
|
Optional[StrictStr], Field(description="namespace.")
|
2505
2487
|
] = None,
|
2506
|
-
**kwargs
|
2488
|
+
**kwargs,
|
2507
2489
|
): # noqa: E501
|
2508
2490
|
"""Delete run artifact lineage # noqa: E501
|
2509
2491
|
|
@@ -2646,7 +2628,7 @@ class RunsV1Api(BaseApi):
|
|
2646
2628
|
connection: Annotated[
|
2647
2629
|
Optional[StrictStr], Field(description="Connection query param.")
|
2648
2630
|
] = None,
|
2649
|
-
**kwargs
|
2631
|
+
**kwargs,
|
2650
2632
|
) -> None: # noqa: E501
|
2651
2633
|
"""Delete run artifacts # noqa: E501
|
2652
2634
|
|
@@ -2705,7 +2687,7 @@ class RunsV1Api(BaseApi):
|
|
2705
2687
|
connection: Annotated[
|
2706
2688
|
Optional[StrictStr], Field(description="Connection query param.")
|
2707
2689
|
] = None,
|
2708
|
-
**kwargs
|
2690
|
+
**kwargs,
|
2709
2691
|
): # noqa: E501
|
2710
2692
|
"""Delete run artifacts # noqa: E501
|
2711
2693
|
|
@@ -2841,7 +2823,7 @@ class RunsV1Api(BaseApi):
|
|
2841
2823
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
2842
2824
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
2843
2825
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
2844
|
-
**kwargs
|
2826
|
+
**kwargs,
|
2845
2827
|
) -> None: # noqa: E501
|
2846
2828
|
"""Delete runs # noqa: E501
|
2847
2829
|
|
@@ -2873,9 +2855,7 @@ class RunsV1Api(BaseApi):
|
|
2873
2855
|
:rtype: None
|
2874
2856
|
"""
|
2875
2857
|
kwargs["_return_http_data_only"] = True
|
2876
|
-
return self.delete_runs_with_http_info(
|
2877
|
-
owner, name, body, **kwargs
|
2878
|
-
) # noqa: E501
|
2858
|
+
return self.delete_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
2879
2859
|
|
2880
2860
|
@validate_call
|
2881
2861
|
def delete_runs_with_http_info(
|
@@ -2883,7 +2863,7 @@ class RunsV1Api(BaseApi):
|
|
2883
2863
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
2884
2864
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
2885
2865
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
2886
|
-
**kwargs
|
2866
|
+
**kwargs,
|
2887
2867
|
): # noqa: E501
|
2888
2868
|
"""Delete runs # noqa: E501
|
2889
2869
|
|
@@ -3039,7 +3019,7 @@ class RunsV1Api(BaseApi):
|
|
3039
3019
|
status: Annotated[
|
3040
3020
|
Optional[StrictStr], Field(description="Optional status.")
|
3041
3021
|
] = None,
|
3042
|
-
**kwargs
|
3022
|
+
**kwargs,
|
3043
3023
|
) -> V1MultiEventsResponse: # noqa: E501
|
3044
3024
|
"""Get multi runs events # noqa: E501
|
3045
3025
|
|
@@ -3099,7 +3079,7 @@ class RunsV1Api(BaseApi):
|
|
3099
3079
|
sample,
|
3100
3080
|
connection,
|
3101
3081
|
status,
|
3102
|
-
**kwargs
|
3082
|
+
**kwargs,
|
3103
3083
|
) # noqa: E501
|
3104
3084
|
|
3105
3085
|
@validate_call
|
@@ -3132,7 +3112,7 @@ class RunsV1Api(BaseApi):
|
|
3132
3112
|
status: Annotated[
|
3133
3113
|
Optional[StrictStr], Field(description="Optional status.")
|
3134
3114
|
] = None,
|
3135
|
-
**kwargs
|
3115
|
+
**kwargs,
|
3136
3116
|
): # noqa: E501
|
3137
3117
|
"""Get multi runs events # noqa: E501
|
3138
3118
|
|
@@ -3308,7 +3288,7 @@ class RunsV1Api(BaseApi):
|
|
3308
3288
|
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3309
3289
|
],
|
3310
3290
|
body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
|
3311
|
-
**kwargs
|
3291
|
+
**kwargs,
|
3312
3292
|
) -> V1MultiEventsResponse: # noqa: E501
|
3313
3293
|
"""Get multi run importance # noqa: E501
|
3314
3294
|
|
@@ -3355,7 +3335,7 @@ class RunsV1Api(BaseApi):
|
|
3355
3335
|
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3356
3336
|
],
|
3357
3337
|
body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
|
3358
|
-
**kwargs
|
3338
|
+
**kwargs,
|
3359
3339
|
): # noqa: E501
|
3360
3340
|
"""Get multi run importance # noqa: E501
|
3361
3341
|
|
@@ -3502,7 +3482,7 @@ class RunsV1Api(BaseApi):
|
|
3502
3482
|
uuid: Annotated[
|
3503
3483
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
3504
3484
|
],
|
3505
|
-
**kwargs
|
3485
|
+
**kwargs,
|
3506
3486
|
) -> V1Run: # noqa: E501
|
3507
3487
|
"""Get run # noqa: E501
|
3508
3488
|
|
@@ -3549,7 +3529,7 @@ class RunsV1Api(BaseApi):
|
|
3549
3529
|
uuid: Annotated[
|
3550
3530
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
3551
3531
|
],
|
3552
|
-
**kwargs
|
3532
|
+
**kwargs,
|
3553
3533
|
): # noqa: E501
|
3554
3534
|
"""Get run # noqa: E501
|
3555
3535
|
|
@@ -3696,7 +3676,7 @@ class RunsV1Api(BaseApi):
|
|
3696
3676
|
connection: Annotated[
|
3697
3677
|
Optional[StrictStr], Field(description="Connection to use.")
|
3698
3678
|
] = None,
|
3699
|
-
**kwargs
|
3679
|
+
**kwargs,
|
3700
3680
|
) -> str: # noqa: E501
|
3701
3681
|
"""Get run artifact # noqa: E501
|
3702
3682
|
|
@@ -3766,7 +3746,7 @@ class RunsV1Api(BaseApi):
|
|
3766
3746
|
connection: Annotated[
|
3767
3747
|
Optional[StrictStr], Field(description="Connection to use.")
|
3768
3748
|
] = None,
|
3769
|
-
**kwargs
|
3749
|
+
**kwargs,
|
3770
3750
|
): # noqa: E501
|
3771
3751
|
"""Get run artifact # noqa: E501
|
3772
3752
|
|
@@ -3932,7 +3912,7 @@ class RunsV1Api(BaseApi):
|
|
3932
3912
|
namespace: Annotated[
|
3933
3913
|
Optional[StrictStr], Field(description="namespace.")
|
3934
3914
|
] = None,
|
3935
|
-
**kwargs
|
3915
|
+
**kwargs,
|
3936
3916
|
) -> V1RunArtifact: # noqa: E501
|
3937
3917
|
"""Get run artifacts lineage # noqa: E501
|
3938
3918
|
|
@@ -3986,7 +3966,7 @@ class RunsV1Api(BaseApi):
|
|
3986
3966
|
namespace: Annotated[
|
3987
3967
|
Optional[StrictStr], Field(description="namespace.")
|
3988
3968
|
] = None,
|
3989
|
-
**kwargs
|
3969
|
+
**kwargs,
|
3990
3970
|
): # noqa: E501
|
3991
3971
|
"""Get run artifacts lineage # noqa: E501
|
3992
3972
|
|
@@ -4138,7 +4118,7 @@ class RunsV1Api(BaseApi):
|
|
4138
4118
|
connection: Annotated[
|
4139
4119
|
Optional[StrictStr], Field(description="Connection to use.")
|
4140
4120
|
] = None,
|
4141
|
-
**kwargs
|
4121
|
+
**kwargs,
|
4142
4122
|
) -> str: # noqa: E501
|
4143
4123
|
"""Get run artifacts # noqa: E501
|
4144
4124
|
|
@@ -4203,7 +4183,7 @@ class RunsV1Api(BaseApi):
|
|
4203
4183
|
connection: Annotated[
|
4204
4184
|
Optional[StrictStr], Field(description="Connection to use.")
|
4205
4185
|
] = None,
|
4206
|
-
**kwargs
|
4186
|
+
**kwargs,
|
4207
4187
|
): # noqa: E501
|
4208
4188
|
"""Get run artifacts # noqa: E501
|
4209
4189
|
|
@@ -4371,7 +4351,7 @@ class RunsV1Api(BaseApi):
|
|
4371
4351
|
Optional[StrictStr], Field(description="Query filter the search.")
|
4372
4352
|
] = None,
|
4373
4353
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
4374
|
-
**kwargs
|
4354
|
+
**kwargs,
|
4375
4355
|
) -> V1ListRunArtifactsResponse: # noqa: E501
|
4376
4356
|
"""Get run artifacts lineage # noqa: E501
|
4377
4357
|
|
@@ -4436,7 +4416,7 @@ class RunsV1Api(BaseApi):
|
|
4436
4416
|
Optional[StrictStr], Field(description="Query filter the search.")
|
4437
4417
|
] = None,
|
4438
4418
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
4439
|
-
**kwargs
|
4419
|
+
**kwargs,
|
4440
4420
|
): # noqa: E501
|
4441
4421
|
"""Get run artifacts lineage # noqa: E501
|
4442
4422
|
|
@@ -4607,7 +4587,7 @@ class RunsV1Api(BaseApi):
|
|
4607
4587
|
Optional[StrictStr], Field(description="Query filter the search.")
|
4608
4588
|
] = None,
|
4609
4589
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
4610
|
-
**kwargs
|
4590
|
+
**kwargs,
|
4611
4591
|
) -> V1ListRunArtifactsResponse: # noqa: E501
|
4612
4592
|
"""Get run artifacts lineage names # noqa: E501
|
4613
4593
|
|
@@ -4672,7 +4652,7 @@ class RunsV1Api(BaseApi):
|
|
4672
4652
|
Optional[StrictStr], Field(description="Query filter the search.")
|
4673
4653
|
] = None,
|
4674
4654
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
4675
|
-
**kwargs
|
4655
|
+
**kwargs,
|
4676
4656
|
): # noqa: E501
|
4677
4657
|
"""Get run artifacts lineage names # noqa: E501
|
4678
4658
|
|
@@ -4841,7 +4821,7 @@ class RunsV1Api(BaseApi):
|
|
4841
4821
|
connection: Annotated[
|
4842
4822
|
Optional[StrictStr], Field(description="Connection query param.")
|
4843
4823
|
] = None,
|
4844
|
-
**kwargs
|
4824
|
+
**kwargs,
|
4845
4825
|
) -> V1ArtifactTree: # noqa: E501
|
4846
4826
|
"""Get run artifacts tree # noqa: E501
|
4847
4827
|
|
@@ -4900,7 +4880,7 @@ class RunsV1Api(BaseApi):
|
|
4900
4880
|
connection: Annotated[
|
4901
4881
|
Optional[StrictStr], Field(description="Connection query param.")
|
4902
4882
|
] = None,
|
4903
|
-
**kwargs
|
4883
|
+
**kwargs,
|
4904
4884
|
): # noqa: E501
|
4905
4885
|
"""Get run artifacts tree # noqa: E501
|
4906
4886
|
|
@@ -5054,7 +5034,7 @@ class RunsV1Api(BaseApi):
|
|
5054
5034
|
Optional[StrictStr], Field(description="Query filter the search.")
|
5055
5035
|
] = None,
|
5056
5036
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
5057
|
-
**kwargs
|
5037
|
+
**kwargs,
|
5058
5038
|
) -> V1ListRunsResponse: # noqa: E501
|
5059
5039
|
"""Get run clones lineage # noqa: E501
|
5060
5040
|
|
@@ -5119,7 +5099,7 @@ class RunsV1Api(BaseApi):
|
|
5119
5099
|
Optional[StrictStr], Field(description="Query filter the search.")
|
5120
5100
|
] = None,
|
5121
5101
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
5122
|
-
**kwargs
|
5102
|
+
**kwargs,
|
5123
5103
|
): # noqa: E501
|
5124
5104
|
"""Get run clones lineage # noqa: E501
|
5125
5105
|
|
@@ -5290,7 +5270,7 @@ class RunsV1Api(BaseApi):
|
|
5290
5270
|
Optional[StrictStr], Field(description="Query filter the search.")
|
5291
5271
|
] = None,
|
5292
5272
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
5293
|
-
**kwargs
|
5273
|
+
**kwargs,
|
5294
5274
|
) -> V1ListRunConnectionsResponse: # noqa: E501
|
5295
5275
|
"""Get run connections lineage # noqa: E501
|
5296
5276
|
|
@@ -5355,7 +5335,7 @@ class RunsV1Api(BaseApi):
|
|
5355
5335
|
Optional[StrictStr], Field(description="Query filter the search.")
|
5356
5336
|
] = None,
|
5357
5337
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
5358
|
-
**kwargs
|
5338
|
+
**kwargs,
|
5359
5339
|
): # noqa: E501
|
5360
5340
|
"""Get run connections lineage # noqa: E501
|
5361
5341
|
|
@@ -5526,7 +5506,7 @@ class RunsV1Api(BaseApi):
|
|
5526
5506
|
Optional[StrictStr], Field(description="Query filter the search.")
|
5527
5507
|
] = None,
|
5528
5508
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
5529
|
-
**kwargs
|
5509
|
+
**kwargs,
|
5530
5510
|
) -> V1ListRunEdgesResponse: # noqa: E501
|
5531
5511
|
"""Get run downstream lineage # noqa: E501
|
5532
5512
|
|
@@ -5591,7 +5571,7 @@ class RunsV1Api(BaseApi):
|
|
5591
5571
|
Optional[StrictStr], Field(description="Query filter the search.")
|
5592
5572
|
] = None,
|
5593
5573
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
5594
|
-
**kwargs
|
5574
|
+
**kwargs,
|
5595
5575
|
): # noqa: E501
|
5596
5576
|
"""Get run downstream lineage # noqa: E501
|
5597
5577
|
|
@@ -5773,7 +5753,7 @@ class RunsV1Api(BaseApi):
|
|
5773
5753
|
status: Annotated[
|
5774
5754
|
Optional[StrictStr], Field(description="Optional status.")
|
5775
5755
|
] = None,
|
5776
|
-
**kwargs
|
5756
|
+
**kwargs,
|
5777
5757
|
) -> V1EventsResponse: # noqa: E501
|
5778
5758
|
"""Get run events # noqa: E501
|
5779
5759
|
|
@@ -5833,7 +5813,7 @@ class RunsV1Api(BaseApi):
|
|
5833
5813
|
sample,
|
5834
5814
|
connection,
|
5835
5815
|
status,
|
5836
|
-
**kwargs
|
5816
|
+
**kwargs,
|
5837
5817
|
) # noqa: E501
|
5838
5818
|
|
5839
5819
|
@validate_call
|
@@ -5866,7 +5846,7 @@ class RunsV1Api(BaseApi):
|
|
5866
5846
|
status: Annotated[
|
5867
5847
|
Optional[StrictStr], Field(description="Optional status.")
|
5868
5848
|
] = None,
|
5869
|
-
**kwargs
|
5849
|
+
**kwargs,
|
5870
5850
|
): # noqa: E501
|
5871
5851
|
"""Get run events # noqa: E501
|
5872
5852
|
|
@@ -6056,7 +6036,7 @@ class RunsV1Api(BaseApi):
|
|
6056
6036
|
connection: Annotated[
|
6057
6037
|
Optional[StrictStr], Field(description="Connection to use.")
|
6058
6038
|
] = None,
|
6059
|
-
**kwargs
|
6039
|
+
**kwargs,
|
6060
6040
|
) -> V1Logs: # noqa: E501
|
6061
6041
|
"""Get run logs # noqa: E501
|
6062
6042
|
|
@@ -6107,7 +6087,7 @@ class RunsV1Api(BaseApi):
|
|
6107
6087
|
last_file,
|
6108
6088
|
force,
|
6109
6089
|
connection,
|
6110
|
-
**kwargs
|
6090
|
+
**kwargs,
|
6111
6091
|
) # noqa: E501
|
6112
6092
|
|
6113
6093
|
@validate_call
|
@@ -6133,7 +6113,7 @@ class RunsV1Api(BaseApi):
|
|
6133
6113
|
connection: Annotated[
|
6134
6114
|
Optional[StrictStr], Field(description="Connection to use.")
|
6135
6115
|
] = None,
|
6136
|
-
**kwargs
|
6116
|
+
**kwargs,
|
6137
6117
|
): # noqa: E501
|
6138
6118
|
"""Get run logs # noqa: E501
|
6139
6119
|
|
@@ -6308,7 +6288,7 @@ class RunsV1Api(BaseApi):
|
|
6308
6288
|
uuid: Annotated[
|
6309
6289
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
6310
6290
|
],
|
6311
|
-
**kwargs
|
6291
|
+
**kwargs,
|
6312
6292
|
) -> V1RunSettings: # noqa: E501
|
6313
6293
|
"""Get Run namespace # noqa: E501
|
6314
6294
|
|
@@ -6340,9 +6320,7 @@ class RunsV1Api(BaseApi):
|
|
6340
6320
|
:rtype: V1RunSettings
|
6341
6321
|
"""
|
6342
6322
|
kwargs["_return_http_data_only"] = True
|
6343
|
-
return self.get_run_namespace_with_http_info(
|
6344
|
-
owner, entity, uuid, **kwargs
|
6345
|
-
) # noqa: E501
|
6323
|
+
return self.get_run_namespace_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
6346
6324
|
|
6347
6325
|
@validate_call
|
6348
6326
|
def get_run_namespace_with_http_info(
|
@@ -6357,7 +6335,7 @@ class RunsV1Api(BaseApi):
|
|
6357
6335
|
uuid: Annotated[
|
6358
6336
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
6359
6337
|
],
|
6360
|
-
**kwargs
|
6338
|
+
**kwargs,
|
6361
6339
|
): # noqa: E501
|
6362
6340
|
"""Get Run namespace # noqa: E501
|
6363
6341
|
|
@@ -6509,7 +6487,7 @@ class RunsV1Api(BaseApi):
|
|
6509
6487
|
status: Annotated[
|
6510
6488
|
Optional[StrictStr], Field(description="Optional status.")
|
6511
6489
|
] = None,
|
6512
|
-
**kwargs
|
6490
|
+
**kwargs,
|
6513
6491
|
) -> V1EventsResponse: # noqa: E501
|
6514
6492
|
"""Get run resources events # noqa: E501
|
6515
6493
|
|
@@ -6566,7 +6544,7 @@ class RunsV1Api(BaseApi):
|
|
6566
6544
|
sample,
|
6567
6545
|
connection,
|
6568
6546
|
status,
|
6569
|
-
**kwargs
|
6547
|
+
**kwargs,
|
6570
6548
|
) # noqa: E501
|
6571
6549
|
|
6572
6550
|
@validate_call
|
@@ -6598,7 +6576,7 @@ class RunsV1Api(BaseApi):
|
|
6598
6576
|
status: Annotated[
|
6599
6577
|
Optional[StrictStr], Field(description="Optional status.")
|
6600
6578
|
] = None,
|
6601
|
-
**kwargs
|
6579
|
+
**kwargs,
|
6602
6580
|
): # noqa: E501
|
6603
6581
|
"""Get run resources events # noqa: E501
|
6604
6582
|
|
@@ -6773,7 +6751,7 @@ class RunsV1Api(BaseApi):
|
|
6773
6751
|
uuid: Annotated[
|
6774
6752
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
6775
6753
|
],
|
6776
|
-
**kwargs
|
6754
|
+
**kwargs,
|
6777
6755
|
) -> V1RunSettings: # noqa: E501
|
6778
6756
|
"""Get Run settings # noqa: E501
|
6779
6757
|
|
@@ -6805,9 +6783,7 @@ class RunsV1Api(BaseApi):
|
|
6805
6783
|
:rtype: V1RunSettings
|
6806
6784
|
"""
|
6807
6785
|
kwargs["_return_http_data_only"] = True
|
6808
|
-
return self.get_run_settings_with_http_info(
|
6809
|
-
owner, entity, uuid, **kwargs
|
6810
|
-
) # noqa: E501
|
6786
|
+
return self.get_run_settings_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
6811
6787
|
|
6812
6788
|
@validate_call
|
6813
6789
|
def get_run_settings_with_http_info(
|
@@ -6822,7 +6798,7 @@ class RunsV1Api(BaseApi):
|
|
6822
6798
|
uuid: Annotated[
|
6823
6799
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
6824
6800
|
],
|
6825
|
-
**kwargs
|
6801
|
+
**kwargs,
|
6826
6802
|
): # noqa: E501
|
6827
6803
|
"""Get Run settings # noqa: E501
|
6828
6804
|
|
@@ -6975,7 +6951,7 @@ class RunsV1Api(BaseApi):
|
|
6975
6951
|
Optional[StrictStr], Field(description="Stats group.")
|
6976
6952
|
] = None,
|
6977
6953
|
trunc: Annotated[Optional[StrictStr], Field(description="Stats trunc.")] = None,
|
6978
|
-
**kwargs
|
6954
|
+
**kwargs,
|
6979
6955
|
) -> object: # noqa: E501
|
6980
6956
|
"""Get run stats # noqa: E501
|
6981
6957
|
|
@@ -7041,7 +7017,7 @@ class RunsV1Api(BaseApi):
|
|
7041
7017
|
aggregate,
|
7042
7018
|
groupby,
|
7043
7019
|
trunc,
|
7044
|
-
**kwargs
|
7020
|
+
**kwargs,
|
7045
7021
|
) # noqa: E501
|
7046
7022
|
|
7047
7023
|
@validate_call
|
@@ -7074,7 +7050,7 @@ class RunsV1Api(BaseApi):
|
|
7074
7050
|
Optional[StrictStr], Field(description="Stats group.")
|
7075
7051
|
] = None,
|
7076
7052
|
trunc: Annotated[Optional[StrictStr], Field(description="Stats trunc.")] = None,
|
7077
|
-
**kwargs
|
7053
|
+
**kwargs,
|
7078
7054
|
): # noqa: E501
|
7079
7055
|
"""Get run stats # noqa: E501
|
7080
7056
|
|
@@ -7264,7 +7240,7 @@ class RunsV1Api(BaseApi):
|
|
7264
7240
|
uuid: Annotated[
|
7265
7241
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
7266
7242
|
],
|
7267
|
-
**kwargs
|
7243
|
+
**kwargs,
|
7268
7244
|
) -> V1Status: # noqa: E501
|
7269
7245
|
"""Get run statuses # noqa: E501
|
7270
7246
|
|
@@ -7296,9 +7272,7 @@ class RunsV1Api(BaseApi):
|
|
7296
7272
|
:rtype: V1Status
|
7297
7273
|
"""
|
7298
7274
|
kwargs["_return_http_data_only"] = True
|
7299
|
-
return self.get_run_statuses_with_http_info(
|
7300
|
-
owner, entity, uuid, **kwargs
|
7301
|
-
) # noqa: E501
|
7275
|
+
return self.get_run_statuses_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
7302
7276
|
|
7303
7277
|
@validate_call
|
7304
7278
|
def get_run_statuses_with_http_info(
|
@@ -7313,7 +7287,7 @@ class RunsV1Api(BaseApi):
|
|
7313
7287
|
uuid: Annotated[
|
7314
7288
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
7315
7289
|
],
|
7316
|
-
**kwargs
|
7290
|
+
**kwargs,
|
7317
7291
|
): # noqa: E501
|
7318
7292
|
"""Get run statuses # noqa: E501
|
7319
7293
|
|
@@ -7455,7 +7429,7 @@ class RunsV1Api(BaseApi):
|
|
7455
7429
|
Optional[StrictStr], Field(description="Query filter the search.")
|
7456
7430
|
] = None,
|
7457
7431
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
7458
|
-
**kwargs
|
7432
|
+
**kwargs,
|
7459
7433
|
) -> V1ListRunEdgesResponse: # noqa: E501
|
7460
7434
|
"""Get run upstream lineage # noqa: E501
|
7461
7435
|
|
@@ -7520,7 +7494,7 @@ class RunsV1Api(BaseApi):
|
|
7520
7494
|
Optional[StrictStr], Field(description="Query filter the search.")
|
7521
7495
|
] = None,
|
7522
7496
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
7523
|
-
**kwargs
|
7497
|
+
**kwargs,
|
7524
7498
|
): # noqa: E501
|
7525
7499
|
"""Get run upstream lineage # noqa: E501
|
7526
7500
|
|
@@ -7696,7 +7670,7 @@ class RunsV1Api(BaseApi):
|
|
7696
7670
|
Optional[StrictStr], Field(description="Mode of the search.")
|
7697
7671
|
] = None,
|
7698
7672
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
7699
|
-
**kwargs
|
7673
|
+
**kwargs,
|
7700
7674
|
) -> V1ListRunArtifactsResponse: # noqa: E501
|
7701
7675
|
"""Get runs artifacts lineage # noqa: E501
|
7702
7676
|
|
@@ -7768,7 +7742,7 @@ class RunsV1Api(BaseApi):
|
|
7768
7742
|
Optional[StrictStr], Field(description="Mode of the search.")
|
7769
7743
|
] = None,
|
7770
7744
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
7771
|
-
**kwargs
|
7745
|
+
**kwargs,
|
7772
7746
|
): # noqa: E501
|
7773
7747
|
"""Get runs artifacts lineage # noqa: E501
|
7774
7748
|
|
@@ -7938,7 +7912,7 @@ class RunsV1Api(BaseApi):
|
|
7938
7912
|
uuid: Annotated[
|
7939
7913
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
7940
7914
|
],
|
7941
|
-
**kwargs
|
7915
|
+
**kwargs,
|
7942
7916
|
) -> V1Auth: # noqa: E501
|
7943
7917
|
"""Impersonate run token # noqa: E501
|
7944
7918
|
|
@@ -7970,9 +7944,7 @@ class RunsV1Api(BaseApi):
|
|
7970
7944
|
:rtype: V1Auth
|
7971
7945
|
"""
|
7972
7946
|
kwargs["_return_http_data_only"] = True
|
7973
|
-
return self.impersonate_token_with_http_info(
|
7974
|
-
owner, entity, uuid, **kwargs
|
7975
|
-
) # noqa: E501
|
7947
|
+
return self.impersonate_token_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
7976
7948
|
|
7977
7949
|
@validate_call
|
7978
7950
|
def impersonate_token_with_http_info(
|
@@ -7987,7 +7959,7 @@ class RunsV1Api(BaseApi):
|
|
7987
7959
|
uuid: Annotated[
|
7988
7960
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
7989
7961
|
],
|
7990
|
-
**kwargs
|
7962
|
+
**kwargs,
|
7991
7963
|
): # noqa: E501
|
7992
7964
|
"""Impersonate run token # noqa: E501
|
7993
7965
|
|
@@ -8139,7 +8111,7 @@ class RunsV1Api(BaseApi):
|
|
8139
8111
|
status: Annotated[
|
8140
8112
|
Optional[StrictStr], Field(description="Optional status.")
|
8141
8113
|
] = None,
|
8142
|
-
**kwargs
|
8114
|
+
**kwargs,
|
8143
8115
|
) -> object: # noqa: E501
|
8144
8116
|
"""Inspect an active run full conditions # noqa: E501
|
8145
8117
|
|
@@ -8196,7 +8168,7 @@ class RunsV1Api(BaseApi):
|
|
8196
8168
|
sample,
|
8197
8169
|
connection,
|
8198
8170
|
status,
|
8199
|
-
**kwargs
|
8171
|
+
**kwargs,
|
8200
8172
|
) # noqa: E501
|
8201
8173
|
|
8202
8174
|
@validate_call
|
@@ -8228,7 +8200,7 @@ class RunsV1Api(BaseApi):
|
|
8228
8200
|
status: Annotated[
|
8229
8201
|
Optional[StrictStr], Field(description="Optional status.")
|
8230
8202
|
] = None,
|
8231
|
-
**kwargs
|
8203
|
+
**kwargs,
|
8232
8204
|
): # noqa: E501
|
8233
8205
|
"""Inspect an active run full conditions # noqa: E501
|
8234
8206
|
|
@@ -8403,7 +8375,7 @@ class RunsV1Api(BaseApi):
|
|
8403
8375
|
uuid: Annotated[
|
8404
8376
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
8405
8377
|
],
|
8406
|
-
**kwargs
|
8378
|
+
**kwargs,
|
8407
8379
|
) -> None: # noqa: E501
|
8408
8380
|
"""Invalidate run # noqa: E501
|
8409
8381
|
|
@@ -8435,9 +8407,7 @@ class RunsV1Api(BaseApi):
|
|
8435
8407
|
:rtype: None
|
8436
8408
|
"""
|
8437
8409
|
kwargs["_return_http_data_only"] = True
|
8438
|
-
return self.invalidate_run_with_http_info(
|
8439
|
-
owner, entity, uuid, **kwargs
|
8440
|
-
) # noqa: E501
|
8410
|
+
return self.invalidate_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
8441
8411
|
|
8442
8412
|
@validate_call
|
8443
8413
|
def invalidate_run_with_http_info(
|
@@ -8452,7 +8422,7 @@ class RunsV1Api(BaseApi):
|
|
8452
8422
|
uuid: Annotated[
|
8453
8423
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
8454
8424
|
],
|
8455
|
-
**kwargs
|
8425
|
+
**kwargs,
|
8456
8426
|
): # noqa: E501
|
8457
8427
|
"""Invalidate run # noqa: E501
|
8458
8428
|
|
@@ -8576,7 +8546,7 @@ class RunsV1Api(BaseApi):
|
|
8576
8546
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
8577
8547
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
8578
8548
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
8579
|
-
**kwargs
|
8549
|
+
**kwargs,
|
8580
8550
|
) -> None: # noqa: E501
|
8581
8551
|
"""Invalidate runs # noqa: E501
|
8582
8552
|
|
@@ -8608,9 +8578,7 @@ class RunsV1Api(BaseApi):
|
|
8608
8578
|
:rtype: None
|
8609
8579
|
"""
|
8610
8580
|
kwargs["_return_http_data_only"] = True
|
8611
|
-
return self.invalidate_runs_with_http_info(
|
8612
|
-
owner, name, body, **kwargs
|
8613
|
-
) # noqa: E501
|
8581
|
+
return self.invalidate_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
8614
8582
|
|
8615
8583
|
@validate_call
|
8616
8584
|
def invalidate_runs_with_http_info(
|
@@ -8618,7 +8586,7 @@ class RunsV1Api(BaseApi):
|
|
8618
8586
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
8619
8587
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
8620
8588
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
8621
|
-
**kwargs
|
8589
|
+
**kwargs,
|
8622
8590
|
): # noqa: E501
|
8623
8591
|
"""Invalidate runs # noqa: E501
|
8624
8592
|
|
@@ -8759,7 +8727,7 @@ class RunsV1Api(BaseApi):
|
|
8759
8727
|
Optional[StrictStr], Field(description="Query filter the search.")
|
8760
8728
|
] = None,
|
8761
8729
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
8762
|
-
**kwargs
|
8730
|
+
**kwargs,
|
8763
8731
|
) -> V1ListRunsResponse: # noqa: E501
|
8764
8732
|
"""List archived runs for user # noqa: E501
|
8765
8733
|
|
@@ -8816,7 +8784,7 @@ class RunsV1Api(BaseApi):
|
|
8816
8784
|
Optional[StrictStr], Field(description="Query filter the search.")
|
8817
8785
|
] = None,
|
8818
8786
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
8819
|
-
**kwargs
|
8787
|
+
**kwargs,
|
8820
8788
|
): # noqa: E501
|
8821
8789
|
"""List archived runs for user # noqa: E501
|
8822
8790
|
|
@@ -8966,7 +8934,7 @@ class RunsV1Api(BaseApi):
|
|
8966
8934
|
Optional[StrictStr], Field(description="Query filter the search.")
|
8967
8935
|
] = None,
|
8968
8936
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
8969
|
-
**kwargs
|
8937
|
+
**kwargs,
|
8970
8938
|
) -> V1ListBookmarksResponse: # noqa: E501
|
8971
8939
|
"""List bookmarked runs for user # noqa: E501
|
8972
8940
|
|
@@ -9023,7 +8991,7 @@ class RunsV1Api(BaseApi):
|
|
9023
8991
|
Optional[StrictStr], Field(description="Query filter the search.")
|
9024
8992
|
] = None,
|
9025
8993
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
9026
|
-
**kwargs
|
8994
|
+
**kwargs,
|
9027
8995
|
): # noqa: E501
|
9028
8996
|
"""List bookmarked runs for user # noqa: E501
|
9029
8997
|
|
@@ -9182,7 +9150,7 @@ class RunsV1Api(BaseApi):
|
|
9182
9150
|
Optional[StrictStr], Field(description="Mode of the search.")
|
9183
9151
|
] = None,
|
9184
9152
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
9185
|
-
**kwargs
|
9153
|
+
**kwargs,
|
9186
9154
|
) -> V1ListRunsResponse: # noqa: E501
|
9187
9155
|
"""List runs # noqa: E501
|
9188
9156
|
|
@@ -9254,7 +9222,7 @@ class RunsV1Api(BaseApi):
|
|
9254
9222
|
Optional[StrictStr], Field(description="Mode of the search.")
|
9255
9223
|
] = None,
|
9256
9224
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
9257
|
-
**kwargs
|
9225
|
+
**kwargs,
|
9258
9226
|
): # noqa: E501
|
9259
9227
|
"""List runs # noqa: E501
|
9260
9228
|
|
@@ -9423,7 +9391,7 @@ class RunsV1Api(BaseApi):
|
|
9423
9391
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
9424
9392
|
],
|
9425
9393
|
body: V1EntityNotificationBody,
|
9426
|
-
**kwargs
|
9394
|
+
**kwargs,
|
9427
9395
|
) -> None: # noqa: E501
|
9428
9396
|
"""Notify run status # noqa: E501
|
9429
9397
|
|
@@ -9475,7 +9443,7 @@ class RunsV1Api(BaseApi):
|
|
9475
9443
|
StrictStr, Field(..., description="Uuid identifier of the entity")
|
9476
9444
|
],
|
9477
9445
|
body: V1EntityNotificationBody,
|
9478
|
-
**kwargs
|
9446
|
+
**kwargs,
|
9479
9447
|
): # noqa: E501
|
9480
9448
|
"""Notify run status # noqa: E501
|
9481
9449
|
|
@@ -9618,7 +9586,7 @@ class RunsV1Api(BaseApi):
|
|
9618
9586
|
],
|
9619
9587
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
9620
9588
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
9621
|
-
**kwargs
|
9589
|
+
**kwargs,
|
9622
9590
|
) -> V1Run: # noqa: E501
|
9623
9591
|
"""Patch run # noqa: E501
|
9624
9592
|
|
@@ -9652,9 +9620,7 @@ class RunsV1Api(BaseApi):
|
|
9652
9620
|
:rtype: V1Run
|
9653
9621
|
"""
|
9654
9622
|
kwargs["_return_http_data_only"] = True
|
9655
|
-
return self.patch_run_with_http_info(
|
9656
|
-
owner, project, run_uuid, body, **kwargs
|
9657
|
-
) # noqa: E501
|
9623
|
+
return self.patch_run_with_http_info(owner, project, run_uuid, body, **kwargs) # noqa: E501
|
9658
9624
|
|
9659
9625
|
@validate_call
|
9660
9626
|
def patch_run_with_http_info(
|
@@ -9665,7 +9631,7 @@ class RunsV1Api(BaseApi):
|
|
9665
9631
|
],
|
9666
9632
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
9667
9633
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
9668
|
-
**kwargs
|
9634
|
+
**kwargs,
|
9669
9635
|
): # noqa: E501
|
9670
9636
|
"""Patch run # noqa: E501
|
9671
9637
|
|
@@ -9809,7 +9775,7 @@ class RunsV1Api(BaseApi):
|
|
9809
9775
|
],
|
9810
9776
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
9811
9777
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
9812
|
-
**kwargs
|
9778
|
+
**kwargs,
|
9813
9779
|
) -> V1Run: # noqa: E501
|
9814
9780
|
"""Restart run # noqa: E501
|
9815
9781
|
|
@@ -9843,9 +9809,7 @@ class RunsV1Api(BaseApi):
|
|
9843
9809
|
:rtype: V1Run
|
9844
9810
|
"""
|
9845
9811
|
kwargs["_return_http_data_only"] = True
|
9846
|
-
return self.restart_run_with_http_info(
|
9847
|
-
owner, project, run_uuid, body, **kwargs
|
9848
|
-
) # noqa: E501
|
9812
|
+
return self.restart_run_with_http_info(owner, project, run_uuid, body, **kwargs) # noqa: E501
|
9849
9813
|
|
9850
9814
|
@validate_call
|
9851
9815
|
def restart_run_with_http_info(
|
@@ -9856,7 +9820,7 @@ class RunsV1Api(BaseApi):
|
|
9856
9820
|
],
|
9857
9821
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
9858
9822
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
9859
|
-
**kwargs
|
9823
|
+
**kwargs,
|
9860
9824
|
): # noqa: E501
|
9861
9825
|
"""Restart run # noqa: E501
|
9862
9826
|
|
@@ -10004,7 +9968,7 @@ class RunsV1Api(BaseApi):
|
|
10004
9968
|
uuid: Annotated[
|
10005
9969
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
10006
9970
|
],
|
10007
|
-
**kwargs
|
9971
|
+
**kwargs,
|
10008
9972
|
) -> None: # noqa: E501
|
10009
9973
|
"""Restore run # noqa: E501
|
10010
9974
|
|
@@ -10036,9 +10000,7 @@ class RunsV1Api(BaseApi):
|
|
10036
10000
|
:rtype: None
|
10037
10001
|
"""
|
10038
10002
|
kwargs["_return_http_data_only"] = True
|
10039
|
-
return self.restore_run_with_http_info(
|
10040
|
-
owner, entity, uuid, **kwargs
|
10041
|
-
) # noqa: E501
|
10003
|
+
return self.restore_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
10042
10004
|
|
10043
10005
|
@validate_call
|
10044
10006
|
def restore_run_with_http_info(
|
@@ -10053,7 +10015,7 @@ class RunsV1Api(BaseApi):
|
|
10053
10015
|
uuid: Annotated[
|
10054
10016
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
10055
10017
|
],
|
10056
|
-
**kwargs
|
10018
|
+
**kwargs,
|
10057
10019
|
): # noqa: E501
|
10058
10020
|
"""Restore run # noqa: E501
|
10059
10021
|
|
@@ -10177,7 +10139,7 @@ class RunsV1Api(BaseApi):
|
|
10177
10139
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
10178
10140
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
10179
10141
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
10180
|
-
**kwargs
|
10142
|
+
**kwargs,
|
10181
10143
|
) -> None: # noqa: E501
|
10182
10144
|
"""Restore runs # noqa: E501
|
10183
10145
|
|
@@ -10209,9 +10171,7 @@ class RunsV1Api(BaseApi):
|
|
10209
10171
|
:rtype: None
|
10210
10172
|
"""
|
10211
10173
|
kwargs["_return_http_data_only"] = True
|
10212
|
-
return self.restore_runs_with_http_info(
|
10213
|
-
owner, name, body, **kwargs
|
10214
|
-
) # noqa: E501
|
10174
|
+
return self.restore_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
10215
10175
|
|
10216
10176
|
@validate_call
|
10217
10177
|
def restore_runs_with_http_info(
|
@@ -10219,7 +10179,7 @@ class RunsV1Api(BaseApi):
|
|
10219
10179
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
10220
10180
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
10221
10181
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
10222
|
-
**kwargs
|
10182
|
+
**kwargs,
|
10223
10183
|
): # noqa: E501
|
10224
10184
|
"""Restore runs # noqa: E501
|
10225
10185
|
|
@@ -10354,7 +10314,7 @@ class RunsV1Api(BaseApi):
|
|
10354
10314
|
],
|
10355
10315
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
10356
10316
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
10357
|
-
**kwargs
|
10317
|
+
**kwargs,
|
10358
10318
|
) -> V1Run: # noqa: E501
|
10359
10319
|
"""Resume run # noqa: E501
|
10360
10320
|
|
@@ -10388,9 +10348,7 @@ class RunsV1Api(BaseApi):
|
|
10388
10348
|
:rtype: V1Run
|
10389
10349
|
"""
|
10390
10350
|
kwargs["_return_http_data_only"] = True
|
10391
|
-
return self.resume_run_with_http_info(
|
10392
|
-
owner, project, run_uuid, body, **kwargs
|
10393
|
-
) # noqa: E501
|
10351
|
+
return self.resume_run_with_http_info(owner, project, run_uuid, body, **kwargs) # noqa: E501
|
10394
10352
|
|
10395
10353
|
@validate_call
|
10396
10354
|
def resume_run_with_http_info(
|
@@ -10401,7 +10359,7 @@ class RunsV1Api(BaseApi):
|
|
10401
10359
|
],
|
10402
10360
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
10403
10361
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
10404
|
-
**kwargs
|
10362
|
+
**kwargs,
|
10405
10363
|
): # noqa: E501
|
10406
10364
|
"""Resume run # noqa: E501
|
10407
10365
|
|
@@ -10543,7 +10501,7 @@ class RunsV1Api(BaseApi):
|
|
10543
10501
|
project: Annotated[StrictStr, Field(..., description="Project")],
|
10544
10502
|
uuid: Annotated[StrictStr, Field(..., description="Run uuid")],
|
10545
10503
|
body: Annotated[V1RunEdgesGraph, Field(..., description="Run edges graph")],
|
10546
|
-
**kwargs
|
10504
|
+
**kwargs,
|
10547
10505
|
) -> None: # noqa: E501
|
10548
10506
|
"""Set run edges graph lineage # noqa: E501
|
10549
10507
|
|
@@ -10588,7 +10546,7 @@ class RunsV1Api(BaseApi):
|
|
10588
10546
|
project: Annotated[StrictStr, Field(..., description="Project")],
|
10589
10547
|
uuid: Annotated[StrictStr, Field(..., description="Run uuid")],
|
10590
10548
|
body: Annotated[V1RunEdgesGraph, Field(..., description="Run edges graph")],
|
10591
|
-
**kwargs
|
10549
|
+
**kwargs,
|
10592
10550
|
): # noqa: E501
|
10593
10551
|
"""Set run edges graph lineage # noqa: E501
|
10594
10552
|
|
@@ -10728,7 +10686,7 @@ class RunsV1Api(BaseApi):
|
|
10728
10686
|
uuid: Annotated[
|
10729
10687
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
10730
10688
|
],
|
10731
|
-
**kwargs
|
10689
|
+
**kwargs,
|
10732
10690
|
) -> None: # noqa: E501
|
10733
10691
|
"""Skip run # noqa: E501
|
10734
10692
|
|
@@ -10775,7 +10733,7 @@ class RunsV1Api(BaseApi):
|
|
10775
10733
|
uuid: Annotated[
|
10776
10734
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
10777
10735
|
],
|
10778
|
-
**kwargs
|
10736
|
+
**kwargs,
|
10779
10737
|
): # noqa: E501
|
10780
10738
|
"""Skip run # noqa: E501
|
10781
10739
|
|
@@ -10897,7 +10855,7 @@ class RunsV1Api(BaseApi):
|
|
10897
10855
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
10898
10856
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
10899
10857
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
10900
|
-
**kwargs
|
10858
|
+
**kwargs,
|
10901
10859
|
) -> None: # noqa: E501
|
10902
10860
|
"""Skip runs # noqa: E501
|
10903
10861
|
|
@@ -10937,7 +10895,7 @@ class RunsV1Api(BaseApi):
|
|
10937
10895
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
10938
10896
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
10939
10897
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
10940
|
-
**kwargs
|
10898
|
+
**kwargs,
|
10941
10899
|
): # noqa: E501
|
10942
10900
|
"""Skip runs # noqa: E501
|
10943
10901
|
|
@@ -11074,7 +11032,7 @@ class RunsV1Api(BaseApi):
|
|
11074
11032
|
uuid: Annotated[
|
11075
11033
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
11076
11034
|
],
|
11077
|
-
**kwargs
|
11035
|
+
**kwargs,
|
11078
11036
|
) -> None: # noqa: E501
|
11079
11037
|
"""Stop run # noqa: E501
|
11080
11038
|
|
@@ -11121,7 +11079,7 @@ class RunsV1Api(BaseApi):
|
|
11121
11079
|
uuid: Annotated[
|
11122
11080
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
11123
11081
|
],
|
11124
|
-
**kwargs
|
11082
|
+
**kwargs,
|
11125
11083
|
): # noqa: E501
|
11126
11084
|
"""Stop run # noqa: E501
|
11127
11085
|
|
@@ -11245,7 +11203,7 @@ class RunsV1Api(BaseApi):
|
|
11245
11203
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
11246
11204
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
11247
11205
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
11248
|
-
**kwargs
|
11206
|
+
**kwargs,
|
11249
11207
|
) -> None: # noqa: E501
|
11250
11208
|
"""Stop runs # noqa: E501
|
11251
11209
|
|
@@ -11285,7 +11243,7 @@ class RunsV1Api(BaseApi):
|
|
11285
11243
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
11286
11244
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
11287
11245
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
11288
|
-
**kwargs
|
11246
|
+
**kwargs,
|
11289
11247
|
): # noqa: E501
|
11290
11248
|
"""Stop runs # noqa: E501
|
11291
11249
|
|
@@ -11419,7 +11377,7 @@ class RunsV1Api(BaseApi):
|
|
11419
11377
|
StrictStr, Field(..., description="Project where the run will be assigned")
|
11420
11378
|
],
|
11421
11379
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
11422
|
-
**kwargs
|
11380
|
+
**kwargs,
|
11423
11381
|
) -> None: # noqa: E501
|
11424
11382
|
"""Sync offline run # noqa: E501
|
11425
11383
|
|
@@ -11451,9 +11409,7 @@ class RunsV1Api(BaseApi):
|
|
11451
11409
|
:rtype: None
|
11452
11410
|
"""
|
11453
11411
|
kwargs["_return_http_data_only"] = True
|
11454
|
-
return self.sync_run_with_http_info(
|
11455
|
-
owner, project, body, **kwargs
|
11456
|
-
) # noqa: E501
|
11412
|
+
return self.sync_run_with_http_info(owner, project, body, **kwargs) # noqa: E501
|
11457
11413
|
|
11458
11414
|
@validate_call
|
11459
11415
|
def sync_run_with_http_info(
|
@@ -11463,7 +11419,7 @@ class RunsV1Api(BaseApi):
|
|
11463
11419
|
StrictStr, Field(..., description="Project where the run will be assigned")
|
11464
11420
|
],
|
11465
11421
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
11466
|
-
**kwargs
|
11422
|
+
**kwargs,
|
11467
11423
|
): # noqa: E501
|
11468
11424
|
"""Sync offline run # noqa: E501
|
11469
11425
|
|
@@ -11595,7 +11551,7 @@ class RunsV1Api(BaseApi):
|
|
11595
11551
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
11596
11552
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
11597
11553
|
body: Annotated[V1EntitiesTags, Field(..., description="Data")],
|
11598
|
-
**kwargs
|
11554
|
+
**kwargs,
|
11599
11555
|
) -> None: # noqa: E501
|
11600
11556
|
"""Tag runs # noqa: E501
|
11601
11557
|
|
@@ -11635,7 +11591,7 @@ class RunsV1Api(BaseApi):
|
|
11635
11591
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
11636
11592
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
11637
11593
|
body: Annotated[V1EntitiesTags, Field(..., description="Data")],
|
11638
|
-
**kwargs
|
11594
|
+
**kwargs,
|
11639
11595
|
): # noqa: E501
|
11640
11596
|
"""Tag runs # noqa: E501
|
11641
11597
|
|
@@ -11770,7 +11726,7 @@ class RunsV1Api(BaseApi):
|
|
11770
11726
|
],
|
11771
11727
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
11772
11728
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
11773
|
-
**kwargs
|
11729
|
+
**kwargs,
|
11774
11730
|
) -> None: # noqa: E501
|
11775
11731
|
"""Transfer run # noqa: E501
|
11776
11732
|
|
@@ -11817,7 +11773,7 @@ class RunsV1Api(BaseApi):
|
|
11817
11773
|
],
|
11818
11774
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
11819
11775
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
11820
|
-
**kwargs
|
11776
|
+
**kwargs,
|
11821
11777
|
): # noqa: E501
|
11822
11778
|
"""Transfer run # noqa: E501
|
11823
11779
|
|
@@ -11953,7 +11909,7 @@ class RunsV1Api(BaseApi):
|
|
11953
11909
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
11954
11910
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
11955
11911
|
body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
|
11956
|
-
**kwargs
|
11912
|
+
**kwargs,
|
11957
11913
|
) -> None: # noqa: E501
|
11958
11914
|
"""Transfer runs # noqa: E501
|
11959
11915
|
|
@@ -11985,9 +11941,7 @@ class RunsV1Api(BaseApi):
|
|
11985
11941
|
:rtype: None
|
11986
11942
|
"""
|
11987
11943
|
kwargs["_return_http_data_only"] = True
|
11988
|
-
return self.transfer_runs_with_http_info(
|
11989
|
-
owner, name, body, **kwargs
|
11990
|
-
) # noqa: E501
|
11944
|
+
return self.transfer_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
11991
11945
|
|
11992
11946
|
@validate_call
|
11993
11947
|
def transfer_runs_with_http_info(
|
@@ -11995,7 +11949,7 @@ class RunsV1Api(BaseApi):
|
|
11995
11949
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
11996
11950
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
11997
11951
|
body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
|
11998
|
-
**kwargs
|
11952
|
+
**kwargs,
|
11999
11953
|
): # noqa: E501
|
12000
11954
|
"""Transfer runs # noqa: E501
|
12001
11955
|
|
@@ -12134,7 +12088,7 @@ class RunsV1Api(BaseApi):
|
|
12134
12088
|
uuid: Annotated[
|
12135
12089
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
12136
12090
|
],
|
12137
|
-
**kwargs
|
12091
|
+
**kwargs,
|
12138
12092
|
) -> None: # noqa: E501
|
12139
12093
|
"""Unbookmark run # noqa: E501
|
12140
12094
|
|
@@ -12166,9 +12120,7 @@ class RunsV1Api(BaseApi):
|
|
12166
12120
|
:rtype: None
|
12167
12121
|
"""
|
12168
12122
|
kwargs["_return_http_data_only"] = True
|
12169
|
-
return self.unbookmark_run_with_http_info(
|
12170
|
-
owner, entity, uuid, **kwargs
|
12171
|
-
) # noqa: E501
|
12123
|
+
return self.unbookmark_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
12172
12124
|
|
12173
12125
|
@validate_call
|
12174
12126
|
def unbookmark_run_with_http_info(
|
@@ -12183,7 +12135,7 @@ class RunsV1Api(BaseApi):
|
|
12183
12135
|
uuid: Annotated[
|
12184
12136
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
12185
12137
|
],
|
12186
|
-
**kwargs
|
12138
|
+
**kwargs,
|
12187
12139
|
): # noqa: E501
|
12188
12140
|
"""Unbookmark run # noqa: E501
|
12189
12141
|
|
@@ -12310,7 +12262,7 @@ class RunsV1Api(BaseApi):
|
|
12310
12262
|
],
|
12311
12263
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
12312
12264
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
12313
|
-
**kwargs
|
12265
|
+
**kwargs,
|
12314
12266
|
) -> V1Run: # noqa: E501
|
12315
12267
|
"""Update run # noqa: E501
|
12316
12268
|
|
@@ -12344,9 +12296,7 @@ class RunsV1Api(BaseApi):
|
|
12344
12296
|
:rtype: V1Run
|
12345
12297
|
"""
|
12346
12298
|
kwargs["_return_http_data_only"] = True
|
12347
|
-
return self.update_run_with_http_info(
|
12348
|
-
owner, project, run_uuid, body, **kwargs
|
12349
|
-
) # noqa: E501
|
12299
|
+
return self.update_run_with_http_info(owner, project, run_uuid, body, **kwargs) # noqa: E501
|
12350
12300
|
|
12351
12301
|
@validate_call
|
12352
12302
|
def update_run_with_http_info(
|
@@ -12357,7 +12307,7 @@ class RunsV1Api(BaseApi):
|
|
12357
12307
|
],
|
12358
12308
|
run_uuid: Annotated[StrictStr, Field(..., description="UUID")],
|
12359
12309
|
body: Annotated[V1Run, Field(..., description="Run object")],
|
12360
|
-
**kwargs
|
12310
|
+
**kwargs,
|
12361
12311
|
): # noqa: E501
|
12362
12312
|
"""Update run # noqa: E501
|
12363
12313
|
|
@@ -12512,7 +12462,7 @@ class RunsV1Api(BaseApi):
|
|
12512
12462
|
connection: Annotated[
|
12513
12463
|
Optional[StrictStr], Field(description="Connection to use.")
|
12514
12464
|
] = None,
|
12515
|
-
**kwargs
|
12465
|
+
**kwargs,
|
12516
12466
|
) -> None: # noqa: E501
|
12517
12467
|
"""Upload an artifact file to a store via run access # noqa: E501
|
12518
12468
|
|
@@ -12576,7 +12526,7 @@ class RunsV1Api(BaseApi):
|
|
12576
12526
|
connection: Annotated[
|
12577
12527
|
Optional[StrictStr], Field(description="Connection to use.")
|
12578
12528
|
] = None,
|
12579
|
-
**kwargs
|
12529
|
+
**kwargs,
|
12580
12530
|
): # noqa: E501
|
12581
12531
|
"""Upload an artifact file to a store via run access # noqa: E501
|
12582
12532
|
|
@@ -12746,7 +12696,7 @@ class RunsV1Api(BaseApi):
|
|
12746
12696
|
connection: Annotated[
|
12747
12697
|
Optional[StrictStr], Field(description="Connection to use.")
|
12748
12698
|
] = None,
|
12749
|
-
**kwargs
|
12699
|
+
**kwargs,
|
12750
12700
|
) -> None: # noqa: E501
|
12751
12701
|
"""Upload a logs file to a store via run access # noqa: E501
|
12752
12702
|
|
@@ -12810,7 +12760,7 @@ class RunsV1Api(BaseApi):
|
|
12810
12760
|
connection: Annotated[
|
12811
12761
|
Optional[StrictStr], Field(description="Connection to use.")
|
12812
12762
|
] = None,
|
12813
|
-
**kwargs
|
12763
|
+
**kwargs,
|
12814
12764
|
): # noqa: E501
|
12815
12765
|
"""Upload a logs file to a store via run access # noqa: E501
|
12816
12766
|
|