polyaxon 2.5.3__py3-none-any.whl → 2.6.0.post1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. polyaxon/_auxiliaries/default_scheduling.py +17 -7
  2. polyaxon/_auxiliaries/init.py +14 -6
  3. polyaxon/_auxiliaries/sidecar.py +10 -8
  4. polyaxon/_compiler/resolver/agent.py +10 -9
  5. polyaxon/_deploy/schemas/auth.py +3 -3
  6. polyaxon/_deploy/schemas/celery.py +10 -8
  7. polyaxon/_deploy/schemas/deployment.py +148 -115
  8. polyaxon/_deploy/schemas/email.py +8 -8
  9. polyaxon/_deploy/schemas/ingress.py +7 -7
  10. polyaxon/_deploy/schemas/intervals.py +3 -1
  11. polyaxon/_deploy/schemas/operators.py +8 -8
  12. polyaxon/_deploy/schemas/proxy.py +9 -9
  13. polyaxon/_deploy/schemas/rbac.py +1 -1
  14. polyaxon/_deploy/schemas/root_user.py +5 -5
  15. polyaxon/_deploy/schemas/security_context.py +25 -15
  16. polyaxon/_deploy/schemas/service.py +73 -69
  17. polyaxon/_deploy/schemas/ssl.py +3 -3
  18. polyaxon/_deploy/schemas/ui.py +10 -8
  19. polyaxon/_docker/builder/builder.py +4 -1
  20. polyaxon/_docker/converter/base/containers.py +4 -7
  21. polyaxon/_docker/converter/base/env_vars.py +5 -5
  22. polyaxon/_docker/converter/base/mounts.py +2 -2
  23. polyaxon/_docker/docker_types.py +57 -30
  24. polyaxon/_flow/__init__.py +3 -2
  25. polyaxon/_flow/builds/__init__.py +8 -8
  26. polyaxon/_flow/cache/__init__.py +4 -4
  27. polyaxon/_flow/component/base.py +25 -18
  28. polyaxon/_flow/component/component.py +4 -3
  29. polyaxon/_flow/early_stopping/__init__.py +1 -1
  30. polyaxon/_flow/early_stopping/policies.py +12 -10
  31. polyaxon/_flow/environment/__init__.py +42 -24
  32. polyaxon/_flow/hooks/__init__.py +11 -11
  33. polyaxon/_flow/init/__init__.py +41 -25
  34. polyaxon/_flow/io/io.py +59 -47
  35. polyaxon/_flow/joins/__init__.py +5 -5
  36. polyaxon/_flow/matrix/bayes.py +23 -17
  37. polyaxon/_flow/matrix/grid_search.py +16 -7
  38. polyaxon/_flow/matrix/hyperband.py +10 -10
  39. polyaxon/_flow/matrix/hyperopt.py +14 -9
  40. polyaxon/_flow/matrix/iterative.py +14 -8
  41. polyaxon/_flow/matrix/mapping.py +4 -4
  42. polyaxon/_flow/matrix/params.py +138 -77
  43. polyaxon/_flow/matrix/random_search.py +10 -5
  44. polyaxon/_flow/matrix/tuner.py +4 -4
  45. polyaxon/_flow/mounts/artifacts_mounts.py +1 -1
  46. polyaxon/_flow/notifications/__init__.py +1 -1
  47. polyaxon/_flow/operations/base.py +10 -8
  48. polyaxon/_flow/operations/compiled_operation.py +5 -4
  49. polyaxon/_flow/operations/operation.py +30 -22
  50. polyaxon/_flow/optimization/__init__.py +2 -2
  51. polyaxon/_flow/params/params.py +11 -10
  52. polyaxon/_flow/plugins/__init__.py +19 -13
  53. polyaxon/_flow/run/dag.py +12 -9
  54. polyaxon/_flow/run/dask/dask.py +4 -4
  55. polyaxon/_flow/run/dask/replica.py +17 -11
  56. polyaxon/_flow/run/job.py +17 -11
  57. polyaxon/_flow/run/kubeflow/mpi_job.py +10 -5
  58. polyaxon/_flow/run/kubeflow/mx_job.py +25 -9
  59. polyaxon/_flow/run/kubeflow/paddle_job.py +16 -9
  60. polyaxon/_flow/run/kubeflow/pytorch_job.py +24 -17
  61. polyaxon/_flow/run/kubeflow/replica.py +17 -11
  62. polyaxon/_flow/run/kubeflow/scheduling_policy.py +7 -5
  63. polyaxon/_flow/run/kubeflow/tf_job.py +15 -8
  64. polyaxon/_flow/run/kubeflow/xgboost_job.py +9 -4
  65. polyaxon/_flow/run/ray/ray.py +9 -6
  66. polyaxon/_flow/run/ray/replica.py +25 -16
  67. polyaxon/_flow/run/resources.py +14 -13
  68. polyaxon/_flow/run/service.py +4 -4
  69. polyaxon/_flow/schedules/cron.py +4 -4
  70. polyaxon/_flow/schedules/interval.py +4 -4
  71. polyaxon/_flow/templates/__init__.py +3 -3
  72. polyaxon/_flow/termination/__init__.py +3 -3
  73. polyaxon/_fs/watcher.py +26 -27
  74. polyaxon/_k8s/k8s_validation.py +1 -1
  75. polyaxon/_local_process/converter/base/containers.py +4 -7
  76. polyaxon/_local_process/converter/base/env_vars.py +5 -5
  77. polyaxon/_local_process/process_types.py +15 -12
  78. polyaxon/_polyaxonfile/specs/compiled_operation.py +1 -1
  79. polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
  80. polyaxon/_polyaxonfile/specs/operation.py +1 -1
  81. polyaxon/_runner/agent/sync_agent.py +1 -1
  82. polyaxon/_runner/converter/converter.py +1 -1
  83. polyaxon/_schemas/agent.py +69 -37
  84. polyaxon/_schemas/authentication.py +4 -4
  85. polyaxon/_schemas/base.py +26 -2
  86. polyaxon/_schemas/checks.py +3 -3
  87. polyaxon/_schemas/cli.py +4 -6
  88. polyaxon/_schemas/client.py +20 -18
  89. polyaxon/_schemas/compatibility.py +4 -4
  90. polyaxon/_schemas/container_resources.py +1 -1
  91. polyaxon/_schemas/home.py +3 -3
  92. polyaxon/_schemas/installation.py +8 -8
  93. polyaxon/_schemas/lifecycle.py +21 -21
  94. polyaxon/_schemas/log_handler.py +2 -2
  95. polyaxon/_schemas/services.py +26 -14
  96. polyaxon/_schemas/types/artifacts.py +3 -3
  97. polyaxon/_schemas/types/dockerfile.py +14 -12
  98. polyaxon/_schemas/types/event.py +2 -2
  99. polyaxon/_schemas/types/file.py +3 -3
  100. polyaxon/_schemas/types/git.py +12 -4
  101. polyaxon/_schemas/types/tensorboard.py +14 -8
  102. polyaxon/_schemas/user.py +3 -3
  103. polyaxon/_schemas/version.py +2 -2
  104. polyaxon/_sdk/api/agents_v1_api.py +45 -45
  105. polyaxon/_sdk/api/artifacts_stores_v1_api.py +3 -3
  106. polyaxon/_sdk/api/auth_v1_api.py +13 -13
  107. polyaxon/_sdk/api/connections_v1_api.py +15 -15
  108. polyaxon/_sdk/api/dashboards_v1_api.py +15 -15
  109. polyaxon/_sdk/api/organizations_v1_api.py +77 -77
  110. polyaxon/_sdk/api/presets_v1_api.py +15 -15
  111. polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -17
  112. polyaxon/_sdk/api/project_searches_v1_api.py +17 -17
  113. polyaxon/_sdk/api/projects_v1_api.py +65 -65
  114. polyaxon/_sdk/api/queues_v1_api.py +19 -19
  115. polyaxon/_sdk/api/runs_v1_api.py +127 -127
  116. polyaxon/_sdk/api/searches_v1_api.py +15 -15
  117. polyaxon/_sdk/api/service_accounts_v1_api.py +27 -27
  118. polyaxon/_sdk/api/tags_v1_api.py +17 -17
  119. polyaxon/_sdk/api/teams_v1_api.py +51 -51
  120. polyaxon/_sdk/api/users_v1_api.py +25 -25
  121. polyaxon/_sdk/api/versions_v1_api.py +7 -7
  122. polyaxon/_sdk/schemas/v1_activity.py +8 -8
  123. polyaxon/_sdk/schemas/v1_agent.py +17 -17
  124. polyaxon/_sdk/schemas/v1_agent_state_response.py +4 -4
  125. polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +10 -10
  126. polyaxon/_sdk/schemas/v1_agent_status_body_request.py +3 -3
  127. polyaxon/_sdk/schemas/v1_analytics_spec.py +4 -4
  128. polyaxon/_sdk/schemas/v1_artifact_tree.py +3 -3
  129. polyaxon/_sdk/schemas/v1_auth.py +1 -1
  130. polyaxon/_sdk/schemas/v1_cloning.py +3 -3
  131. polyaxon/_sdk/schemas/v1_connection_response.py +9 -9
  132. polyaxon/_sdk/schemas/v1_dashboard.py +9 -9
  133. polyaxon/_sdk/schemas/v1_dashboard_spec.py +5 -5
  134. polyaxon/_sdk/schemas/v1_entities_tags.py +2 -2
  135. polyaxon/_sdk/schemas/v1_entities_transfer.py +2 -2
  136. polyaxon/_sdk/schemas/v1_entity_notification_body.py +7 -7
  137. polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +5 -5
  138. polyaxon/_sdk/schemas/v1_entity_status_body_request.py +5 -5
  139. polyaxon/_sdk/schemas/v1_events_response.py +2 -2
  140. polyaxon/_sdk/schemas/v1_list_activities_response.py +4 -4
  141. polyaxon/_sdk/schemas/v1_list_agents_response.py +4 -4
  142. polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +4 -4
  143. polyaxon/_sdk/schemas/v1_list_connections_response.py +4 -4
  144. polyaxon/_sdk/schemas/v1_list_dashboards_response.py +4 -4
  145. polyaxon/_sdk/schemas/v1_list_organization_members_response.py +4 -4
  146. polyaxon/_sdk/schemas/v1_list_organizations_response.py +4 -4
  147. polyaxon/_sdk/schemas/v1_list_presets_response.py +4 -4
  148. polyaxon/_sdk/schemas/v1_list_project_versions_response.py +4 -4
  149. polyaxon/_sdk/schemas/v1_list_projects_response.py +4 -4
  150. polyaxon/_sdk/schemas/v1_list_queues_response.py +4 -4
  151. polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +4 -4
  152. polyaxon/_sdk/schemas/v1_list_run_connections_response.py +4 -4
  153. polyaxon/_sdk/schemas/v1_list_run_edges_response.py +4 -4
  154. polyaxon/_sdk/schemas/v1_list_runs_response.py +4 -4
  155. polyaxon/_sdk/schemas/v1_list_searches_response.py +4 -4
  156. polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +4 -4
  157. polyaxon/_sdk/schemas/v1_list_tags_response.py +4 -4
  158. polyaxon/_sdk/schemas/v1_list_team_members_response.py +4 -4
  159. polyaxon/_sdk/schemas/v1_list_teams_response.py +4 -4
  160. polyaxon/_sdk/schemas/v1_list_token_response.py +4 -4
  161. polyaxon/_sdk/schemas/v1_operation_body.py +8 -8
  162. polyaxon/_sdk/schemas/v1_organization.py +16 -16
  163. polyaxon/_sdk/schemas/v1_organization_member.py +6 -6
  164. polyaxon/_sdk/schemas/v1_password_change.py +3 -3
  165. polyaxon/_sdk/schemas/v1_pipeline.py +3 -3
  166. polyaxon/_sdk/schemas/v1_preset.py +11 -11
  167. polyaxon/_sdk/schemas/v1_project.py +17 -17
  168. polyaxon/_sdk/schemas/v1_project_settings.py +11 -11
  169. polyaxon/_sdk/schemas/v1_project_version.py +20 -20
  170. polyaxon/_sdk/schemas/v1_queue.py +12 -12
  171. polyaxon/_sdk/schemas/v1_run.py +38 -38
  172. polyaxon/_sdk/schemas/v1_run_connection.py +3 -3
  173. polyaxon/_sdk/schemas/v1_run_edge.py +5 -5
  174. polyaxon/_sdk/schemas/v1_run_edge_lineage.py +3 -3
  175. polyaxon/_sdk/schemas/v1_run_edges_graph.py +1 -1
  176. polyaxon/_sdk/schemas/v1_run_reference_catalog.py +4 -4
  177. polyaxon/_sdk/schemas/v1_run_settings.py +9 -9
  178. polyaxon/_sdk/schemas/v1_search.py +10 -10
  179. polyaxon/_sdk/schemas/v1_search_spec.py +14 -14
  180. polyaxon/_sdk/schemas/v1_section_spec.py +12 -12
  181. polyaxon/_sdk/schemas/v1_service_account.py +9 -9
  182. polyaxon/_sdk/schemas/v1_settings_catalog.py +4 -4
  183. polyaxon/_sdk/schemas/v1_tag.py +6 -6
  184. polyaxon/_sdk/schemas/v1_team.py +11 -11
  185. polyaxon/_sdk/schemas/v1_team_member.py +6 -6
  186. polyaxon/_sdk/schemas/v1_team_settings.py +2 -2
  187. polyaxon/_sdk/schemas/v1_token.py +10 -10
  188. polyaxon/_sdk/schemas/v1_trial_start.py +6 -6
  189. polyaxon/_sdk/schemas/v1_user.py +6 -6
  190. polyaxon/_sdk/schemas/v1_user_access.py +7 -7
  191. polyaxon/_sdk/schemas/v1_user_email.py +1 -1
  192. polyaxon/_sdk/schemas/v1_user_singup.py +5 -5
  193. polyaxon/_sdk/schemas/v1_uuids.py +1 -1
  194. polyaxon/_utils/test_utils.py +2 -1
  195. polyaxon/pkg.py +1 -1
  196. {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/METADATA +10 -10
  197. {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/RECORD +201 -201
  198. {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/LICENSE +0 -0
  199. {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/WHEEL +0 -0
  200. {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/entry_points.txt +0 -0
  201. {polyaxon-2.5.3.dist-info → polyaxon-2.6.0.post1.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_call
5
5
 
6
6
  from polyaxon._schemas.lifecycle import V1Stage
7
7
  from polyaxon._sdk.base_api import BaseApi
@@ -19,7 +19,7 @@ from polyaxon.exceptions import ApiTypeError
19
19
 
20
20
 
21
21
  class ProjectsV1Api(BaseApi):
22
- @validate_arguments
22
+ @validate_call
23
23
  def archive_project(
24
24
  self,
25
25
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -56,7 +56,7 @@ class ProjectsV1Api(BaseApi):
56
56
  kwargs["_return_http_data_only"] = True
57
57
  return self.archive_project_with_http_info(owner, name, **kwargs)
58
58
 
59
- @validate_arguments
59
+ @validate_call
60
60
  def archive_project_with_http_info(
61
61
  self,
62
62
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -175,7 +175,7 @@ class ProjectsV1Api(BaseApi):
175
175
  _request_auth=_params.get("_request_auth"),
176
176
  )
177
177
 
178
- @validate_arguments
178
+ @validate_call
179
179
  def bookmark_project(
180
180
  self,
181
181
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -212,7 +212,7 @@ class ProjectsV1Api(BaseApi):
212
212
  kwargs["_return_http_data_only"] = True
213
213
  return self.bookmark_project_with_http_info(owner, name, **kwargs) # noqa: E501
214
214
 
215
- @validate_arguments
215
+ @validate_call
216
216
  def bookmark_project_with_http_info(
217
217
  self,
218
218
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -331,7 +331,7 @@ class ProjectsV1Api(BaseApi):
331
331
  _request_auth=_params.get("_request_auth"),
332
332
  )
333
333
 
334
- @validate_arguments
334
+ @validate_call
335
335
  def create_project(
336
336
  self,
337
337
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -368,7 +368,7 @@ class ProjectsV1Api(BaseApi):
368
368
  kwargs["_return_http_data_only"] = True
369
369
  return self.create_project_with_http_info(owner, body, **kwargs) # noqa: E501
370
370
 
371
- @validate_arguments
371
+ @validate_call
372
372
  def create_project_with_http_info(
373
373
  self,
374
374
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -500,7 +500,7 @@ class ProjectsV1Api(BaseApi):
500
500
  _request_auth=_params.get("_request_auth"),
501
501
  )
502
502
 
503
- @validate_arguments
503
+ @validate_call
504
504
  def create_team_project(
505
505
  self,
506
506
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -542,7 +542,7 @@ class ProjectsV1Api(BaseApi):
542
542
  owner, team, body, **kwargs
543
543
  ) # noqa: E501
544
544
 
545
- @validate_arguments
545
+ @validate_call
546
546
  def create_team_project_with_http_info(
547
547
  self,
548
548
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -677,7 +677,7 @@ class ProjectsV1Api(BaseApi):
677
677
  _request_auth=_params.get("_request_auth"),
678
678
  )
679
679
 
680
- @validate_arguments
680
+ @validate_call
681
681
  def create_version(
682
682
  self,
683
683
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -727,7 +727,7 @@ class ProjectsV1Api(BaseApi):
727
727
  owner, project, version_kind, body, **kwargs
728
728
  ) # noqa: E501
729
729
 
730
- @validate_arguments
730
+ @validate_call
731
731
  def create_version_with_http_info(
732
732
  self,
733
733
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -874,7 +874,7 @@ class ProjectsV1Api(BaseApi):
874
874
  _request_auth=_params.get("_request_auth"),
875
875
  )
876
876
 
877
- @validate_arguments
877
+ @validate_call
878
878
  def create_version_stage(
879
879
  self,
880
880
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -930,7 +930,7 @@ class ProjectsV1Api(BaseApi):
930
930
  owner, entity, kind, name, body, **kwargs
931
931
  ) # noqa: E501
932
932
 
933
- @validate_arguments
933
+ @validate_call
934
934
  def create_version_stage_with_http_info(
935
935
  self,
936
936
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1085,7 +1085,7 @@ class ProjectsV1Api(BaseApi):
1085
1085
  _request_auth=_params.get("_request_auth"),
1086
1086
  )
1087
1087
 
1088
- @validate_arguments
1088
+ @validate_call
1089
1089
  def delete_project(
1090
1090
  self,
1091
1091
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1122,7 +1122,7 @@ class ProjectsV1Api(BaseApi):
1122
1122
  kwargs["_return_http_data_only"] = True
1123
1123
  return self.delete_project_with_http_info(owner, name, **kwargs) # noqa: E501
1124
1124
 
1125
- @validate_arguments
1125
+ @validate_call
1126
1126
  def delete_project_with_http_info(
1127
1127
  self,
1128
1128
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1241,7 +1241,7 @@ class ProjectsV1Api(BaseApi):
1241
1241
  _request_auth=_params.get("_request_auth"),
1242
1242
  )
1243
1243
 
1244
- @validate_arguments
1244
+ @validate_call
1245
1245
  def delete_version(
1246
1246
  self,
1247
1247
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1291,7 +1291,7 @@ class ProjectsV1Api(BaseApi):
1291
1291
  owner, entity, kind, name, **kwargs
1292
1292
  ) # noqa: E501
1293
1293
 
1294
- @validate_arguments
1294
+ @validate_call
1295
1295
  def delete_version_with_http_info(
1296
1296
  self,
1297
1297
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1425,7 +1425,7 @@ class ProjectsV1Api(BaseApi):
1425
1425
  _request_auth=_params.get("_request_auth"),
1426
1426
  )
1427
1427
 
1428
- @validate_arguments
1428
+ @validate_call
1429
1429
  def disable_project_ci(
1430
1430
  self,
1431
1431
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1464,7 +1464,7 @@ class ProjectsV1Api(BaseApi):
1464
1464
  owner, name, **kwargs
1465
1465
  ) # noqa: E501
1466
1466
 
1467
- @validate_arguments
1467
+ @validate_call
1468
1468
  def disable_project_ci_with_http_info(
1469
1469
  self,
1470
1470
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1583,7 +1583,7 @@ class ProjectsV1Api(BaseApi):
1583
1583
  _request_auth=_params.get("_request_auth"),
1584
1584
  )
1585
1585
 
1586
- @validate_arguments
1586
+ @validate_call
1587
1587
  def enable_project_ci(
1588
1588
  self,
1589
1589
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1622,7 +1622,7 @@ class ProjectsV1Api(BaseApi):
1622
1622
  owner, name, **kwargs
1623
1623
  ) # noqa: E501
1624
1624
 
1625
- @validate_arguments
1625
+ @validate_call
1626
1626
  def enable_project_ci_with_http_info(
1627
1627
  self,
1628
1628
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1741,7 +1741,7 @@ class ProjectsV1Api(BaseApi):
1741
1741
  _request_auth=_params.get("_request_auth"),
1742
1742
  )
1743
1743
 
1744
- @validate_arguments
1744
+ @validate_call
1745
1745
  def get_project(
1746
1746
  self,
1747
1747
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1778,7 +1778,7 @@ class ProjectsV1Api(BaseApi):
1778
1778
  kwargs["_return_http_data_only"] = True
1779
1779
  return self.get_project_with_http_info(owner, name, **kwargs) # noqa: E501
1780
1780
 
1781
- @validate_arguments
1781
+ @validate_call
1782
1782
  def get_project_with_http_info(
1783
1783
  self,
1784
1784
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1902,7 +1902,7 @@ class ProjectsV1Api(BaseApi):
1902
1902
  _request_auth=_params.get("_request_auth"),
1903
1903
  )
1904
1904
 
1905
- @validate_arguments
1905
+ @validate_call
1906
1906
  def get_project_activities(
1907
1907
  self,
1908
1908
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1974,7 +1974,7 @@ class ProjectsV1Api(BaseApi):
1974
1974
  owner, name, offset, limit, sort, query, bookmarks, mode, no_page, **kwargs
1975
1975
  ) # noqa: E501
1976
1976
 
1977
- @validate_arguments
1977
+ @validate_call
1978
1978
  def get_project_activities_with_http_info(
1979
1979
  self,
1980
1980
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2155,7 +2155,7 @@ class ProjectsV1Api(BaseApi):
2155
2155
  _request_auth=_params.get("_request_auth"),
2156
2156
  )
2157
2157
 
2158
- @validate_arguments
2158
+ @validate_call
2159
2159
  def get_project_settings(
2160
2160
  self,
2161
2161
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2194,7 +2194,7 @@ class ProjectsV1Api(BaseApi):
2194
2194
  owner, name, **kwargs
2195
2195
  ) # noqa: E501
2196
2196
 
2197
- @validate_arguments
2197
+ @validate_call
2198
2198
  def get_project_settings_with_http_info(
2199
2199
  self,
2200
2200
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2318,7 +2318,7 @@ class ProjectsV1Api(BaseApi):
2318
2318
  _request_auth=_params.get("_request_auth"),
2319
2319
  )
2320
2320
 
2321
- @validate_arguments
2321
+ @validate_call
2322
2322
  def get_project_stats(
2323
2323
  self,
2324
2324
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2413,7 +2413,7 @@ class ProjectsV1Api(BaseApi):
2413
2413
  **kwargs
2414
2414
  ) # noqa: E501
2415
2415
 
2416
- @validate_arguments
2416
+ @validate_call
2417
2417
  def get_project_stats_with_http_info(
2418
2418
  self,
2419
2419
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2614,7 +2614,7 @@ class ProjectsV1Api(BaseApi):
2614
2614
  _request_auth=_params.get("_request_auth"),
2615
2615
  )
2616
2616
 
2617
- @validate_arguments
2617
+ @validate_call
2618
2618
  def get_version(
2619
2619
  self,
2620
2620
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2664,7 +2664,7 @@ class ProjectsV1Api(BaseApi):
2664
2664
  owner, entity, kind, name, **kwargs
2665
2665
  ) # noqa: E501
2666
2666
 
2667
- @validate_arguments
2667
+ @validate_call
2668
2668
  def get_version_with_http_info(
2669
2669
  self,
2670
2670
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2803,7 +2803,7 @@ class ProjectsV1Api(BaseApi):
2803
2803
  _request_auth=_params.get("_request_auth"),
2804
2804
  )
2805
2805
 
2806
- @validate_arguments
2806
+ @validate_call
2807
2807
  def get_version_stages(
2808
2808
  self,
2809
2809
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2853,7 +2853,7 @@ class ProjectsV1Api(BaseApi):
2853
2853
  owner, entity, kind, name, **kwargs
2854
2854
  ) # noqa: E501
2855
2855
 
2856
- @validate_arguments
2856
+ @validate_call
2857
2857
  def get_version_stages_with_http_info(
2858
2858
  self,
2859
2859
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2992,7 +2992,7 @@ class ProjectsV1Api(BaseApi):
2992
2992
  _request_auth=_params.get("_request_auth"),
2993
2993
  )
2994
2994
 
2995
- @validate_arguments
2995
+ @validate_call
2996
2996
  def list_archived_projects(
2997
2997
  self,
2998
2998
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -3049,7 +3049,7 @@ class ProjectsV1Api(BaseApi):
3049
3049
  user, offset, limit, sort, query, no_page, **kwargs
3050
3050
  ) # noqa: E501
3051
3051
 
3052
- @validate_arguments
3052
+ @validate_call
3053
3053
  def list_archived_projects_with_http_info(
3054
3054
  self,
3055
3055
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -3199,7 +3199,7 @@ class ProjectsV1Api(BaseApi):
3199
3199
  _request_auth=_params.get("_request_auth"),
3200
3200
  )
3201
3201
 
3202
- @validate_arguments
3202
+ @validate_call
3203
3203
  def list_bookmarked_projects(
3204
3204
  self,
3205
3205
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -3256,7 +3256,7 @@ class ProjectsV1Api(BaseApi):
3256
3256
  user, offset, limit, sort, query, no_page, **kwargs
3257
3257
  ) # noqa: E501
3258
3258
 
3259
- @validate_arguments
3259
+ @validate_call
3260
3260
  def list_bookmarked_projects_with_http_info(
3261
3261
  self,
3262
3262
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -3406,7 +3406,7 @@ class ProjectsV1Api(BaseApi):
3406
3406
  _request_auth=_params.get("_request_auth"),
3407
3407
  )
3408
3408
 
3409
- @validate_arguments
3409
+ @validate_call
3410
3410
  def list_project_names(
3411
3411
  self,
3412
3412
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3473,7 +3473,7 @@ class ProjectsV1Api(BaseApi):
3473
3473
  owner, offset, limit, sort, query, bookmarks, mode, no_page, **kwargs
3474
3474
  ) # noqa: E501
3475
3475
 
3476
- @validate_arguments
3476
+ @validate_call
3477
3477
  def list_project_names_with_http_info(
3478
3478
  self,
3479
3479
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3646,7 +3646,7 @@ class ProjectsV1Api(BaseApi):
3646
3646
  _request_auth=_params.get("_request_auth"),
3647
3647
  )
3648
3648
 
3649
- @validate_arguments
3649
+ @validate_call
3650
3650
  def list_projects(
3651
3651
  self,
3652
3652
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3713,7 +3713,7 @@ class ProjectsV1Api(BaseApi):
3713
3713
  owner, offset, limit, sort, query, bookmarks, mode, no_page, **kwargs
3714
3714
  ) # noqa: E501
3715
3715
 
3716
- @validate_arguments
3716
+ @validate_call
3717
3717
  def list_projects_with_http_info(
3718
3718
  self,
3719
3719
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3886,7 +3886,7 @@ class ProjectsV1Api(BaseApi):
3886
3886
  _request_auth=_params.get("_request_auth"),
3887
3887
  )
3888
3888
 
3889
- @validate_arguments
3889
+ @validate_call
3890
3890
  def list_version_names(
3891
3891
  self,
3892
3892
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3951,7 +3951,7 @@ class ProjectsV1Api(BaseApi):
3951
3951
  owner, entity, kind, offset, limit, sort, query, no_page, **kwargs
3952
3952
  ) # noqa: E501
3953
3953
 
3954
- @validate_arguments
3954
+ @validate_call
3955
3955
  def list_version_names_with_http_info(
3956
3956
  self,
3957
3957
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4122,7 +4122,7 @@ class ProjectsV1Api(BaseApi):
4122
4122
  _request_auth=_params.get("_request_auth"),
4123
4123
  )
4124
4124
 
4125
- @validate_arguments
4125
+ @validate_call
4126
4126
  def list_versions(
4127
4127
  self,
4128
4128
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4187,7 +4187,7 @@ class ProjectsV1Api(BaseApi):
4187
4187
  owner, entity, kind, offset, limit, sort, query, no_page, **kwargs
4188
4188
  ) # noqa: E501
4189
4189
 
4190
- @validate_arguments
4190
+ @validate_call
4191
4191
  def list_versions_with_http_info(
4192
4192
  self,
4193
4193
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4358,7 +4358,7 @@ class ProjectsV1Api(BaseApi):
4358
4358
  _request_auth=_params.get("_request_auth"),
4359
4359
  )
4360
4360
 
4361
- @validate_arguments
4361
+ @validate_call
4362
4362
  def patch_project(
4363
4363
  self,
4364
4364
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4400,7 +4400,7 @@ class ProjectsV1Api(BaseApi):
4400
4400
  owner, project_name, body, **kwargs
4401
4401
  ) # noqa: E501
4402
4402
 
4403
- @validate_arguments
4403
+ @validate_call
4404
4404
  def patch_project_with_http_info(
4405
4405
  self,
4406
4406
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4537,7 +4537,7 @@ class ProjectsV1Api(BaseApi):
4537
4537
  _request_auth=_params.get("_request_auth"),
4538
4538
  )
4539
4539
 
4540
- @validate_arguments
4540
+ @validate_call
4541
4541
  def patch_project_settings(
4542
4542
  self,
4543
4543
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4581,7 +4581,7 @@ class ProjectsV1Api(BaseApi):
4581
4581
  owner, project, body, **kwargs
4582
4582
  ) # noqa: E501
4583
4583
 
4584
- @validate_arguments
4584
+ @validate_call
4585
4585
  def patch_project_settings_with_http_info(
4586
4586
  self,
4587
4587
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4720,7 +4720,7 @@ class ProjectsV1Api(BaseApi):
4720
4720
  _request_auth=_params.get("_request_auth"),
4721
4721
  )
4722
4722
 
4723
- @validate_arguments
4723
+ @validate_call
4724
4724
  def patch_version(
4725
4725
  self,
4726
4726
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4779,7 +4779,7 @@ class ProjectsV1Api(BaseApi):
4779
4779
  owner, project, version_kind, version_name, body, **kwargs
4780
4780
  ) # noqa: E501
4781
4781
 
4782
- @validate_arguments
4782
+ @validate_call
4783
4783
  def patch_version_with_http_info(
4784
4784
  self,
4785
4785
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4937,7 +4937,7 @@ class ProjectsV1Api(BaseApi):
4937
4937
  _request_auth=_params.get("_request_auth"),
4938
4938
  )
4939
4939
 
4940
- @validate_arguments
4940
+ @validate_call
4941
4941
  def restore_project(
4942
4942
  self,
4943
4943
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4974,7 +4974,7 @@ class ProjectsV1Api(BaseApi):
4974
4974
  kwargs["_return_http_data_only"] = True
4975
4975
  return self.restore_project_with_http_info(owner, name, **kwargs) # noqa: E501
4976
4976
 
4977
- @validate_arguments
4977
+ @validate_call
4978
4978
  def restore_project_with_http_info(
4979
4979
  self,
4980
4980
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5093,7 +5093,7 @@ class ProjectsV1Api(BaseApi):
5093
5093
  _request_auth=_params.get("_request_auth"),
5094
5094
  )
5095
5095
 
5096
- @validate_arguments
5096
+ @validate_call
5097
5097
  def transfer_version(
5098
5098
  self,
5099
5099
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5152,7 +5152,7 @@ class ProjectsV1Api(BaseApi):
5152
5152
  owner, project, version_kind, version_name, body, **kwargs
5153
5153
  ) # noqa: E501
5154
5154
 
5155
- @validate_arguments
5155
+ @validate_call
5156
5156
  def transfer_version_with_http_info(
5157
5157
  self,
5158
5158
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5305,7 +5305,7 @@ class ProjectsV1Api(BaseApi):
5305
5305
  _request_auth=_params.get("_request_auth"),
5306
5306
  )
5307
5307
 
5308
- @validate_arguments
5308
+ @validate_call
5309
5309
  def unbookmark_project(
5310
5310
  self,
5311
5311
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5344,7 +5344,7 @@ class ProjectsV1Api(BaseApi):
5344
5344
  owner, name, **kwargs
5345
5345
  ) # noqa: E501
5346
5346
 
5347
- @validate_arguments
5347
+ @validate_call
5348
5348
  def unbookmark_project_with_http_info(
5349
5349
  self,
5350
5350
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5463,7 +5463,7 @@ class ProjectsV1Api(BaseApi):
5463
5463
  _request_auth=_params.get("_request_auth"),
5464
5464
  )
5465
5465
 
5466
- @validate_arguments
5466
+ @validate_call
5467
5467
  def update_project(
5468
5468
  self,
5469
5469
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5505,7 +5505,7 @@ class ProjectsV1Api(BaseApi):
5505
5505
  owner, project_name, body, **kwargs
5506
5506
  ) # noqa: E501
5507
5507
 
5508
- @validate_arguments
5508
+ @validate_call
5509
5509
  def update_project_with_http_info(
5510
5510
  self,
5511
5511
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5642,7 +5642,7 @@ class ProjectsV1Api(BaseApi):
5642
5642
  _request_auth=_params.get("_request_auth"),
5643
5643
  )
5644
5644
 
5645
- @validate_arguments
5645
+ @validate_call
5646
5646
  def update_project_settings(
5647
5647
  self,
5648
5648
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5686,7 +5686,7 @@ class ProjectsV1Api(BaseApi):
5686
5686
  owner, project, body, **kwargs
5687
5687
  ) # noqa: E501
5688
5688
 
5689
- @validate_arguments
5689
+ @validate_call
5690
5690
  def update_project_settings_with_http_info(
5691
5691
  self,
5692
5692
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5825,7 +5825,7 @@ class ProjectsV1Api(BaseApi):
5825
5825
  _request_auth=_params.get("_request_auth"),
5826
5826
  )
5827
5827
 
5828
- @validate_arguments
5828
+ @validate_call
5829
5829
  def update_version(
5830
5830
  self,
5831
5831
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -5884,7 +5884,7 @@ class ProjectsV1Api(BaseApi):
5884
5884
  owner, project, version_kind, version_name, body, **kwargs
5885
5885
  ) # noqa: E501
5886
5886
 
5887
- @validate_arguments
5887
+ @validate_call
5888
5888
  def update_version_with_http_info(
5889
5889
  self,
5890
5890
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -6042,7 +6042,7 @@ class ProjectsV1Api(BaseApi):
6042
6042
  _request_auth=_params.get("_request_auth"),
6043
6043
  )
6044
6044
 
6045
- @validate_arguments
6045
+ @validate_call
6046
6046
  def upload_project_artifact(
6047
6047
  self,
6048
6048
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -6101,7 +6101,7 @@ class ProjectsV1Api(BaseApi):
6101
6101
  owner, project, uuid, uploadfile, path, overwrite, **kwargs
6102
6102
  ) # noqa: E501
6103
6103
 
6104
- @validate_arguments
6104
+ @validate_call
6105
6105
  def upload_project_artifact_with_http_info(
6106
6106
  self,
6107
6107
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],