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
@@ -28,7 +28,7 @@ class TeamsV1Api(BaseApi):
|
|
28
28
|
self,
|
29
29
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
30
30
|
body: Annotated[V1Team, Field(..., description="Team body")],
|
31
|
-
**kwargs
|
31
|
+
**kwargs,
|
32
32
|
) -> V1Team:
|
33
33
|
"""Create team
|
34
34
|
|
@@ -65,7 +65,7 @@ class TeamsV1Api(BaseApi):
|
|
65
65
|
self,
|
66
66
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
67
67
|
body: Annotated[V1Team, Field(..., description="Team body")],
|
68
|
-
**kwargs
|
68
|
+
**kwargs,
|
69
69
|
):
|
70
70
|
"""Create team
|
71
71
|
|
@@ -198,7 +198,7 @@ class TeamsV1Api(BaseApi):
|
|
198
198
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
199
199
|
team: Annotated[StrictStr, Field(..., description="Team")],
|
200
200
|
body: Annotated[V1TeamMember, Field(..., description="Team body")],
|
201
|
-
**kwargs
|
201
|
+
**kwargs,
|
202
202
|
) -> V1TeamMember: # noqa: E501
|
203
203
|
"""Create team member # noqa: E501
|
204
204
|
|
@@ -230,9 +230,7 @@ class TeamsV1Api(BaseApi):
|
|
230
230
|
:rtype: V1TeamMember
|
231
231
|
"""
|
232
232
|
kwargs["_return_http_data_only"] = True
|
233
|
-
return self.create_team_member_with_http_info(
|
234
|
-
owner, team, body, **kwargs
|
235
|
-
) # noqa: E501
|
233
|
+
return self.create_team_member_with_http_info(owner, team, body, **kwargs) # noqa: E501
|
236
234
|
|
237
235
|
@validate_call
|
238
236
|
def create_team_member_with_http_info(
|
@@ -240,7 +238,7 @@ class TeamsV1Api(BaseApi):
|
|
240
238
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
241
239
|
team: Annotated[StrictStr, Field(..., description="Team")],
|
242
240
|
body: Annotated[V1TeamMember, Field(..., description="Team body")],
|
243
|
-
**kwargs
|
241
|
+
**kwargs,
|
244
242
|
): # noqa: E501
|
245
243
|
"""Create team member # noqa: E501
|
246
244
|
|
@@ -376,7 +374,7 @@ class TeamsV1Api(BaseApi):
|
|
376
374
|
self,
|
377
375
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
378
376
|
name: Annotated[StrictStr, Field(..., description="Component under namespace")],
|
379
|
-
**kwargs
|
377
|
+
**kwargs,
|
380
378
|
) -> None: # noqa: E501
|
381
379
|
"""Delete team # noqa: E501
|
382
380
|
|
@@ -413,7 +411,7 @@ class TeamsV1Api(BaseApi):
|
|
413
411
|
self,
|
414
412
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
415
413
|
name: Annotated[StrictStr, Field(..., description="Component under namespace")],
|
416
|
-
**kwargs
|
414
|
+
**kwargs,
|
417
415
|
): # noqa: E501
|
418
416
|
"""Delete team # noqa: E501
|
419
417
|
|
@@ -533,7 +531,7 @@ class TeamsV1Api(BaseApi):
|
|
533
531
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
534
532
|
team: Annotated[StrictStr, Field(..., description="Team under namespace")],
|
535
533
|
user: Annotated[StrictStr, Field(..., description="Member under team")],
|
536
|
-
**kwargs
|
534
|
+
**kwargs,
|
537
535
|
) -> None: # noqa: E501
|
538
536
|
"""Delete team member details # noqa: E501
|
539
537
|
|
@@ -565,9 +563,7 @@ class TeamsV1Api(BaseApi):
|
|
565
563
|
:rtype: None
|
566
564
|
"""
|
567
565
|
kwargs["_return_http_data_only"] = True
|
568
|
-
return self.delete_team_member_with_http_info(
|
569
|
-
owner, team, user, **kwargs
|
570
|
-
) # noqa: E501
|
566
|
+
return self.delete_team_member_with_http_info(owner, team, user, **kwargs) # noqa: E501
|
571
567
|
|
572
568
|
@validate_call
|
573
569
|
def delete_team_member_with_http_info(
|
@@ -575,7 +571,7 @@ class TeamsV1Api(BaseApi):
|
|
575
571
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
576
572
|
team: Annotated[StrictStr, Field(..., description="Team under namespace")],
|
577
573
|
user: Annotated[StrictStr, Field(..., description="Member under team")],
|
578
|
-
**kwargs
|
574
|
+
**kwargs,
|
579
575
|
): # noqa: E501
|
580
576
|
"""Delete team member details # noqa: E501
|
581
577
|
|
@@ -699,7 +695,7 @@ class TeamsV1Api(BaseApi):
|
|
699
695
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
700
696
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
701
697
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
702
|
-
**kwargs
|
698
|
+
**kwargs,
|
703
699
|
) -> None: # noqa: E501
|
704
700
|
"""Delete cross-project runs selection # noqa: E501
|
705
701
|
|
@@ -731,9 +727,7 @@ class TeamsV1Api(BaseApi):
|
|
731
727
|
:rtype: None
|
732
728
|
"""
|
733
729
|
kwargs["_return_http_data_only"] = True
|
734
|
-
return self.delete_team_runs_with_http_info(
|
735
|
-
owner, name, body, **kwargs
|
736
|
-
) # noqa: E501
|
730
|
+
return self.delete_team_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
737
731
|
|
738
732
|
@validate_call
|
739
733
|
def delete_team_runs_with_http_info(
|
@@ -741,7 +735,7 @@ class TeamsV1Api(BaseApi):
|
|
741
735
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
742
736
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
743
737
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
744
|
-
**kwargs
|
738
|
+
**kwargs,
|
745
739
|
): # noqa: E501
|
746
740
|
"""Delete cross-project runs selection # noqa: E501
|
747
741
|
|
@@ -870,7 +864,7 @@ class TeamsV1Api(BaseApi):
|
|
870
864
|
self,
|
871
865
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
872
866
|
name: Annotated[StrictStr, Field(..., description="Component under namespace")],
|
873
|
-
**kwargs
|
867
|
+
**kwargs,
|
874
868
|
) -> V1Team: # noqa: E501
|
875
869
|
"""Get team # noqa: E501
|
876
870
|
|
@@ -907,7 +901,7 @@ class TeamsV1Api(BaseApi):
|
|
907
901
|
self,
|
908
902
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
909
903
|
name: Annotated[StrictStr, Field(..., description="Component under namespace")],
|
910
|
-
**kwargs
|
904
|
+
**kwargs,
|
911
905
|
): # noqa: E501
|
912
906
|
"""Get team # noqa: E501
|
913
907
|
|
@@ -1050,7 +1044,7 @@ class TeamsV1Api(BaseApi):
|
|
1050
1044
|
Optional[StrictStr], Field(description="Mode of the search.")
|
1051
1045
|
] = None,
|
1052
1046
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
1053
|
-
**kwargs
|
1047
|
+
**kwargs,
|
1054
1048
|
) -> V1ListActivitiesResponse: # noqa: E501
|
1055
1049
|
"""Get organization activities # noqa: E501
|
1056
1050
|
|
@@ -1122,7 +1116,7 @@ class TeamsV1Api(BaseApi):
|
|
1122
1116
|
Optional[StrictStr], Field(description="Mode of the search.")
|
1123
1117
|
] = None,
|
1124
1118
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
1125
|
-
**kwargs
|
1119
|
+
**kwargs,
|
1126
1120
|
): # noqa: E501
|
1127
1121
|
"""Get organization activities # noqa: E501
|
1128
1122
|
|
@@ -1289,7 +1283,7 @@ class TeamsV1Api(BaseApi):
|
|
1289
1283
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
1290
1284
|
team: Annotated[StrictStr, Field(..., description="Team under namespace")],
|
1291
1285
|
user: Annotated[StrictStr, Field(..., description="Member under team")],
|
1292
|
-
**kwargs
|
1286
|
+
**kwargs,
|
1293
1287
|
) -> V1TeamMember: # noqa: E501
|
1294
1288
|
"""Get team member details # noqa: E501
|
1295
1289
|
|
@@ -1321,9 +1315,7 @@ class TeamsV1Api(BaseApi):
|
|
1321
1315
|
:rtype: V1TeamMember
|
1322
1316
|
"""
|
1323
1317
|
kwargs["_return_http_data_only"] = True
|
1324
|
-
return self.get_team_member_with_http_info(
|
1325
|
-
owner, team, user, **kwargs
|
1326
|
-
) # noqa: E501
|
1318
|
+
return self.get_team_member_with_http_info(owner, team, user, **kwargs) # noqa: E501
|
1327
1319
|
|
1328
1320
|
@validate_call
|
1329
1321
|
def get_team_member_with_http_info(
|
@@ -1331,7 +1323,7 @@ class TeamsV1Api(BaseApi):
|
|
1331
1323
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
1332
1324
|
team: Annotated[StrictStr, Field(..., description="Team under namespace")],
|
1333
1325
|
user: Annotated[StrictStr, Field(..., description="Member under team")],
|
1334
|
-
**kwargs
|
1326
|
+
**kwargs,
|
1335
1327
|
): # noqa: E501
|
1336
1328
|
"""Get team member details # noqa: E501
|
1337
1329
|
|
@@ -1467,7 +1459,7 @@ class TeamsV1Api(BaseApi):
|
|
1467
1459
|
uuid: Annotated[
|
1468
1460
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
1469
1461
|
],
|
1470
|
-
**kwargs
|
1462
|
+
**kwargs,
|
1471
1463
|
) -> V1Run: # noqa: E501
|
1472
1464
|
"""Get a run in a team # noqa: E501
|
1473
1465
|
|
@@ -1499,9 +1491,7 @@ class TeamsV1Api(BaseApi):
|
|
1499
1491
|
:rtype: V1Run
|
1500
1492
|
"""
|
1501
1493
|
kwargs["_return_http_data_only"] = True
|
1502
|
-
return self.get_team_run_with_http_info(
|
1503
|
-
owner, entity, uuid, **kwargs
|
1504
|
-
) # noqa: E501
|
1494
|
+
return self.get_team_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
|
1505
1495
|
|
1506
1496
|
@validate_call
|
1507
1497
|
def get_team_run_with_http_info(
|
@@ -1516,7 +1506,7 @@ class TeamsV1Api(BaseApi):
|
|
1516
1506
|
uuid: Annotated[
|
1517
1507
|
StrictStr, Field(..., description="Uuid identifier of the sub-entity")
|
1518
1508
|
],
|
1519
|
-
**kwargs
|
1509
|
+
**kwargs,
|
1520
1510
|
): # noqa: E501
|
1521
1511
|
"""Get a run in a team # noqa: E501
|
1522
1512
|
|
@@ -1661,7 +1651,7 @@ class TeamsV1Api(BaseApi):
|
|
1661
1651
|
Optional[StrictStr], Field(description="Mode of the search.")
|
1662
1652
|
] = None,
|
1663
1653
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
1664
|
-
**kwargs
|
1654
|
+
**kwargs,
|
1665
1655
|
) -> V1ListRunsResponse: # noqa: E501
|
1666
1656
|
"""Get all runs in a team # noqa: E501
|
1667
1657
|
|
@@ -1733,7 +1723,7 @@ class TeamsV1Api(BaseApi):
|
|
1733
1723
|
Optional[StrictStr], Field(description="Mode of the search.")
|
1734
1724
|
] = None,
|
1735
1725
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
1736
|
-
**kwargs
|
1726
|
+
**kwargs,
|
1737
1727
|
): # noqa: E501
|
1738
1728
|
"""Get all runs in a team # noqa: E501
|
1739
1729
|
|
@@ -1923,7 +1913,7 @@ class TeamsV1Api(BaseApi):
|
|
1923
1913
|
Optional[StrictStr], Field(description="Stats group.")
|
1924
1914
|
] = None,
|
1925
1915
|
trunc: Annotated[Optional[StrictStr], Field(description="Stats trunc.")] = None,
|
1926
|
-
**kwargs
|
1916
|
+
**kwargs,
|
1927
1917
|
) -> object: # noqa: E501
|
1928
1918
|
"""Get team stats # noqa: E501
|
1929
1919
|
|
@@ -1986,7 +1976,7 @@ class TeamsV1Api(BaseApi):
|
|
1986
1976
|
aggregate,
|
1987
1977
|
groupby,
|
1988
1978
|
trunc,
|
1989
|
-
**kwargs
|
1979
|
+
**kwargs,
|
1990
1980
|
) # noqa: E501
|
1991
1981
|
|
1992
1982
|
@validate_call
|
@@ -2018,7 +2008,7 @@ class TeamsV1Api(BaseApi):
|
|
2018
2008
|
Optional[StrictStr], Field(description="Stats group.")
|
2019
2009
|
] = None,
|
2020
2010
|
trunc: Annotated[Optional[StrictStr], Field(description="Stats trunc.")] = None,
|
2021
|
-
**kwargs
|
2011
|
+
**kwargs,
|
2022
2012
|
): # noqa: E501
|
2023
2013
|
"""Get team stats # noqa: E501
|
2024
2014
|
|
@@ -2216,7 +2206,7 @@ class TeamsV1Api(BaseApi):
|
|
2216
2206
|
Optional[StrictStr], Field(description="Query filter the search.")
|
2217
2207
|
] = None,
|
2218
2208
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
2219
|
-
**kwargs
|
2209
|
+
**kwargs,
|
2220
2210
|
) -> V1ListProjectVersionsResponse: # noqa: E501
|
2221
2211
|
"""Get all runs in a team # noqa: E501
|
2222
2212
|
|
@@ -2281,7 +2271,7 @@ class TeamsV1Api(BaseApi):
|
|
2281
2271
|
Optional[StrictStr], Field(description="Query filter the search.")
|
2282
2272
|
] = None,
|
2283
2273
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
2284
|
-
**kwargs
|
2274
|
+
**kwargs,
|
2285
2275
|
): # noqa: E501
|
2286
2276
|
"""Get all runs in a team # noqa: E501
|
2287
2277
|
|
@@ -2442,7 +2432,7 @@ class TeamsV1Api(BaseApi):
|
|
2442
2432
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
2443
2433
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
2444
2434
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
2445
|
-
**kwargs
|
2435
|
+
**kwargs,
|
2446
2436
|
) -> None: # noqa: E501
|
2447
2437
|
"""Invalidate cross-project runs selection # noqa: E501
|
2448
2438
|
|
@@ -2474,9 +2464,7 @@ class TeamsV1Api(BaseApi):
|
|
2474
2464
|
:rtype: None
|
2475
2465
|
"""
|
2476
2466
|
kwargs["_return_http_data_only"] = True
|
2477
|
-
return self.invalidate_team_runs_with_http_info(
|
2478
|
-
owner, name, body, **kwargs
|
2479
|
-
) # noqa: E501
|
2467
|
+
return self.invalidate_team_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
2480
2468
|
|
2481
2469
|
@validate_call
|
2482
2470
|
def invalidate_team_runs_with_http_info(
|
@@ -2484,7 +2472,7 @@ class TeamsV1Api(BaseApi):
|
|
2484
2472
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
2485
2473
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
2486
2474
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
2487
|
-
**kwargs
|
2475
|
+
**kwargs,
|
2488
2476
|
): # noqa: E501
|
2489
2477
|
"""Invalidate cross-project runs selection # noqa: E501
|
2490
2478
|
|
@@ -2632,7 +2620,7 @@ class TeamsV1Api(BaseApi):
|
|
2632
2620
|
Optional[StrictStr], Field(description="Mode of the search.")
|
2633
2621
|
] = None,
|
2634
2622
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
2635
|
-
**kwargs
|
2623
|
+
**kwargs,
|
2636
2624
|
) -> V1ListTeamMembersResponse: # noqa: E501
|
2637
2625
|
"""Get team members # noqa: E501
|
2638
2626
|
|
@@ -2704,7 +2692,7 @@ class TeamsV1Api(BaseApi):
|
|
2704
2692
|
Optional[StrictStr], Field(description="Mode of the search.")
|
2705
2693
|
] = None,
|
2706
2694
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
2707
|
-
**kwargs
|
2695
|
+
**kwargs,
|
2708
2696
|
): # noqa: E501
|
2709
2697
|
"""Get team members # noqa: E501
|
2710
2698
|
|
@@ -2882,7 +2870,7 @@ class TeamsV1Api(BaseApi):
|
|
2882
2870
|
Optional[StrictStr], Field(description="Mode of the search.")
|
2883
2871
|
] = None,
|
2884
2872
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
2885
|
-
**kwargs
|
2873
|
+
**kwargs,
|
2886
2874
|
) -> V1ListTeamsResponse: # noqa: E501
|
2887
2875
|
"""List teams names # noqa: E501
|
2888
2876
|
|
@@ -2949,7 +2937,7 @@ class TeamsV1Api(BaseApi):
|
|
2949
2937
|
Optional[StrictStr], Field(description="Mode of the search.")
|
2950
2938
|
] = None,
|
2951
2939
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
2952
|
-
**kwargs
|
2940
|
+
**kwargs,
|
2953
2941
|
): # noqa: E501
|
2954
2942
|
"""List teams names # noqa: E501
|
2955
2943
|
|
@@ -3122,7 +3110,7 @@ class TeamsV1Api(BaseApi):
|
|
3122
3110
|
Optional[StrictStr], Field(description="Mode of the search.")
|
3123
3111
|
] = None,
|
3124
3112
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
3125
|
-
**kwargs
|
3113
|
+
**kwargs,
|
3126
3114
|
) -> V1ListTeamsResponse: # noqa: E501
|
3127
3115
|
"""List teams # noqa: E501
|
3128
3116
|
|
@@ -3189,7 +3177,7 @@ class TeamsV1Api(BaseApi):
|
|
3189
3177
|
Optional[StrictStr], Field(description="Mode of the search.")
|
3190
3178
|
] = None,
|
3191
3179
|
no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
|
3192
|
-
**kwargs
|
3180
|
+
**kwargs,
|
3193
3181
|
): # noqa: E501
|
3194
3182
|
"""List teams # noqa: E501
|
3195
3183
|
|
@@ -3347,7 +3335,7 @@ class TeamsV1Api(BaseApi):
|
|
3347
3335
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3348
3336
|
team_name: Annotated[StrictStr, Field(..., description="Name")],
|
3349
3337
|
body: Annotated[V1Team, Field(..., description="Team body")],
|
3350
|
-
**kwargs
|
3338
|
+
**kwargs,
|
3351
3339
|
) -> V1Team: # noqa: E501
|
3352
3340
|
"""Patch team # noqa: E501
|
3353
3341
|
|
@@ -3379,9 +3367,7 @@ class TeamsV1Api(BaseApi):
|
|
3379
3367
|
:rtype: V1Team
|
3380
3368
|
"""
|
3381
3369
|
kwargs["_return_http_data_only"] = True
|
3382
|
-
return self.patch_team_with_http_info(
|
3383
|
-
owner, team_name, body, **kwargs
|
3384
|
-
) # noqa: E501
|
3370
|
+
return self.patch_team_with_http_info(owner, team_name, body, **kwargs) # noqa: E501
|
3385
3371
|
|
3386
3372
|
@validate_call
|
3387
3373
|
def patch_team_with_http_info(
|
@@ -3389,7 +3375,7 @@ class TeamsV1Api(BaseApi):
|
|
3389
3375
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3390
3376
|
team_name: Annotated[StrictStr, Field(..., description="Name")],
|
3391
3377
|
body: Annotated[V1Team, Field(..., description="Team body")],
|
3392
|
-
**kwargs
|
3378
|
+
**kwargs,
|
3393
3379
|
): # noqa: E501
|
3394
3380
|
"""Patch team # noqa: E501
|
3395
3381
|
|
@@ -3527,7 +3513,7 @@ class TeamsV1Api(BaseApi):
|
|
3527
3513
|
team: Annotated[StrictStr, Field(..., description="Team")],
|
3528
3514
|
member_user: Annotated[StrictStr, Field(..., description="User")],
|
3529
3515
|
body: Annotated[V1TeamMember, Field(..., description="Team body")],
|
3530
|
-
**kwargs
|
3516
|
+
**kwargs,
|
3531
3517
|
) -> V1TeamMember: # noqa: E501
|
3532
3518
|
"""Patch team member # noqa: E501
|
3533
3519
|
|
@@ -3572,7 +3558,7 @@ class TeamsV1Api(BaseApi):
|
|
3572
3558
|
team: Annotated[StrictStr, Field(..., description="Team")],
|
3573
3559
|
member_user: Annotated[StrictStr, Field(..., description="User")],
|
3574
3560
|
body: Annotated[V1TeamMember, Field(..., description="Team body")],
|
3575
|
-
**kwargs
|
3561
|
+
**kwargs,
|
3576
3562
|
): # noqa: E501
|
3577
3563
|
"""Patch team member # noqa: E501
|
3578
3564
|
|
@@ -3713,7 +3699,7 @@ class TeamsV1Api(BaseApi):
|
|
3713
3699
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3714
3700
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
3715
3701
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
3716
|
-
**kwargs
|
3702
|
+
**kwargs,
|
3717
3703
|
) -> None: # noqa: E501
|
3718
3704
|
"""Restore cross-project runs selection # noqa: E501
|
3719
3705
|
|
@@ -3745,9 +3731,7 @@ class TeamsV1Api(BaseApi):
|
|
3745
3731
|
:rtype: None
|
3746
3732
|
"""
|
3747
3733
|
kwargs["_return_http_data_only"] = True
|
3748
|
-
return self.restore_team_runs_with_http_info(
|
3749
|
-
owner, name, body, **kwargs
|
3750
|
-
) # noqa: E501
|
3734
|
+
return self.restore_team_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
3751
3735
|
|
3752
3736
|
@validate_call
|
3753
3737
|
def restore_team_runs_with_http_info(
|
@@ -3755,7 +3739,7 @@ class TeamsV1Api(BaseApi):
|
|
3755
3739
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3756
3740
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
3757
3741
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
3758
|
-
**kwargs
|
3742
|
+
**kwargs,
|
3759
3743
|
): # noqa: E501
|
3760
3744
|
"""Restore cross-project runs selection # noqa: E501
|
3761
3745
|
|
@@ -3885,7 +3869,7 @@ class TeamsV1Api(BaseApi):
|
|
3885
3869
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3886
3870
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
3887
3871
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
3888
|
-
**kwargs
|
3872
|
+
**kwargs,
|
3889
3873
|
) -> None: # noqa: E501
|
3890
3874
|
"""Skip cross-project runs selection # noqa: E501
|
3891
3875
|
|
@@ -3917,9 +3901,7 @@ class TeamsV1Api(BaseApi):
|
|
3917
3901
|
:rtype: None
|
3918
3902
|
"""
|
3919
3903
|
kwargs["_return_http_data_only"] = True
|
3920
|
-
return self.skip_team_runs_with_http_info(
|
3921
|
-
owner, name, body, **kwargs
|
3922
|
-
) # noqa: E501
|
3904
|
+
return self.skip_team_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
3923
3905
|
|
3924
3906
|
@validate_call
|
3925
3907
|
def skip_team_runs_with_http_info(
|
@@ -3927,7 +3909,7 @@ class TeamsV1Api(BaseApi):
|
|
3927
3909
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3928
3910
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
3929
3911
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
3930
|
-
**kwargs
|
3912
|
+
**kwargs,
|
3931
3913
|
): # noqa: E501
|
3932
3914
|
"""Skip cross-project runs selection # noqa: E501
|
3933
3915
|
|
@@ -4057,7 +4039,7 @@ class TeamsV1Api(BaseApi):
|
|
4057
4039
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4058
4040
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
4059
4041
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
4060
|
-
**kwargs
|
4042
|
+
**kwargs,
|
4061
4043
|
) -> None: # noqa: E501
|
4062
4044
|
"""Stop cross-project runs selection # noqa: E501
|
4063
4045
|
|
@@ -4089,9 +4071,7 @@ class TeamsV1Api(BaseApi):
|
|
4089
4071
|
:rtype: None
|
4090
4072
|
"""
|
4091
4073
|
kwargs["_return_http_data_only"] = True
|
4092
|
-
return self.stop_team_runs_with_http_info(
|
4093
|
-
owner, name, body, **kwargs
|
4094
|
-
) # noqa: E501
|
4074
|
+
return self.stop_team_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
4095
4075
|
|
4096
4076
|
@validate_call
|
4097
4077
|
def stop_team_runs_with_http_info(
|
@@ -4099,7 +4079,7 @@ class TeamsV1Api(BaseApi):
|
|
4099
4079
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4100
4080
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
4101
4081
|
body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
|
4102
|
-
**kwargs
|
4082
|
+
**kwargs,
|
4103
4083
|
): # noqa: E501
|
4104
4084
|
"""Stop cross-project runs selection # noqa: E501
|
4105
4085
|
|
@@ -4229,7 +4209,7 @@ class TeamsV1Api(BaseApi):
|
|
4229
4209
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4230
4210
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
4231
4211
|
body: Annotated[V1EntitiesTags, Field(..., description="Data")],
|
4232
|
-
**kwargs
|
4212
|
+
**kwargs,
|
4233
4213
|
) -> None: # noqa: E501
|
4234
4214
|
"""Tag cross-project runs selection # noqa: E501
|
4235
4215
|
|
@@ -4261,9 +4241,7 @@ class TeamsV1Api(BaseApi):
|
|
4261
4241
|
:rtype: None
|
4262
4242
|
"""
|
4263
4243
|
kwargs["_return_http_data_only"] = True
|
4264
|
-
return self.tag_team_runs_with_http_info(
|
4265
|
-
owner, name, body, **kwargs
|
4266
|
-
) # noqa: E501
|
4244
|
+
return self.tag_team_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
4267
4245
|
|
4268
4246
|
@validate_call
|
4269
4247
|
def tag_team_runs_with_http_info(
|
@@ -4271,7 +4249,7 @@ class TeamsV1Api(BaseApi):
|
|
4271
4249
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4272
4250
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
4273
4251
|
body: Annotated[V1EntitiesTags, Field(..., description="Data")],
|
4274
|
-
**kwargs
|
4252
|
+
**kwargs,
|
4275
4253
|
): # noqa: E501
|
4276
4254
|
"""Tag cross-project runs selection # noqa: E501
|
4277
4255
|
|
@@ -4401,7 +4379,7 @@ class TeamsV1Api(BaseApi):
|
|
4401
4379
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4402
4380
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
4403
4381
|
body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
|
4404
|
-
**kwargs
|
4382
|
+
**kwargs,
|
4405
4383
|
) -> None: # noqa: E501
|
4406
4384
|
"""Transfer cross-project runs selection to a new project # noqa: E501
|
4407
4385
|
|
@@ -4433,9 +4411,7 @@ class TeamsV1Api(BaseApi):
|
|
4433
4411
|
:rtype: None
|
4434
4412
|
"""
|
4435
4413
|
kwargs["_return_http_data_only"] = True
|
4436
|
-
return self.transfer_team_runs_with_http_info(
|
4437
|
-
owner, name, body, **kwargs
|
4438
|
-
) # noqa: E501
|
4414
|
+
return self.transfer_team_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
|
4439
4415
|
|
4440
4416
|
@validate_call
|
4441
4417
|
def transfer_team_runs_with_http_info(
|
@@ -4443,7 +4419,7 @@ class TeamsV1Api(BaseApi):
|
|
4443
4419
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4444
4420
|
name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
|
4445
4421
|
body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
|
4446
|
-
**kwargs
|
4422
|
+
**kwargs,
|
4447
4423
|
): # noqa: E501
|
4448
4424
|
"""Transfer cross-project runs selection to a new project # noqa: E501
|
4449
4425
|
|
@@ -4573,7 +4549,7 @@ class TeamsV1Api(BaseApi):
|
|
4573
4549
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4574
4550
|
team_name: Annotated[StrictStr, Field(..., description="Name")],
|
4575
4551
|
body: Annotated[V1Team, Field(..., description="Team body")],
|
4576
|
-
**kwargs
|
4552
|
+
**kwargs,
|
4577
4553
|
) -> V1Team: # noqa: E501
|
4578
4554
|
"""Update team # noqa: E501
|
4579
4555
|
|
@@ -4605,9 +4581,7 @@ class TeamsV1Api(BaseApi):
|
|
4605
4581
|
:rtype: V1Team
|
4606
4582
|
"""
|
4607
4583
|
kwargs["_return_http_data_only"] = True
|
4608
|
-
return self.update_team_with_http_info(
|
4609
|
-
owner, team_name, body, **kwargs
|
4610
|
-
) # noqa: E501
|
4584
|
+
return self.update_team_with_http_info(owner, team_name, body, **kwargs) # noqa: E501
|
4611
4585
|
|
4612
4586
|
@validate_call
|
4613
4587
|
def update_team_with_http_info(
|
@@ -4615,7 +4589,7 @@ class TeamsV1Api(BaseApi):
|
|
4615
4589
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
4616
4590
|
team_name: Annotated[StrictStr, Field(..., description="Name")],
|
4617
4591
|
body: Annotated[V1Team, Field(..., description="Team body")],
|
4618
|
-
**kwargs
|
4592
|
+
**kwargs,
|
4619
4593
|
): # noqa: E501
|
4620
4594
|
"""Update team # noqa: E501
|
4621
4595
|
|
@@ -4753,7 +4727,7 @@ class TeamsV1Api(BaseApi):
|
|
4753
4727
|
team: Annotated[StrictStr, Field(..., description="Team")],
|
4754
4728
|
member_user: Annotated[StrictStr, Field(..., description="User")],
|
4755
4729
|
body: Annotated[V1TeamMember, Field(..., description="Team body")],
|
4756
|
-
**kwargs
|
4730
|
+
**kwargs,
|
4757
4731
|
) -> V1TeamMember: # noqa: E501
|
4758
4732
|
"""Update team member # noqa: E501
|
4759
4733
|
|
@@ -4798,7 +4772,7 @@ class TeamsV1Api(BaseApi):
|
|
4798
4772
|
team: Annotated[StrictStr, Field(..., description="Team")],
|
4799
4773
|
member_user: Annotated[StrictStr, Field(..., description="User")],
|
4800
4774
|
body: Annotated[V1TeamMember, Field(..., description="Team body")],
|
4801
|
-
**kwargs
|
4775
|
+
**kwargs,
|
4802
4776
|
): # noqa: E501
|
4803
4777
|
"""Update team member # noqa: E501
|
4804
4778
|
|