polyaxon 2.1.0rc9__py3-none-any.whl → 2.6.0__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 (270) 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/_cli/artifacts.py +96 -11
  5. polyaxon/_cli/components.py +96 -11
  6. polyaxon/_cli/config.py +31 -0
  7. polyaxon/_cli/dashboard.py +12 -2
  8. polyaxon/_cli/init.py +1 -1
  9. polyaxon/_cli/models.py +96 -11
  10. polyaxon/_cli/operations.py +133 -58
  11. polyaxon/_cli/project_versions.py +139 -6
  12. polyaxon/_cli/projects.py +23 -9
  13. polyaxon/_cli/run.py +43 -9
  14. polyaxon/_cli/services/agent.py +2 -2
  15. polyaxon/_cli/version.py +4 -1
  16. polyaxon/_client/mixin.py +39 -0
  17. polyaxon/_client/project.py +218 -23
  18. polyaxon/_client/run.py +84 -27
  19. polyaxon/_compiler/contexts/contexts.py +4 -0
  20. polyaxon/_compiler/contexts/ray_job.py +4 -2
  21. polyaxon/_compiler/resolver/agent.py +22 -10
  22. polyaxon/_compiler/resolver/runtime.py +7 -3
  23. polyaxon/_constants/metadata.py +1 -0
  24. polyaxon/_contexts/keys.py +1 -0
  25. polyaxon/_contexts/paths.py +1 -1
  26. polyaxon/_deploy/operators/compose.py +1 -27
  27. polyaxon/_deploy/schemas/auth.py +3 -3
  28. polyaxon/_deploy/schemas/celery.py +10 -8
  29. polyaxon/_deploy/schemas/deployment.py +148 -115
  30. polyaxon/_deploy/schemas/email.py +8 -8
  31. polyaxon/_deploy/schemas/ingress.py +7 -7
  32. polyaxon/_deploy/schemas/intervals.py +2 -7
  33. polyaxon/_deploy/schemas/operators.py +8 -8
  34. polyaxon/_deploy/schemas/proxy.py +9 -8
  35. polyaxon/_deploy/schemas/rbac.py +1 -1
  36. polyaxon/_deploy/schemas/root_user.py +5 -5
  37. polyaxon/_deploy/schemas/security_context.py +25 -15
  38. polyaxon/_deploy/schemas/service.py +75 -66
  39. polyaxon/_deploy/schemas/ssl.py +3 -3
  40. polyaxon/_deploy/schemas/ui.py +10 -6
  41. polyaxon/_docker/builder/builder.py +4 -1
  42. polyaxon/_docker/converter/base/containers.py +4 -7
  43. polyaxon/_docker/converter/base/env_vars.py +5 -5
  44. polyaxon/_docker/converter/base/mounts.py +2 -2
  45. polyaxon/_docker/docker_types.py +57 -30
  46. polyaxon/_env_vars/getters/owner_entity.py +4 -2
  47. polyaxon/_env_vars/getters/project.py +4 -2
  48. polyaxon/_env_vars/getters/run.py +5 -2
  49. polyaxon/_env_vars/keys.py +3 -0
  50. polyaxon/_flow/__init__.py +3 -2
  51. polyaxon/_flow/builds/__init__.py +8 -8
  52. polyaxon/_flow/cache/__init__.py +4 -4
  53. polyaxon/_flow/component/base.py +25 -18
  54. polyaxon/_flow/component/component.py +4 -3
  55. polyaxon/_flow/early_stopping/__init__.py +1 -1
  56. polyaxon/_flow/early_stopping/policies.py +12 -10
  57. polyaxon/_flow/environment/__init__.py +43 -25
  58. polyaxon/_flow/events/__init__.py +1 -1
  59. polyaxon/_flow/hooks/__init__.py +11 -11
  60. polyaxon/_flow/init/__init__.py +41 -25
  61. polyaxon/_flow/io/io.py +57 -47
  62. polyaxon/_flow/joins/__init__.py +5 -5
  63. polyaxon/_flow/matrix/bayes.py +23 -17
  64. polyaxon/_flow/matrix/grid_search.py +16 -7
  65. polyaxon/_flow/matrix/hyperband.py +10 -10
  66. polyaxon/_flow/matrix/hyperopt.py +14 -9
  67. polyaxon/_flow/matrix/iterative.py +14 -8
  68. polyaxon/_flow/matrix/mapping.py +4 -4
  69. polyaxon/_flow/matrix/params.py +138 -77
  70. polyaxon/_flow/matrix/random_search.py +10 -5
  71. polyaxon/_flow/matrix/tuner.py +4 -4
  72. polyaxon/_flow/mounts/artifacts_mounts.py +1 -1
  73. polyaxon/_flow/notifications/__init__.py +1 -1
  74. polyaxon/_flow/operations/base.py +10 -8
  75. polyaxon/_flow/operations/compiled_operation.py +5 -4
  76. polyaxon/_flow/operations/operation.py +57 -41
  77. polyaxon/_flow/optimization/__init__.py +2 -2
  78. polyaxon/_flow/params/params.py +10 -9
  79. polyaxon/_flow/plugins/__init__.py +19 -13
  80. polyaxon/_flow/run/dag.py +12 -9
  81. polyaxon/_flow/run/dask/dask.py +4 -4
  82. polyaxon/_flow/run/dask/replica.py +17 -11
  83. polyaxon/_flow/run/job.py +17 -11
  84. polyaxon/_flow/run/kubeflow/mpi_job.py +10 -5
  85. polyaxon/_flow/run/kubeflow/mx_job.py +25 -9
  86. polyaxon/_flow/run/kubeflow/paddle_job.py +16 -9
  87. polyaxon/_flow/run/kubeflow/pytorch_job.py +24 -17
  88. polyaxon/_flow/run/kubeflow/replica.py +17 -11
  89. polyaxon/_flow/run/kubeflow/scheduling_policy.py +7 -5
  90. polyaxon/_flow/run/kubeflow/tf_job.py +15 -8
  91. polyaxon/_flow/run/kubeflow/xgboost_job.py +9 -4
  92. polyaxon/_flow/run/ray/ray.py +9 -6
  93. polyaxon/_flow/run/ray/replica.py +25 -16
  94. polyaxon/_flow/run/resources.py +14 -13
  95. polyaxon/_flow/run/service.py +4 -4
  96. polyaxon/_flow/schedules/cron.py +4 -4
  97. polyaxon/_flow/schedules/interval.py +4 -4
  98. polyaxon/_flow/templates/__init__.py +3 -3
  99. polyaxon/_flow/termination/__init__.py +3 -3
  100. polyaxon/_fs/async_manager.py +1 -1
  101. polyaxon/_fs/fs.py +1 -1
  102. polyaxon/_fs/watcher.py +26 -27
  103. polyaxon/_k8s/converter/base/base.py +2 -1
  104. polyaxon/_k8s/converter/base/main.py +1 -0
  105. polyaxon/_k8s/converter/common/accelerators.py +7 -4
  106. polyaxon/_k8s/converter/converters/ray_job.py +4 -2
  107. polyaxon/_k8s/custom_resources/dask_job.py +3 -0
  108. polyaxon/_k8s/custom_resources/kubeflow/common.py +4 -1
  109. polyaxon/_k8s/custom_resources/ray_job.py +3 -0
  110. polyaxon/_k8s/custom_resources/setter.py +1 -1
  111. polyaxon/_k8s/executor/async_executor.py +2 -0
  112. polyaxon/_k8s/k8s_validation.py +1 -1
  113. polyaxon/_k8s/logging/async_monitor.py +82 -11
  114. polyaxon/_k8s/manager/async_manager.py +15 -0
  115. polyaxon/_k8s/manager/manager.py +16 -1
  116. polyaxon/_local_process/__init__.py +0 -0
  117. polyaxon/_local_process/agent.py +6 -0
  118. polyaxon/_local_process/converter/__init__.py +1 -0
  119. polyaxon/_local_process/converter/base/__init__.py +1 -0
  120. polyaxon/_local_process/converter/base/base.py +140 -0
  121. polyaxon/_local_process/converter/base/containers.py +66 -0
  122. polyaxon/_local_process/converter/base/env_vars.py +253 -0
  123. polyaxon/_local_process/converter/base/init.py +414 -0
  124. polyaxon/_local_process/converter/base/main.py +74 -0
  125. polyaxon/_local_process/converter/base/mounts.py +82 -0
  126. polyaxon/_local_process/converter/converters/__init__.py +8 -0
  127. polyaxon/_local_process/converter/converters/job.py +40 -0
  128. polyaxon/_local_process/converter/converters/service.py +41 -0
  129. polyaxon/_local_process/converter/mixins.py +38 -0
  130. polyaxon/_local_process/executor.py +132 -0
  131. polyaxon/_local_process/process_types.py +42 -0
  132. polyaxon/_polyaxonfile/specs/compiled_operation.py +1 -1
  133. polyaxon/_polyaxonfile/specs/libs/parser.py +1 -1
  134. polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
  135. polyaxon/_polyaxonfile/specs/operation.py +1 -1
  136. polyaxon/_polyaxonfile/specs/sections.py +8 -0
  137. polyaxon/_pql/manager.py +1 -1
  138. polyaxon/_runner/agent/async_agent.py +25 -11
  139. polyaxon/_runner/agent/base_agent.py +19 -10
  140. polyaxon/_runner/agent/sync_agent.py +24 -10
  141. polyaxon/_runner/converter/converter.py +12 -4
  142. polyaxon/_runner/executor.py +1 -1
  143. polyaxon/_schemas/agent.py +69 -37
  144. polyaxon/_schemas/authentication.py +4 -4
  145. polyaxon/_schemas/base.py +26 -2
  146. polyaxon/_schemas/checks.py +3 -3
  147. polyaxon/_schemas/cli.py +4 -6
  148. polyaxon/_schemas/client.py +20 -18
  149. polyaxon/_schemas/compatibility.py +4 -4
  150. polyaxon/_schemas/container_resources.py +1 -1
  151. polyaxon/_schemas/home.py +3 -3
  152. polyaxon/_schemas/installation.py +13 -9
  153. polyaxon/_schemas/lifecycle.py +23 -23
  154. polyaxon/_schemas/log_handler.py +2 -2
  155. polyaxon/_schemas/services.py +26 -14
  156. polyaxon/_schemas/types/artifacts.py +3 -3
  157. polyaxon/_schemas/types/dockerfile.py +14 -12
  158. polyaxon/_schemas/types/event.py +2 -2
  159. polyaxon/_schemas/types/file.py +3 -3
  160. polyaxon/_schemas/types/git.py +12 -4
  161. polyaxon/_schemas/types/tensorboard.py +14 -8
  162. polyaxon/_schemas/user.py +3 -3
  163. polyaxon/_schemas/version.py +2 -2
  164. polyaxon/_sdk/api/agents_v1_api.py +222 -43
  165. polyaxon/_sdk/api/artifacts_stores_v1_api.py +3 -3
  166. polyaxon/_sdk/api/auth_v1_api.py +13 -13
  167. polyaxon/_sdk/api/connections_v1_api.py +15 -15
  168. polyaxon/_sdk/api/dashboards_v1_api.py +15 -15
  169. polyaxon/_sdk/api/organizations_v1_api.py +85 -85
  170. polyaxon/_sdk/api/presets_v1_api.py +15 -15
  171. polyaxon/_sdk/api/project_dashboards_v1_api.py +29 -29
  172. polyaxon/_sdk/api/project_searches_v1_api.py +29 -29
  173. polyaxon/_sdk/api/projects_v1_api.py +284 -107
  174. polyaxon/_sdk/api/queues_v1_api.py +19 -19
  175. polyaxon/_sdk/api/runs_v1_api.py +313 -359
  176. polyaxon/_sdk/api/searches_v1_api.py +15 -15
  177. polyaxon/_sdk/api/service_accounts_v1_api.py +31 -31
  178. polyaxon/_sdk/api/tags_v1_api.py +17 -17
  179. polyaxon/_sdk/api/teams_v1_api.py +2854 -402
  180. polyaxon/_sdk/api/users_v1_api.py +254 -78
  181. polyaxon/_sdk/api/versions_v1_api.py +7 -7
  182. polyaxon/_sdk/async_client/api_client.py +4 -0
  183. polyaxon/_sdk/schemas/__init__.py +1 -1
  184. polyaxon/_sdk/schemas/v1_activity.py +8 -8
  185. polyaxon/_sdk/schemas/v1_agent.py +18 -16
  186. polyaxon/_sdk/schemas/v1_agent_state_response.py +4 -4
  187. polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +10 -10
  188. polyaxon/_sdk/schemas/v1_agent_status_body_request.py +3 -3
  189. polyaxon/_sdk/schemas/v1_analytics_spec.py +4 -4
  190. polyaxon/_sdk/schemas/v1_artifact_tree.py +3 -3
  191. polyaxon/_sdk/schemas/v1_auth.py +1 -1
  192. polyaxon/_sdk/schemas/v1_cloning.py +3 -3
  193. polyaxon/_sdk/schemas/v1_connection_response.py +9 -9
  194. polyaxon/_sdk/schemas/v1_dashboard.py +9 -9
  195. polyaxon/_sdk/schemas/v1_dashboard_spec.py +5 -1
  196. polyaxon/_sdk/schemas/v1_entities_tags.py +2 -2
  197. polyaxon/_sdk/schemas/v1_entities_transfer.py +2 -2
  198. polyaxon/_sdk/schemas/v1_entity_notification_body.py +7 -7
  199. polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +5 -5
  200. polyaxon/_sdk/schemas/v1_entity_status_body_request.py +5 -5
  201. polyaxon/_sdk/schemas/v1_events_response.py +2 -2
  202. polyaxon/_sdk/schemas/v1_list_activities_response.py +4 -4
  203. polyaxon/_sdk/schemas/v1_list_agents_response.py +4 -4
  204. polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +4 -4
  205. polyaxon/_sdk/schemas/v1_list_connections_response.py +4 -4
  206. polyaxon/_sdk/schemas/v1_list_dashboards_response.py +4 -4
  207. polyaxon/_sdk/schemas/v1_list_organization_members_response.py +4 -4
  208. polyaxon/_sdk/schemas/v1_list_organizations_response.py +4 -4
  209. polyaxon/_sdk/schemas/v1_list_presets_response.py +4 -4
  210. polyaxon/_sdk/schemas/v1_list_project_versions_response.py +4 -4
  211. polyaxon/_sdk/schemas/v1_list_projects_response.py +4 -4
  212. polyaxon/_sdk/schemas/v1_list_queues_response.py +4 -4
  213. polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +4 -4
  214. polyaxon/_sdk/schemas/v1_list_run_connections_response.py +4 -4
  215. polyaxon/_sdk/schemas/v1_list_run_edges_response.py +4 -4
  216. polyaxon/_sdk/schemas/v1_list_runs_response.py +4 -4
  217. polyaxon/_sdk/schemas/v1_list_searches_response.py +4 -4
  218. polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +4 -4
  219. polyaxon/_sdk/schemas/v1_list_tags_response.py +4 -4
  220. polyaxon/_sdk/schemas/v1_list_team_members_response.py +4 -4
  221. polyaxon/_sdk/schemas/v1_list_teams_response.py +4 -4
  222. polyaxon/_sdk/schemas/v1_list_token_response.py +4 -4
  223. polyaxon/_sdk/schemas/v1_operation_body.py +8 -8
  224. polyaxon/_sdk/schemas/v1_organization.py +16 -16
  225. polyaxon/_sdk/schemas/v1_organization_member.py +6 -6
  226. polyaxon/_sdk/schemas/v1_password_change.py +3 -3
  227. polyaxon/_sdk/schemas/v1_pipeline.py +3 -3
  228. polyaxon/_sdk/schemas/v1_preset.py +16 -9
  229. polyaxon/_sdk/schemas/v1_project.py +17 -17
  230. polyaxon/_sdk/schemas/v1_project_settings.py +12 -10
  231. polyaxon/_sdk/schemas/v1_project_version.py +20 -20
  232. polyaxon/_sdk/schemas/v1_queue.py +12 -12
  233. polyaxon/_sdk/schemas/v1_run.py +38 -38
  234. polyaxon/_sdk/schemas/v1_run_connection.py +3 -3
  235. polyaxon/_sdk/schemas/v1_run_edge.py +5 -5
  236. polyaxon/_sdk/schemas/v1_run_edge_lineage.py +3 -3
  237. polyaxon/_sdk/schemas/v1_run_edges_graph.py +1 -1
  238. polyaxon/_sdk/schemas/v1_run_reference_catalog.py +4 -4
  239. polyaxon/_sdk/schemas/v1_run_settings.py +9 -9
  240. polyaxon/_sdk/schemas/v1_search.py +10 -10
  241. polyaxon/_sdk/schemas/v1_search_spec.py +14 -14
  242. polyaxon/_sdk/schemas/v1_section_spec.py +12 -7
  243. polyaxon/_sdk/schemas/v1_service_account.py +9 -9
  244. polyaxon/_sdk/schemas/v1_settings_catalog.py +4 -3
  245. polyaxon/_sdk/schemas/v1_tag.py +6 -6
  246. polyaxon/_sdk/schemas/v1_team.py +11 -8
  247. polyaxon/_sdk/schemas/v1_team_member.py +6 -6
  248. polyaxon/_sdk/schemas/v1_team_settings.py +2 -2
  249. polyaxon/_sdk/schemas/v1_token.py +10 -10
  250. polyaxon/_sdk/schemas/v1_trial_start.py +6 -6
  251. polyaxon/_sdk/schemas/v1_user.py +6 -7
  252. polyaxon/_sdk/schemas/v1_user_access.py +17 -0
  253. polyaxon/_sdk/schemas/v1_user_email.py +1 -1
  254. polyaxon/_sdk/schemas/v1_user_singup.py +5 -5
  255. polyaxon/_sdk/schemas/v1_uuids.py +1 -1
  256. polyaxon/_sidecar/container/__init__.py +39 -20
  257. polyaxon/_sidecar/container/monitors/logs.py +10 -13
  258. polyaxon/_sidecar/ignore.py +0 -1
  259. polyaxon/_utils/cli_constants.py +2 -0
  260. polyaxon/_utils/fqn_utils.py +25 -2
  261. polyaxon/_utils/test_utils.py +2 -1
  262. polyaxon/pkg.py +1 -1
  263. polyaxon/schemas.py +1 -1
  264. {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/METADATA +43 -43
  265. {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/RECORD +269 -252
  266. {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/WHEEL +1 -1
  267. polyaxon/_sdk/schemas/v1_project_user_access.py +0 -10
  268. {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/LICENSE +0 -0
  269. {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/entry_points.txt +0 -0
  270. {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@ from datetime import datetime
2
2
  from typing import Any, Dict, Optional
3
3
  from typing_extensions import Annotated
4
4
 
5
- from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_call
6
6
 
7
7
  from polyaxon._schemas.lifecycle import V1Status
8
8
  from polyaxon._sdk.base_api import BaseApi
@@ -38,7 +38,7 @@ from traceml.logging import V1Logs
38
38
 
39
39
 
40
40
  class RunsV1Api(BaseApi):
41
- @validate_arguments
41
+ @validate_call
42
42
  def approve_run(
43
43
  self,
44
44
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -87,7 +87,7 @@ class RunsV1Api(BaseApi):
87
87
  owner, entity, uuid, **kwargs
88
88
  ) # noqa: E501
89
89
 
90
- @validate_arguments
90
+ @validate_call
91
91
  def approve_run_with_http_info(
92
92
  self,
93
93
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -218,13 +218,11 @@ class RunsV1Api(BaseApi):
218
218
  _request_auth=_params.get("_request_auth"),
219
219
  )
220
220
 
221
- @validate_arguments
221
+ @validate_call
222
222
  def approve_runs(
223
223
  self,
224
224
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
225
- project: Annotated[
226
- StrictStr, Field(..., description="Project under namesapce")
227
- ],
225
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
228
226
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
229
227
  **kwargs
230
228
  ) -> None: # noqa: E501
@@ -233,13 +231,13 @@ class RunsV1Api(BaseApi):
233
231
  This method makes a synchronous HTTP request by default. To make an
234
232
  asynchronous HTTP request, please pass async_req=True
235
233
 
236
- >>> thread = api.approve_runs(owner, project, body, async_req=True)
234
+ >>> thread = api.approve_runs(owner, name, body, async_req=True)
237
235
  >>> result = thread.get()
238
236
 
239
237
  :param owner: Owner of the namespace (required)
240
238
  :type owner: str
241
- :param project: Project under namesapce (required)
242
- :type project: str
239
+ :param name: Entity under namespace (required)
240
+ :type name: str
243
241
  :param body: Uuids of the entities (required)
244
242
  :type body: V1Uuids
245
243
  :param async_req: Whether to execute the request asynchronously.
@@ -259,16 +257,14 @@ class RunsV1Api(BaseApi):
259
257
  """
260
258
  kwargs["_return_http_data_only"] = True
261
259
  return self.approve_runs_with_http_info(
262
- owner, project, body, **kwargs
260
+ owner, name, body, **kwargs
263
261
  ) # noqa: E501
264
262
 
265
- @validate_arguments
263
+ @validate_call
266
264
  def approve_runs_with_http_info(
267
265
  self,
268
266
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
269
- project: Annotated[
270
- StrictStr, Field(..., description="Project under namesapce")
271
- ],
267
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
272
268
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
273
269
  **kwargs
274
270
  ): # noqa: E501
@@ -277,13 +273,13 @@ class RunsV1Api(BaseApi):
277
273
  This method makes a synchronous HTTP request by default. To make an
278
274
  asynchronous HTTP request, please pass async_req=True
279
275
 
280
- >>> thread = api.approve_runs_with_http_info(owner, project, body, async_req=True)
276
+ >>> thread = api.approve_runs_with_http_info(owner, name, body, async_req=True)
281
277
  >>> result = thread.get()
282
278
 
283
279
  :param owner: Owner of the namespace (required)
284
280
  :type owner: str
285
- :param project: Project under namesapce (required)
286
- :type project: str
281
+ :param name: Entity under namespace (required)
282
+ :type name: str
287
283
  :param body: Uuids of the entities (required)
288
284
  :type body: V1Uuids
289
285
  :param async_req: Whether to execute the request asynchronously.
@@ -312,7 +308,7 @@ class RunsV1Api(BaseApi):
312
308
 
313
309
  _params = locals()
314
310
 
315
- _all_params = ["owner", "project", "body"]
311
+ _all_params = ["owner", "name", "body"]
316
312
  _all_params.extend(
317
313
  [
318
314
  "async_req",
@@ -341,8 +337,8 @@ class RunsV1Api(BaseApi):
341
337
  _path_params = {}
342
338
  if _params["owner"]:
343
339
  _path_params["owner"] = _params["owner"]
344
- if _params["project"]:
345
- _path_params["project"] = _params["project"]
340
+ if _params["name"]:
341
+ _path_params["name"] = _params["name"]
346
342
 
347
343
  # process the query parameters
348
344
  _query_params = []
@@ -378,7 +374,7 @@ class RunsV1Api(BaseApi):
378
374
  _response_types_map = {}
379
375
 
380
376
  return self.api_client.call_api(
381
- "/api/v1/{owner}/{project}/runs/approve",
377
+ "/api/v1/{owner}/{name}/runs/approve",
382
378
  "POST",
383
379
  _path_params,
384
380
  _query_params,
@@ -396,7 +392,7 @@ class RunsV1Api(BaseApi):
396
392
  _request_auth=_params.get("_request_auth"),
397
393
  )
398
394
 
399
- @validate_arguments
395
+ @validate_call
400
396
  def archive_run(
401
397
  self,
402
398
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -445,7 +441,7 @@ class RunsV1Api(BaseApi):
445
441
  owner, entity, uuid, **kwargs
446
442
  ) # noqa: E501
447
443
 
448
- @validate_arguments
444
+ @validate_call
449
445
  def archive_run_with_http_info(
450
446
  self,
451
447
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -576,13 +572,11 @@ class RunsV1Api(BaseApi):
576
572
  _request_auth=_params.get("_request_auth"),
577
573
  )
578
574
 
579
- @validate_arguments
575
+ @validate_call
580
576
  def archive_runs(
581
577
  self,
582
578
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
583
- project: Annotated[
584
- StrictStr, Field(..., description="Project under namesapce")
585
- ],
579
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
586
580
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
587
581
  **kwargs
588
582
  ) -> None: # noqa: E501
@@ -591,13 +585,13 @@ class RunsV1Api(BaseApi):
591
585
  This method makes a synchronous HTTP request by default. To make an
592
586
  asynchronous HTTP request, please pass async_req=True
593
587
 
594
- >>> thread = api.archive_runs(owner, project, body, async_req=True)
588
+ >>> thread = api.archive_runs(owner, name, body, async_req=True)
595
589
  >>> result = thread.get()
596
590
 
597
591
  :param owner: Owner of the namespace (required)
598
592
  :type owner: str
599
- :param project: Project under namesapce (required)
600
- :type project: str
593
+ :param name: Entity under namespace (required)
594
+ :type name: str
601
595
  :param body: Uuids of the entities (required)
602
596
  :type body: V1Uuids
603
597
  :param async_req: Whether to execute the request asynchronously.
@@ -617,16 +611,14 @@ class RunsV1Api(BaseApi):
617
611
  """
618
612
  kwargs["_return_http_data_only"] = True
619
613
  return self.archive_runs_with_http_info(
620
- owner, project, body, **kwargs
614
+ owner, name, body, **kwargs
621
615
  ) # noqa: E501
622
616
 
623
- @validate_arguments
617
+ @validate_call
624
618
  def archive_runs_with_http_info(
625
619
  self,
626
620
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
627
- project: Annotated[
628
- StrictStr, Field(..., description="Project under namesapce")
629
- ],
621
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
630
622
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
631
623
  **kwargs
632
624
  ): # noqa: E501
@@ -635,13 +627,13 @@ class RunsV1Api(BaseApi):
635
627
  This method makes a synchronous HTTP request by default. To make an
636
628
  asynchronous HTTP request, please pass async_req=True
637
629
 
638
- >>> thread = api.archive_runs_with_http_info(owner, project, body, async_req=True)
630
+ >>> thread = api.archive_runs_with_http_info(owner, name, body, async_req=True)
639
631
  >>> result = thread.get()
640
632
 
641
633
  :param owner: Owner of the namespace (required)
642
634
  :type owner: str
643
- :param project: Project under namesapce (required)
644
- :type project: str
635
+ :param name: Entity under namespace (required)
636
+ :type name: str
645
637
  :param body: Uuids of the entities (required)
646
638
  :type body: V1Uuids
647
639
  :param async_req: Whether to execute the request asynchronously.
@@ -670,7 +662,7 @@ class RunsV1Api(BaseApi):
670
662
 
671
663
  _params = locals()
672
664
 
673
- _all_params = ["owner", "project", "body"]
665
+ _all_params = ["owner", "name", "body"]
674
666
  _all_params.extend(
675
667
  [
676
668
  "async_req",
@@ -699,8 +691,8 @@ class RunsV1Api(BaseApi):
699
691
  _path_params = {}
700
692
  if _params["owner"]:
701
693
  _path_params["owner"] = _params["owner"]
702
- if _params["project"]:
703
- _path_params["project"] = _params["project"]
694
+ if _params["name"]:
695
+ _path_params["name"] = _params["name"]
704
696
 
705
697
  # process the query parameters
706
698
  _query_params = []
@@ -736,7 +728,7 @@ class RunsV1Api(BaseApi):
736
728
  _response_types_map = {}
737
729
 
738
730
  return self.api_client.call_api(
739
- "/api/v1/{owner}/{project}/runs/archive",
731
+ "/api/v1/{owner}/{name}/runs/archive",
740
732
  "POST",
741
733
  _path_params,
742
734
  _query_params,
@@ -754,7 +746,7 @@ class RunsV1Api(BaseApi):
754
746
  _request_auth=_params.get("_request_auth"),
755
747
  )
756
748
 
757
- @validate_arguments
749
+ @validate_call
758
750
  def bookmark_run(
759
751
  self,
760
752
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -803,7 +795,7 @@ class RunsV1Api(BaseApi):
803
795
  owner, entity, uuid, **kwargs
804
796
  ) # noqa: E501
805
797
 
806
- @validate_arguments
798
+ @validate_call
807
799
  def bookmark_run_with_http_info(
808
800
  self,
809
801
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -934,13 +926,11 @@ class RunsV1Api(BaseApi):
934
926
  _request_auth=_params.get("_request_auth"),
935
927
  )
936
928
 
937
- @validate_arguments
929
+ @validate_call
938
930
  def bookmark_runs(
939
931
  self,
940
932
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
941
- project: Annotated[
942
- StrictStr, Field(..., description="Project under namesapce")
943
- ],
933
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
944
934
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
945
935
  **kwargs
946
936
  ) -> None: # noqa: E501
@@ -949,13 +939,13 @@ class RunsV1Api(BaseApi):
949
939
  This method makes a synchronous HTTP request by default. To make an
950
940
  asynchronous HTTP request, please pass async_req=True
951
941
 
952
- >>> thread = api.bookmark_runs(owner, project, body, async_req=True)
942
+ >>> thread = api.bookmark_runs(owner, name, body, async_req=True)
953
943
  >>> result = thread.get()
954
944
 
955
945
  :param owner: Owner of the namespace (required)
956
946
  :type owner: str
957
- :param project: Project under namesapce (required)
958
- :type project: str
947
+ :param name: Entity under namespace (required)
948
+ :type name: str
959
949
  :param body: Uuids of the entities (required)
960
950
  :type body: V1Uuids
961
951
  :param async_req: Whether to execute the request asynchronously.
@@ -975,16 +965,14 @@ class RunsV1Api(BaseApi):
975
965
  """
976
966
  kwargs["_return_http_data_only"] = True
977
967
  return self.bookmark_runs_with_http_info(
978
- owner, project, body, **kwargs
968
+ owner, name, body, **kwargs
979
969
  ) # noqa: E501
980
970
 
981
- @validate_arguments
971
+ @validate_call
982
972
  def bookmark_runs_with_http_info(
983
973
  self,
984
974
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
985
- project: Annotated[
986
- StrictStr, Field(..., description="Project under namesapce")
987
- ],
975
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
988
976
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
989
977
  **kwargs
990
978
  ): # noqa: E501
@@ -993,13 +981,13 @@ class RunsV1Api(BaseApi):
993
981
  This method makes a synchronous HTTP request by default. To make an
994
982
  asynchronous HTTP request, please pass async_req=True
995
983
 
996
- >>> thread = api.bookmark_runs_with_http_info(owner, project, body, async_req=True)
984
+ >>> thread = api.bookmark_runs_with_http_info(owner, name, body, async_req=True)
997
985
  >>> result = thread.get()
998
986
 
999
987
  :param owner: Owner of the namespace (required)
1000
988
  :type owner: str
1001
- :param project: Project under namesapce (required)
1002
- :type project: str
989
+ :param name: Entity under namespace (required)
990
+ :type name: str
1003
991
  :param body: Uuids of the entities (required)
1004
992
  :type body: V1Uuids
1005
993
  :param async_req: Whether to execute the request asynchronously.
@@ -1028,7 +1016,7 @@ class RunsV1Api(BaseApi):
1028
1016
 
1029
1017
  _params = locals()
1030
1018
 
1031
- _all_params = ["owner", "project", "body"]
1019
+ _all_params = ["owner", "name", "body"]
1032
1020
  _all_params.extend(
1033
1021
  [
1034
1022
  "async_req",
@@ -1057,8 +1045,8 @@ class RunsV1Api(BaseApi):
1057
1045
  _path_params = {}
1058
1046
  if _params["owner"]:
1059
1047
  _path_params["owner"] = _params["owner"]
1060
- if _params["project"]:
1061
- _path_params["project"] = _params["project"]
1048
+ if _params["name"]:
1049
+ _path_params["name"] = _params["name"]
1062
1050
 
1063
1051
  # process the query parameters
1064
1052
  _query_params = []
@@ -1094,7 +1082,7 @@ class RunsV1Api(BaseApi):
1094
1082
  _response_types_map = {}
1095
1083
 
1096
1084
  return self.api_client.call_api(
1097
- "/api/v1/{owner}/{project}/runs/bookmark",
1085
+ "/api/v1/{owner}/{name}/runs/bookmark",
1098
1086
  "POST",
1099
1087
  _path_params,
1100
1088
  _query_params,
@@ -1112,7 +1100,7 @@ class RunsV1Api(BaseApi):
1112
1100
  _request_auth=_params.get("_request_auth"),
1113
1101
  )
1114
1102
 
1115
- @validate_arguments
1103
+ @validate_call
1116
1104
  def collect_run_logs(
1117
1105
  self,
1118
1106
  namespace: StrictStr,
@@ -1164,7 +1152,7 @@ class RunsV1Api(BaseApi):
1164
1152
  namespace, owner, project, uuid, kind, **kwargs
1165
1153
  ) # noqa: E501
1166
1154
 
1167
- @validate_arguments
1155
+ @validate_call
1168
1156
  def collect_run_logs_with_http_info(
1169
1157
  self,
1170
1158
  namespace: StrictStr,
@@ -1302,7 +1290,7 @@ class RunsV1Api(BaseApi):
1302
1290
  _request_auth=_params.get("_request_auth"),
1303
1291
  )
1304
1292
 
1305
- @validate_arguments
1293
+ @validate_call
1306
1294
  def copy_run(
1307
1295
  self,
1308
1296
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1349,7 +1337,7 @@ class RunsV1Api(BaseApi):
1349
1337
  owner, project, run_uuid, body, **kwargs
1350
1338
  ) # noqa: E501
1351
1339
 
1352
- @validate_arguments
1340
+ @validate_call
1353
1341
  def copy_run_with_http_info(
1354
1342
  self,
1355
1343
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1493,7 +1481,7 @@ class RunsV1Api(BaseApi):
1493
1481
  _request_auth=_params.get("_request_auth"),
1494
1482
  )
1495
1483
 
1496
- @validate_arguments
1484
+ @validate_call
1497
1485
  def create_run(
1498
1486
  self,
1499
1487
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1537,7 +1525,7 @@ class RunsV1Api(BaseApi):
1537
1525
  owner, project, body, **kwargs
1538
1526
  ) # noqa: E501
1539
1527
 
1540
- @validate_arguments
1528
+ @validate_call
1541
1529
  def create_run_with_http_info(
1542
1530
  self,
1543
1531
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1676,7 +1664,7 @@ class RunsV1Api(BaseApi):
1676
1664
  _request_auth=_params.get("_request_auth"),
1677
1665
  )
1678
1666
 
1679
- @validate_arguments
1667
+ @validate_call
1680
1668
  def create_run_artifacts_lineage(
1681
1669
  self,
1682
1670
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1725,7 +1713,7 @@ class RunsV1Api(BaseApi):
1725
1713
  owner, project, uuid, body, **kwargs
1726
1714
  ) # noqa: E501
1727
1715
 
1728
- @validate_arguments
1716
+ @validate_call
1729
1717
  def create_run_artifacts_lineage_with_http_info(
1730
1718
  self,
1731
1719
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1866,7 +1854,7 @@ class RunsV1Api(BaseApi):
1866
1854
  _request_auth=_params.get("_request_auth"),
1867
1855
  )
1868
1856
 
1869
- @validate_arguments
1857
+ @validate_call
1870
1858
  def create_run_status(
1871
1859
  self,
1872
1860
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -1915,7 +1903,7 @@ class RunsV1Api(BaseApi):
1915
1903
  owner, project, uuid, body, **kwargs
1916
1904
  ) # noqa: E501
1917
1905
 
1918
- @validate_arguments
1906
+ @validate_call
1919
1907
  def create_run_status_with_http_info(
1920
1908
  self,
1921
1909
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2061,7 +2049,7 @@ class RunsV1Api(BaseApi):
2061
2049
  _request_auth=_params.get("_request_auth"),
2062
2050
  )
2063
2051
 
2064
- @validate_arguments
2052
+ @validate_call
2065
2053
  def delete_run(
2066
2054
  self,
2067
2055
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2110,7 +2098,7 @@ class RunsV1Api(BaseApi):
2110
2098
  owner, entity, uuid, **kwargs
2111
2099
  ) # noqa: E501
2112
2100
 
2113
- @validate_arguments
2101
+ @validate_call
2114
2102
  def delete_run_with_http_info(
2115
2103
  self,
2116
2104
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2241,7 +2229,7 @@ class RunsV1Api(BaseApi):
2241
2229
  _request_auth=_params.get("_request_auth"),
2242
2230
  )
2243
2231
 
2244
- @validate_arguments
2232
+ @validate_call
2245
2233
  def delete_run_artifact(
2246
2234
  self,
2247
2235
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -2300,7 +2288,7 @@ class RunsV1Api(BaseApi):
2300
2288
  namespace, owner, project, uuid, path, connection, **kwargs
2301
2289
  ) # noqa: E501
2302
2290
 
2303
- @validate_arguments
2291
+ @validate_call
2304
2292
  def delete_run_artifact_with_http_info(
2305
2293
  self,
2306
2294
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -2447,7 +2435,7 @@ class RunsV1Api(BaseApi):
2447
2435
  _request_auth=_params.get("_request_auth"),
2448
2436
  )
2449
2437
 
2450
- @validate_arguments
2438
+ @validate_call
2451
2439
  def delete_run_artifact_lineage(
2452
2440
  self,
2453
2441
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2501,7 +2489,7 @@ class RunsV1Api(BaseApi):
2501
2489
  owner, project, uuid, name, namespace, **kwargs
2502
2490
  ) # noqa: E501
2503
2491
 
2504
- @validate_arguments
2492
+ @validate_call
2505
2493
  def delete_run_artifact_lineage_with_http_info(
2506
2494
  self,
2507
2495
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -2641,7 +2629,7 @@ class RunsV1Api(BaseApi):
2641
2629
  _request_auth=_params.get("_request_auth"),
2642
2630
  )
2643
2631
 
2644
- @validate_arguments
2632
+ @validate_call
2645
2633
  def delete_run_artifacts(
2646
2634
  self,
2647
2635
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -2700,7 +2688,7 @@ class RunsV1Api(BaseApi):
2700
2688
  namespace, owner, project, uuid, path, connection, **kwargs
2701
2689
  ) # noqa: E501
2702
2690
 
2703
- @validate_arguments
2691
+ @validate_call
2704
2692
  def delete_run_artifacts_with_http_info(
2705
2693
  self,
2706
2694
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -2847,13 +2835,11 @@ class RunsV1Api(BaseApi):
2847
2835
  _request_auth=_params.get("_request_auth"),
2848
2836
  )
2849
2837
 
2850
- @validate_arguments
2838
+ @validate_call
2851
2839
  def delete_runs(
2852
2840
  self,
2853
2841
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
2854
- project: Annotated[
2855
- StrictStr, Field(..., description="Project under namesapce")
2856
- ],
2842
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
2857
2843
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
2858
2844
  **kwargs
2859
2845
  ) -> None: # noqa: E501
@@ -2867,8 +2853,8 @@ class RunsV1Api(BaseApi):
2867
2853
 
2868
2854
  :param owner: Owner of the namespace (required)
2869
2855
  :type owner: str
2870
- :param project: Project under namesapce (required)
2871
- :type project: str
2856
+ :param name: Entity under namespace (required)
2857
+ :type name: str
2872
2858
  :param body: Uuids of the entities (required)
2873
2859
  :type body: V1Uuids
2874
2860
  :param async_req: Whether to execute the request asynchronously.
@@ -2888,16 +2874,14 @@ class RunsV1Api(BaseApi):
2888
2874
  """
2889
2875
  kwargs["_return_http_data_only"] = True
2890
2876
  return self.delete_runs_with_http_info(
2891
- owner, project, body, **kwargs
2877
+ owner, name, body, **kwargs
2892
2878
  ) # noqa: E501
2893
2879
 
2894
- @validate_arguments
2880
+ @validate_call
2895
2881
  def delete_runs_with_http_info(
2896
2882
  self,
2897
2883
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
2898
- project: Annotated[
2899
- StrictStr, Field(..., description="Project under namesapce")
2900
- ],
2884
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
2901
2885
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
2902
2886
  **kwargs
2903
2887
  ): # noqa: E501
@@ -2906,13 +2890,13 @@ class RunsV1Api(BaseApi):
2906
2890
  This method makes a synchronous HTTP request by default. To make an
2907
2891
  asynchronous HTTP request, please pass async_req=True
2908
2892
 
2909
- >>> thread = api.delete_runs_with_http_info(owner, project, body, async_req=True)
2893
+ >>> thread = api.delete_runs_with_http_info(owner, name, body, async_req=True)
2910
2894
  >>> result = thread.get()
2911
2895
 
2912
2896
  :param owner: Owner of the namespace (required)
2913
2897
  :type owner: str
2914
- :param project: Project under namesapce (required)
2915
- :type project: str
2898
+ :param name: Entity under namespace (required)
2899
+ :type name: str
2916
2900
  :param body: Uuids of the entities (required)
2917
2901
  :type body: V1Uuids
2918
2902
  :param async_req: Whether to execute the request asynchronously.
@@ -2941,7 +2925,7 @@ class RunsV1Api(BaseApi):
2941
2925
 
2942
2926
  _params = locals()
2943
2927
 
2944
- _all_params = ["owner", "project", "body"]
2928
+ _all_params = ["owner", "name", "body"]
2945
2929
  _all_params.extend(
2946
2930
  [
2947
2931
  "async_req",
@@ -2970,8 +2954,8 @@ class RunsV1Api(BaseApi):
2970
2954
  _path_params = {}
2971
2955
  if _params["owner"]:
2972
2956
  _path_params["owner"] = _params["owner"]
2973
- if _params["project"]:
2974
- _path_params["project"] = _params["project"]
2957
+ if _params["name"]:
2958
+ _path_params["name"] = _params["name"]
2975
2959
 
2976
2960
  # process the query parameters
2977
2961
  _query_params = []
@@ -3007,7 +2991,7 @@ class RunsV1Api(BaseApi):
3007
2991
  _response_types_map = {}
3008
2992
 
3009
2993
  return self.api_client.call_api(
3010
- "/api/v1/{owner}/{project}/runs/delete",
2994
+ "/api/v1/{owner}/{name}/runs/delete",
3011
2995
  "DELETE",
3012
2996
  _path_params,
3013
2997
  _query_params,
@@ -3025,13 +3009,13 @@ class RunsV1Api(BaseApi):
3025
3009
  _request_auth=_params.get("_request_auth"),
3026
3010
  )
3027
3011
 
3028
- @validate_arguments
3012
+ @validate_call
3029
3013
  def get_multi_run_events(
3030
3014
  self,
3031
3015
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
3032
3016
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
3033
- project: Annotated[
3034
- StrictStr, Field(..., description="Project where the run will be assigned")
3017
+ entity: Annotated[
3018
+ StrictStr, Field(..., description="Entity where the run will be assigned")
3035
3019
  ],
3036
3020
  kind: Annotated[str, Field(..., description="The artifact kind")],
3037
3021
  names: Annotated[
@@ -3062,15 +3046,15 @@ class RunsV1Api(BaseApi):
3062
3046
  This method makes a synchronous HTTP request by default. To make an
3063
3047
  asynchronous HTTP request, please pass async_req=True
3064
3048
 
3065
- >>> thread = api.get_multi_run_events(namespace, owner, project, kind, names, runs, orient, force, sample, connection, status, async_req=True)
3049
+ >>> thread = api.get_multi_run_events(namespace, owner, entity, kind, names, runs, orient, force, sample, connection, status, async_req=True)
3066
3050
  >>> result = thread.get()
3067
3051
 
3068
3052
  :param namespace: namespace (required)
3069
3053
  :type namespace: str
3070
3054
  :param owner: Owner of the namespace (required)
3071
3055
  :type owner: str
3072
- :param project: Project where the run will be assigned (required)
3073
- :type project: str
3056
+ :param entity: Entity where the run will be assigned (required)
3057
+ :type entity: str
3074
3058
  :param kind: The artifact kind (required)
3075
3059
  :type kind: str
3076
3060
  :param names: Names query param.
@@ -3106,7 +3090,7 @@ class RunsV1Api(BaseApi):
3106
3090
  return self.get_multi_run_events_with_http_info(
3107
3091
  namespace,
3108
3092
  owner,
3109
- project,
3093
+ entity,
3110
3094
  kind,
3111
3095
  names,
3112
3096
  runs,
@@ -3118,13 +3102,13 @@ class RunsV1Api(BaseApi):
3118
3102
  **kwargs
3119
3103
  ) # noqa: E501
3120
3104
 
3121
- @validate_arguments
3105
+ @validate_call
3122
3106
  def get_multi_run_events_with_http_info(
3123
3107
  self,
3124
3108
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
3125
3109
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
3126
- project: Annotated[
3127
- StrictStr, Field(..., description="Project where the run will be assigned")
3110
+ entity: Annotated[
3111
+ StrictStr, Field(..., description="Entity where the run will be assigned")
3128
3112
  ],
3129
3113
  kind: Annotated[str, Field(..., description="The artifact kind")],
3130
3114
  names: Annotated[
@@ -3155,15 +3139,15 @@ class RunsV1Api(BaseApi):
3155
3139
  This method makes a synchronous HTTP request by default. To make an
3156
3140
  asynchronous HTTP request, please pass async_req=True
3157
3141
 
3158
- >>> thread = api.get_multi_run_events_with_http_info(namespace, owner, project, kind, names, runs, orient, force, sample, connection, status, async_req=True)
3142
+ >>> thread = api.get_multi_run_events_with_http_info(namespace, owner, entity, kind, names, runs, orient, force, sample, connection, status, async_req=True)
3159
3143
  >>> result = thread.get()
3160
3144
 
3161
3145
  :param namespace: namespace (required)
3162
3146
  :type namespace: str
3163
3147
  :param owner: Owner of the namespace (required)
3164
3148
  :type owner: str
3165
- :param project: Project where the run will be assigned (required)
3166
- :type project: str
3149
+ :param entity: Entity where the run will be assigned (required)
3150
+ :type entity: str
3167
3151
  :param kind: The artifact kind (required)
3168
3152
  :type kind: str
3169
3153
  :param names: Names query param.
@@ -3209,7 +3193,7 @@ class RunsV1Api(BaseApi):
3209
3193
  _all_params = [
3210
3194
  "namespace",
3211
3195
  "owner",
3212
- "project",
3196
+ "entity",
3213
3197
  "kind",
3214
3198
  "names",
3215
3199
  "runs",
@@ -3249,8 +3233,8 @@ class RunsV1Api(BaseApi):
3249
3233
  _path_params["namespace"] = _params["namespace"]
3250
3234
  if _params["owner"]:
3251
3235
  _path_params["owner"] = _params["owner"]
3252
- if _params["project"]:
3253
- _path_params["project"] = _params["project"]
3236
+ if _params["entity"]:
3237
+ _path_params["entity"] = _params["entity"]
3254
3238
  if _params["kind"]:
3255
3239
  _path_params["kind"] = _params["kind"]
3256
3240
 
@@ -3297,7 +3281,7 @@ class RunsV1Api(BaseApi):
3297
3281
  }
3298
3282
 
3299
3283
  return self.api_client.call_api(
3300
- "/streams/v1/{namespace}/{owner}/{project}/runs/multi/events/{kind}",
3284
+ "/streams/v1/{namespace}/{owner}/{entity}/runs/multi/events/{kind}",
3301
3285
  "GET",
3302
3286
  _path_params,
3303
3287
  _query_params,
@@ -3315,13 +3299,13 @@ class RunsV1Api(BaseApi):
3315
3299
  _request_auth=_params.get("_request_auth"),
3316
3300
  )
3317
3301
 
3318
- @validate_arguments
3302
+ @validate_call
3319
3303
  def get_multi_run_importance(
3320
3304
  self,
3321
3305
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
3322
3306
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
3323
- project: Annotated[
3324
- StrictStr, Field(..., description="Project where the run will be assigned")
3307
+ entity: Annotated[
3308
+ StrictStr, Field(..., description="Entity where the run will be assigned")
3325
3309
  ],
3326
3310
  body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
3327
3311
  **kwargs
@@ -3331,15 +3315,15 @@ class RunsV1Api(BaseApi):
3331
3315
  This method makes a synchronous HTTP request by default. To make an
3332
3316
  asynchronous HTTP request, please pass async_req=True
3333
3317
 
3334
- >>> thread = api.get_multi_run_importance(namespace, owner, project, body, async_req=True)
3318
+ >>> thread = api.get_multi_run_importance(namespace, owner, entity, body, async_req=True)
3335
3319
  >>> result = thread.get()
3336
3320
 
3337
3321
  :param namespace: namespace (required)
3338
3322
  :type namespace: str
3339
3323
  :param owner: Owner of the namespace (required)
3340
3324
  :type owner: str
3341
- :param project: Project where the run will be assigned (required)
3342
- :type project: str
3325
+ :param entity: Entity where the run will be assigned (required)
3326
+ :type entity: str
3343
3327
  :param body: Params/Metrics data (required)
3344
3328
  :type body: object
3345
3329
  :param async_req: Whether to execute the request asynchronously.
@@ -3359,16 +3343,16 @@ class RunsV1Api(BaseApi):
3359
3343
  """
3360
3344
  kwargs["_return_http_data_only"] = True
3361
3345
  return self.get_multi_run_importance_with_http_info(
3362
- namespace, owner, project, body, **kwargs
3346
+ namespace, owner, entity, body, **kwargs
3363
3347
  ) # noqa: E501
3364
3348
 
3365
- @validate_arguments
3349
+ @validate_call
3366
3350
  def get_multi_run_importance_with_http_info(
3367
3351
  self,
3368
3352
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
3369
3353
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
3370
- project: Annotated[
3371
- StrictStr, Field(..., description="Project where the run will be assigned")
3354
+ entity: Annotated[
3355
+ StrictStr, Field(..., description="Entity where the run will be assigned")
3372
3356
  ],
3373
3357
  body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
3374
3358
  **kwargs
@@ -3378,15 +3362,15 @@ class RunsV1Api(BaseApi):
3378
3362
  This method makes a synchronous HTTP request by default. To make an
3379
3363
  asynchronous HTTP request, please pass async_req=True
3380
3364
 
3381
- >>> thread = api.get_multi_run_importance_with_http_info(namespace, owner, project, body, async_req=True)
3365
+ >>> thread = api.get_multi_run_importance_with_http_info(namespace, owner, entity, body, async_req=True)
3382
3366
  >>> result = thread.get()
3383
3367
 
3384
3368
  :param namespace: namespace (required)
3385
3369
  :type namespace: str
3386
3370
  :param owner: Owner of the namespace (required)
3387
3371
  :type owner: str
3388
- :param project: Project where the run will be assigned (required)
3389
- :type project: str
3372
+ :param entity: Entity where the run will be assigned (required)
3373
+ :type entity: str
3390
3374
  :param body: Params/Metrics data (required)
3391
3375
  :type body: object
3392
3376
  :param async_req: Whether to execute the request asynchronously.
@@ -3415,7 +3399,7 @@ class RunsV1Api(BaseApi):
3415
3399
 
3416
3400
  _params = locals()
3417
3401
 
3418
- _all_params = ["namespace", "owner", "project", "body"]
3402
+ _all_params = ["namespace", "owner", "entity", "body"]
3419
3403
  _all_params.extend(
3420
3404
  [
3421
3405
  "async_req",
@@ -3448,8 +3432,8 @@ class RunsV1Api(BaseApi):
3448
3432
  if _params["owner"]:
3449
3433
  _path_params["owner"] = _params["owner"]
3450
3434
 
3451
- if _params["project"]:
3452
- _path_params["project"] = _params["project"]
3435
+ if _params["entity"]:
3436
+ _path_params["entity"] = _params["entity"]
3453
3437
 
3454
3438
  # process the query parameters
3455
3439
  _query_params = []
@@ -3487,7 +3471,7 @@ class RunsV1Api(BaseApi):
3487
3471
  }
3488
3472
 
3489
3473
  return self.api_client.call_api(
3490
- "/streams/v1/{namespace}/{owner}/{project}/runs/multi/importance",
3474
+ "/streams/v1/{namespace}/{owner}/{entity}/runs/multi/importance",
3491
3475
  "POST",
3492
3476
  _path_params,
3493
3477
  _query_params,
@@ -3505,7 +3489,7 @@ class RunsV1Api(BaseApi):
3505
3489
  _request_auth=_params.get("_request_auth"),
3506
3490
  )
3507
3491
 
3508
- @validate_arguments
3492
+ @validate_call
3509
3493
  def get_run(
3510
3494
  self,
3511
3495
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3552,7 +3536,7 @@ class RunsV1Api(BaseApi):
3552
3536
  kwargs["_return_http_data_only"] = True
3553
3537
  return self.get_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
3554
3538
 
3555
- @validate_arguments
3539
+ @validate_call
3556
3540
  def get_run_with_http_info(
3557
3541
  self,
3558
3542
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3688,7 +3672,7 @@ class RunsV1Api(BaseApi):
3688
3672
  _request_auth=_params.get("_request_auth"),
3689
3673
  )
3690
3674
 
3691
- @validate_arguments
3675
+ @validate_call
3692
3676
  def get_run_artifact(
3693
3677
  self,
3694
3678
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -3758,7 +3742,7 @@ class RunsV1Api(BaseApi):
3758
3742
  namespace, owner, project, uuid, path, stream, force, connection, **kwargs
3759
3743
  ) # noqa: E501
3760
3744
 
3761
- @validate_arguments
3745
+ @validate_call
3762
3746
  def get_run_artifact_with_http_info(
3763
3747
  self,
3764
3748
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -3934,7 +3918,7 @@ class RunsV1Api(BaseApi):
3934
3918
  _request_auth=_params.get("_request_auth"),
3935
3919
  )
3936
3920
 
3937
- @validate_arguments
3921
+ @validate_call
3938
3922
  def get_run_artifact_lineage(
3939
3923
  self,
3940
3924
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -3988,7 +3972,7 @@ class RunsV1Api(BaseApi):
3988
3972
  owner, project, uuid, name, namespace, **kwargs
3989
3973
  ) # noqa: E501
3990
3974
 
3991
- @validate_arguments
3975
+ @validate_call
3992
3976
  def get_run_artifact_lineage_with_http_info(
3993
3977
  self,
3994
3978
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -4133,7 +4117,7 @@ class RunsV1Api(BaseApi):
4133
4117
  _request_auth=_params.get("_request_auth"),
4134
4118
  )
4135
4119
 
4136
- @validate_arguments
4120
+ @validate_call
4137
4121
  def get_run_artifacts(
4138
4122
  self,
4139
4123
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -4198,7 +4182,7 @@ class RunsV1Api(BaseApi):
4198
4182
  namespace, owner, project, uuid, path, force, connection, **kwargs
4199
4183
  ) # noqa: E501
4200
4184
 
4201
- @validate_arguments
4185
+ @validate_call
4202
4186
  def get_run_artifacts_with_http_info(
4203
4187
  self,
4204
4188
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -4368,12 +4352,12 @@ class RunsV1Api(BaseApi):
4368
4352
  _request_auth=_params.get("_request_auth"),
4369
4353
  )
4370
4354
 
4371
- @validate_arguments
4355
+ @validate_call
4372
4356
  def get_run_artifacts_lineage(
4373
4357
  self,
4374
4358
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4375
4359
  entity: Annotated[
4376
- StrictStr, Field(..., description="Entity name under namesapce")
4360
+ StrictStr, Field(..., description="Entity name under namespace")
4377
4361
  ],
4378
4362
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
4379
4363
  offset: Annotated[
@@ -4399,7 +4383,7 @@ class RunsV1Api(BaseApi):
4399
4383
 
4400
4384
  :param owner: Owner of the namespace (required)
4401
4385
  :type owner: str
4402
- :param entity: Entity name under namesapce (required)
4386
+ :param entity: Entity name under namespace (required)
4403
4387
  :type entity: str
4404
4388
  :param uuid: SubEntity uuid (required)
4405
4389
  :type uuid: str
@@ -4433,12 +4417,12 @@ class RunsV1Api(BaseApi):
4433
4417
  owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
4434
4418
  ) # noqa: E501
4435
4419
 
4436
- @validate_arguments
4420
+ @validate_call
4437
4421
  def get_run_artifacts_lineage_with_http_info(
4438
4422
  self,
4439
4423
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4440
4424
  entity: Annotated[
4441
- StrictStr, Field(..., description="Entity name under namesapce")
4425
+ StrictStr, Field(..., description="Entity name under namespace")
4442
4426
  ],
4443
4427
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
4444
4428
  offset: Annotated[
@@ -4464,7 +4448,7 @@ class RunsV1Api(BaseApi):
4464
4448
 
4465
4449
  :param owner: Owner of the namespace (required)
4466
4450
  :type owner: str
4467
- :param entity: Entity name under namesapce (required)
4451
+ :param entity: Entity name under namespace (required)
4468
4452
  :type entity: str
4469
4453
  :param uuid: SubEntity uuid (required)
4470
4454
  :type uuid: str
@@ -4604,12 +4588,12 @@ class RunsV1Api(BaseApi):
4604
4588
  _request_auth=_params.get("_request_auth"),
4605
4589
  )
4606
4590
 
4607
- @validate_arguments
4591
+ @validate_call
4608
4592
  def get_run_artifacts_lineage_names(
4609
4593
  self,
4610
4594
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4611
4595
  entity: Annotated[
4612
- StrictStr, Field(..., description="Entity name under namesapce")
4596
+ StrictStr, Field(..., description="Entity name under namespace")
4613
4597
  ],
4614
4598
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
4615
4599
  offset: Annotated[
@@ -4635,7 +4619,7 @@ class RunsV1Api(BaseApi):
4635
4619
 
4636
4620
  :param owner: Owner of the namespace (required)
4637
4621
  :type owner: str
4638
- :param entity: Entity name under namesapce (required)
4622
+ :param entity: Entity name under namespace (required)
4639
4623
  :type entity: str
4640
4624
  :param uuid: SubEntity uuid (required)
4641
4625
  :type uuid: str
@@ -4669,12 +4653,12 @@ class RunsV1Api(BaseApi):
4669
4653
  owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
4670
4654
  ) # noqa: E501
4671
4655
 
4672
- @validate_arguments
4656
+ @validate_call
4673
4657
  def get_run_artifacts_lineage_names_with_http_info(
4674
4658
  self,
4675
4659
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4676
4660
  entity: Annotated[
4677
- StrictStr, Field(..., description="Entity name under namesapce")
4661
+ StrictStr, Field(..., description="Entity name under namespace")
4678
4662
  ],
4679
4663
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
4680
4664
  offset: Annotated[
@@ -4700,7 +4684,7 @@ class RunsV1Api(BaseApi):
4700
4684
 
4701
4685
  :param owner: Owner of the namespace (required)
4702
4686
  :type owner: str
4703
- :param entity: Entity name under namesapce (required)
4687
+ :param entity: Entity name under namespace (required)
4704
4688
  :type entity: str
4705
4689
  :param uuid: SubEntity uuid (required)
4706
4690
  :type uuid: str
@@ -4840,7 +4824,7 @@ class RunsV1Api(BaseApi):
4840
4824
  _request_auth=_params.get("_request_auth"),
4841
4825
  )
4842
4826
 
4843
- @validate_arguments
4827
+ @validate_call
4844
4828
  def get_run_artifacts_tree(
4845
4829
  self,
4846
4830
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -4899,7 +4883,7 @@ class RunsV1Api(BaseApi):
4899
4883
  namespace, owner, project, uuid, path, connection, **kwargs
4900
4884
  ) # noqa: E501
4901
4885
 
4902
- @validate_arguments
4886
+ @validate_call
4903
4887
  def get_run_artifacts_tree_with_http_info(
4904
4888
  self,
4905
4889
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -5051,12 +5035,12 @@ class RunsV1Api(BaseApi):
5051
5035
  _request_auth=_params.get("_request_auth"),
5052
5036
  )
5053
5037
 
5054
- @validate_arguments
5038
+ @validate_call
5055
5039
  def get_run_clones_lineage(
5056
5040
  self,
5057
5041
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5058
5042
  entity: Annotated[
5059
- StrictStr, Field(..., description="Entity name under namesapce")
5043
+ StrictStr, Field(..., description="Entity name under namespace")
5060
5044
  ],
5061
5045
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
5062
5046
  offset: Annotated[
@@ -5082,7 +5066,7 @@ class RunsV1Api(BaseApi):
5082
5066
 
5083
5067
  :param owner: Owner of the namespace (required)
5084
5068
  :type owner: str
5085
- :param entity: Entity name under namesapce (required)
5069
+ :param entity: Entity name under namespace (required)
5086
5070
  :type entity: str
5087
5071
  :param uuid: SubEntity uuid (required)
5088
5072
  :type uuid: str
@@ -5116,12 +5100,12 @@ class RunsV1Api(BaseApi):
5116
5100
  owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
5117
5101
  ) # noqa: E501
5118
5102
 
5119
- @validate_arguments
5103
+ @validate_call
5120
5104
  def get_run_clones_lineage_with_http_info(
5121
5105
  self,
5122
5106
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5123
5107
  entity: Annotated[
5124
- StrictStr, Field(..., description="Entity name under namesapce")
5108
+ StrictStr, Field(..., description="Entity name under namespace")
5125
5109
  ],
5126
5110
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
5127
5111
  offset: Annotated[
@@ -5147,7 +5131,7 @@ class RunsV1Api(BaseApi):
5147
5131
 
5148
5132
  :param owner: Owner of the namespace (required)
5149
5133
  :type owner: str
5150
- :param entity: Entity name under namesapce (required)
5134
+ :param entity: Entity name under namespace (required)
5151
5135
  :type entity: str
5152
5136
  :param uuid: SubEntity uuid (required)
5153
5137
  :type uuid: str
@@ -5287,12 +5271,12 @@ class RunsV1Api(BaseApi):
5287
5271
  _request_auth=_params.get("_request_auth"),
5288
5272
  )
5289
5273
 
5290
- @validate_arguments
5274
+ @validate_call
5291
5275
  def get_run_connections_lineage(
5292
5276
  self,
5293
5277
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5294
5278
  entity: Annotated[
5295
- StrictStr, Field(..., description="Entity name under namesapce")
5279
+ StrictStr, Field(..., description="Entity name under namespace")
5296
5280
  ],
5297
5281
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
5298
5282
  offset: Annotated[
@@ -5318,7 +5302,7 @@ class RunsV1Api(BaseApi):
5318
5302
 
5319
5303
  :param owner: Owner of the namespace (required)
5320
5304
  :type owner: str
5321
- :param entity: Entity name under namesapce (required)
5305
+ :param entity: Entity name under namespace (required)
5322
5306
  :type entity: str
5323
5307
  :param uuid: SubEntity uuid (required)
5324
5308
  :type uuid: str
@@ -5352,12 +5336,12 @@ class RunsV1Api(BaseApi):
5352
5336
  owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
5353
5337
  ) # noqa: E501
5354
5338
 
5355
- @validate_arguments
5339
+ @validate_call
5356
5340
  def get_run_connections_lineage_with_http_info(
5357
5341
  self,
5358
5342
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5359
5343
  entity: Annotated[
5360
- StrictStr, Field(..., description="Entity name under namesapce")
5344
+ StrictStr, Field(..., description="Entity name under namespace")
5361
5345
  ],
5362
5346
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
5363
5347
  offset: Annotated[
@@ -5383,7 +5367,7 @@ class RunsV1Api(BaseApi):
5383
5367
 
5384
5368
  :param owner: Owner of the namespace (required)
5385
5369
  :type owner: str
5386
- :param entity: Entity name under namesapce (required)
5370
+ :param entity: Entity name under namespace (required)
5387
5371
  :type entity: str
5388
5372
  :param uuid: SubEntity uuid (required)
5389
5373
  :type uuid: str
@@ -5523,12 +5507,12 @@ class RunsV1Api(BaseApi):
5523
5507
  _request_auth=_params.get("_request_auth"),
5524
5508
  )
5525
5509
 
5526
- @validate_arguments
5510
+ @validate_call
5527
5511
  def get_run_downstream_lineage(
5528
5512
  self,
5529
5513
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5530
5514
  entity: Annotated[
5531
- StrictStr, Field(..., description="Entity name under namesapce")
5515
+ StrictStr, Field(..., description="Entity name under namespace")
5532
5516
  ],
5533
5517
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
5534
5518
  offset: Annotated[
@@ -5554,7 +5538,7 @@ class RunsV1Api(BaseApi):
5554
5538
 
5555
5539
  :param owner: Owner of the namespace (required)
5556
5540
  :type owner: str
5557
- :param entity: Entity name under namesapce (required)
5541
+ :param entity: Entity name under namespace (required)
5558
5542
  :type entity: str
5559
5543
  :param uuid: SubEntity uuid (required)
5560
5544
  :type uuid: str
@@ -5588,12 +5572,12 @@ class RunsV1Api(BaseApi):
5588
5572
  owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
5589
5573
  ) # noqa: E501
5590
5574
 
5591
- @validate_arguments
5575
+ @validate_call
5592
5576
  def get_run_downstream_lineage_with_http_info(
5593
5577
  self,
5594
5578
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5595
5579
  entity: Annotated[
5596
- StrictStr, Field(..., description="Entity name under namesapce")
5580
+ StrictStr, Field(..., description="Entity name under namespace")
5597
5581
  ],
5598
5582
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
5599
5583
  offset: Annotated[
@@ -5619,7 +5603,7 @@ class RunsV1Api(BaseApi):
5619
5603
 
5620
5604
  :param owner: Owner of the namespace (required)
5621
5605
  :type owner: str
5622
- :param entity: Entity name under namesapce (required)
5606
+ :param entity: Entity name under namespace (required)
5623
5607
  :type entity: str
5624
5608
  :param uuid: SubEntity uuid (required)
5625
5609
  :type uuid: str
@@ -5759,7 +5743,7 @@ class RunsV1Api(BaseApi):
5759
5743
  _request_auth=_params.get("_request_auth"),
5760
5744
  )
5761
5745
 
5762
- @validate_arguments
5746
+ @validate_call
5763
5747
  def get_run_events(
5764
5748
  self,
5765
5749
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -5852,7 +5836,7 @@ class RunsV1Api(BaseApi):
5852
5836
  **kwargs
5853
5837
  ) # noqa: E501
5854
5838
 
5855
- @validate_arguments
5839
+ @validate_call
5856
5840
  def get_run_events_with_http_info(
5857
5841
  self,
5858
5842
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -6049,7 +6033,7 @@ class RunsV1Api(BaseApi):
6049
6033
  _request_auth=_params.get("_request_auth"),
6050
6034
  )
6051
6035
 
6052
- @validate_arguments
6036
+ @validate_call
6053
6037
  def get_run_logs(
6054
6038
  self,
6055
6039
  namespace: StrictStr,
@@ -6126,7 +6110,7 @@ class RunsV1Api(BaseApi):
6126
6110
  **kwargs
6127
6111
  ) # noqa: E501
6128
6112
 
6129
- @validate_arguments
6113
+ @validate_call
6130
6114
  def get_run_logs_with_http_info(
6131
6115
  self,
6132
6116
  namespace: StrictStr,
@@ -6311,7 +6295,7 @@ class RunsV1Api(BaseApi):
6311
6295
  _request_auth=_params.get("_request_auth"),
6312
6296
  )
6313
6297
 
6314
- @validate_arguments
6298
+ @validate_call
6315
6299
  def get_run_namespace(
6316
6300
  self,
6317
6301
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -6360,7 +6344,7 @@ class RunsV1Api(BaseApi):
6360
6344
  owner, entity, uuid, **kwargs
6361
6345
  ) # noqa: E501
6362
6346
 
6363
- @validate_arguments
6347
+ @validate_call
6364
6348
  def get_run_namespace_with_http_info(
6365
6349
  self,
6366
6350
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -6496,7 +6480,7 @@ class RunsV1Api(BaseApi):
6496
6480
  _request_auth=_params.get("_request_auth"),
6497
6481
  )
6498
6482
 
6499
- @validate_arguments
6483
+ @validate_call
6500
6484
  def get_run_resources(
6501
6485
  self,
6502
6486
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -6585,7 +6569,7 @@ class RunsV1Api(BaseApi):
6585
6569
  **kwargs
6586
6570
  ) # noqa: E501
6587
6571
 
6588
- @validate_arguments
6572
+ @validate_call
6589
6573
  def get_run_resources_with_http_info(
6590
6574
  self,
6591
6575
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -6776,7 +6760,7 @@ class RunsV1Api(BaseApi):
6776
6760
  _request_auth=_params.get("_request_auth"),
6777
6761
  )
6778
6762
 
6779
- @validate_arguments
6763
+ @validate_call
6780
6764
  def get_run_settings(
6781
6765
  self,
6782
6766
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -6825,7 +6809,7 @@ class RunsV1Api(BaseApi):
6825
6809
  owner, entity, uuid, **kwargs
6826
6810
  ) # noqa: E501
6827
6811
 
6828
- @validate_arguments
6812
+ @validate_call
6829
6813
  def get_run_settings_with_http_info(
6830
6814
  self,
6831
6815
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -6961,12 +6945,12 @@ class RunsV1Api(BaseApi):
6961
6945
  _request_auth=_params.get("_request_auth"),
6962
6946
  )
6963
6947
 
6964
- @validate_arguments
6948
+ @validate_call
6965
6949
  def get_run_stats(
6966
6950
  self,
6967
6951
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6968
6952
  entity: Annotated[
6969
- StrictStr, Field(..., description="Entity name under namesapce")
6953
+ StrictStr, Field(..., description="Entity name under namespace")
6970
6954
  ],
6971
6955
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
6972
6956
  offset: Annotated[
@@ -7003,7 +6987,7 @@ class RunsV1Api(BaseApi):
7003
6987
 
7004
6988
  :param owner: Owner of the namespace (required)
7005
6989
  :type owner: str
7006
- :param entity: Entity name under namesapce (required)
6990
+ :param entity: Entity name under namespace (required)
7007
6991
  :type entity: str
7008
6992
  :param uuid: SubEntity uuid (required)
7009
6993
  :type uuid: str
@@ -7060,12 +7044,12 @@ class RunsV1Api(BaseApi):
7060
7044
  **kwargs
7061
7045
  ) # noqa: E501
7062
7046
 
7063
- @validate_arguments
7047
+ @validate_call
7064
7048
  def get_run_stats_with_http_info(
7065
7049
  self,
7066
7050
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
7067
7051
  entity: Annotated[
7068
- StrictStr, Field(..., description="Entity name under namesapce")
7052
+ StrictStr, Field(..., description="Entity name under namespace")
7069
7053
  ],
7070
7054
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
7071
7055
  offset: Annotated[
@@ -7102,7 +7086,7 @@ class RunsV1Api(BaseApi):
7102
7086
 
7103
7087
  :param owner: Owner of the namespace (required)
7104
7088
  :type owner: str
7105
- :param entity: Entity name under namesapce (required)
7089
+ :param entity: Entity name under namespace (required)
7106
7090
  :type entity: str
7107
7091
  :param uuid: SubEntity uuid (required)
7108
7092
  :type uuid: str
@@ -7267,7 +7251,7 @@ class RunsV1Api(BaseApi):
7267
7251
  _request_auth=_params.get("_request_auth"),
7268
7252
  )
7269
7253
 
7270
- @validate_arguments
7254
+ @validate_call
7271
7255
  def get_run_statuses(
7272
7256
  self,
7273
7257
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -7316,7 +7300,7 @@ class RunsV1Api(BaseApi):
7316
7300
  owner, entity, uuid, **kwargs
7317
7301
  ) # noqa: E501
7318
7302
 
7319
- @validate_arguments
7303
+ @validate_call
7320
7304
  def get_run_statuses_with_http_info(
7321
7305
  self,
7322
7306
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -7452,12 +7436,12 @@ class RunsV1Api(BaseApi):
7452
7436
  _request_auth=_params.get("_request_auth"),
7453
7437
  )
7454
7438
 
7455
- @validate_arguments
7439
+ @validate_call
7456
7440
  def get_run_upstream_lineage(
7457
7441
  self,
7458
7442
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
7459
7443
  entity: Annotated[
7460
- StrictStr, Field(..., description="Entity name under namesapce")
7444
+ StrictStr, Field(..., description="Entity name under namespace")
7461
7445
  ],
7462
7446
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
7463
7447
  offset: Annotated[
@@ -7483,7 +7467,7 @@ class RunsV1Api(BaseApi):
7483
7467
 
7484
7468
  :param owner: Owner of the namespace (required)
7485
7469
  :type owner: str
7486
- :param entity: Entity name under namesapce (required)
7470
+ :param entity: Entity name under namespace (required)
7487
7471
  :type entity: str
7488
7472
  :param uuid: SubEntity uuid (required)
7489
7473
  :type uuid: str
@@ -7517,12 +7501,12 @@ class RunsV1Api(BaseApi):
7517
7501
  owner, entity, uuid, offset, limit, sort, query, no_page, **kwargs
7518
7502
  ) # noqa: E501
7519
7503
 
7520
- @validate_arguments
7504
+ @validate_call
7521
7505
  def get_run_upstream_lineage_with_http_info(
7522
7506
  self,
7523
7507
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
7524
7508
  entity: Annotated[
7525
- StrictStr, Field(..., description="Entity name under namesapce")
7509
+ StrictStr, Field(..., description="Entity name under namespace")
7526
7510
  ],
7527
7511
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
7528
7512
  offset: Annotated[
@@ -7548,7 +7532,7 @@ class RunsV1Api(BaseApi):
7548
7532
 
7549
7533
  :param owner: Owner of the namespace (required)
7550
7534
  :type owner: str
7551
- :param entity: Entity name under namesapce (required)
7535
+ :param entity: Entity name under namespace (required)
7552
7536
  :type entity: str
7553
7537
  :param uuid: SubEntity uuid (required)
7554
7538
  :type uuid: str
@@ -7688,7 +7672,7 @@ class RunsV1Api(BaseApi):
7688
7672
  _request_auth=_params.get("_request_auth"),
7689
7673
  )
7690
7674
 
7691
- @validate_arguments
7675
+ @validate_call
7692
7676
  def get_runs_artifacts_lineage(
7693
7677
  self,
7694
7678
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -7760,7 +7744,7 @@ class RunsV1Api(BaseApi):
7760
7744
  owner, name, offset, limit, sort, query, bookmarks, mode, no_page, **kwargs
7761
7745
  ) # noqa: E501
7762
7746
 
7763
- @validate_arguments
7747
+ @validate_call
7764
7748
  def get_runs_artifacts_lineage_with_http_info(
7765
7749
  self,
7766
7750
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -7941,7 +7925,7 @@ class RunsV1Api(BaseApi):
7941
7925
  _request_auth=_params.get("_request_auth"),
7942
7926
  )
7943
7927
 
7944
- @validate_arguments
7928
+ @validate_call
7945
7929
  def impersonate_token(
7946
7930
  self,
7947
7931
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -7990,7 +7974,7 @@ class RunsV1Api(BaseApi):
7990
7974
  owner, entity, uuid, **kwargs
7991
7975
  ) # noqa: E501
7992
7976
 
7993
- @validate_arguments
7977
+ @validate_call
7994
7978
  def impersonate_token_with_http_info(
7995
7979
  self,
7996
7980
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -8126,7 +8110,7 @@ class RunsV1Api(BaseApi):
8126
8110
  _request_auth=_params.get("_request_auth"),
8127
8111
  )
8128
8112
 
8129
- @validate_arguments
8113
+ @validate_call
8130
8114
  def inspect_run(
8131
8115
  self,
8132
8116
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -8215,7 +8199,7 @@ class RunsV1Api(BaseApi):
8215
8199
  **kwargs
8216
8200
  ) # noqa: E501
8217
8201
 
8218
- @validate_arguments
8202
+ @validate_call
8219
8203
  def inspect_run_with_http_info(
8220
8204
  self,
8221
8205
  namespace: Annotated[StrictStr, Field(..., description="namespace")],
@@ -8406,7 +8390,7 @@ class RunsV1Api(BaseApi):
8406
8390
  _request_auth=_params.get("_request_auth"),
8407
8391
  )
8408
8392
 
8409
- @validate_arguments
8393
+ @validate_call
8410
8394
  def invalidate_run(
8411
8395
  self,
8412
8396
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -8455,7 +8439,7 @@ class RunsV1Api(BaseApi):
8455
8439
  owner, entity, uuid, **kwargs
8456
8440
  ) # noqa: E501
8457
8441
 
8458
- @validate_arguments
8442
+ @validate_call
8459
8443
  def invalidate_run_with_http_info(
8460
8444
  self,
8461
8445
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -8586,13 +8570,11 @@ class RunsV1Api(BaseApi):
8586
8570
  _request_auth=_params.get("_request_auth"),
8587
8571
  )
8588
8572
 
8589
- @validate_arguments
8573
+ @validate_call
8590
8574
  def invalidate_runs(
8591
8575
  self,
8592
8576
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
8593
- project: Annotated[
8594
- StrictStr, Field(..., description="Project under namesapce")
8595
- ],
8577
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
8596
8578
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
8597
8579
  **kwargs
8598
8580
  ) -> None: # noqa: E501
@@ -8601,13 +8583,13 @@ class RunsV1Api(BaseApi):
8601
8583
  This method makes a synchronous HTTP request by default. To make an
8602
8584
  asynchronous HTTP request, please pass async_req=True
8603
8585
 
8604
- >>> thread = api.invalidate_runs(owner, project, body, async_req=True)
8586
+ >>> thread = api.invalidate_runs(owner, name, body, async_req=True)
8605
8587
  >>> result = thread.get()
8606
8588
 
8607
8589
  :param owner: Owner of the namespace (required)
8608
8590
  :type owner: str
8609
- :param project: Project under namesapce (required)
8610
- :type project: str
8591
+ :param name: Entity under namespace (required)
8592
+ :type name: str
8611
8593
  :param body: Uuids of the entities (required)
8612
8594
  :type body: V1Uuids
8613
8595
  :param async_req: Whether to execute the request asynchronously.
@@ -8627,16 +8609,14 @@ class RunsV1Api(BaseApi):
8627
8609
  """
8628
8610
  kwargs["_return_http_data_only"] = True
8629
8611
  return self.invalidate_runs_with_http_info(
8630
- owner, project, body, **kwargs
8612
+ owner, name, body, **kwargs
8631
8613
  ) # noqa: E501
8632
8614
 
8633
- @validate_arguments
8615
+ @validate_call
8634
8616
  def invalidate_runs_with_http_info(
8635
8617
  self,
8636
8618
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
8637
- project: Annotated[
8638
- StrictStr, Field(..., description="Project under namesapce")
8639
- ],
8619
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
8640
8620
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
8641
8621
  **kwargs
8642
8622
  ): # noqa: E501
@@ -8645,13 +8625,13 @@ class RunsV1Api(BaseApi):
8645
8625
  This method makes a synchronous HTTP request by default. To make an
8646
8626
  asynchronous HTTP request, please pass async_req=True
8647
8627
 
8648
- >>> thread = api.invalidate_runs_with_http_info(owner, project, body, async_req=True)
8628
+ >>> thread = api.invalidate_runs_with_http_info(owner, name, body, async_req=True)
8649
8629
  >>> result = thread.get()
8650
8630
 
8651
8631
  :param owner: Owner of the namespace (required)
8652
8632
  :type owner: str
8653
- :param project: Project under namesapce (required)
8654
- :type project: str
8633
+ :param name: Entity under namespace (required)
8634
+ :type name: str
8655
8635
  :param body: Uuids of the entities (required)
8656
8636
  :type body: V1Uuids
8657
8637
  :param async_req: Whether to execute the request asynchronously.
@@ -8680,7 +8660,7 @@ class RunsV1Api(BaseApi):
8680
8660
 
8681
8661
  _params = locals()
8682
8662
 
8683
- _all_params = ["owner", "project", "body"]
8663
+ _all_params = ["owner", "name", "body"]
8684
8664
  _all_params.extend(
8685
8665
  [
8686
8666
  "async_req",
@@ -8709,8 +8689,8 @@ class RunsV1Api(BaseApi):
8709
8689
  _path_params = {}
8710
8690
  if _params["owner"]:
8711
8691
  _path_params["owner"] = _params["owner"]
8712
- if _params["project"]:
8713
- _path_params["project"] = _params["project"]
8692
+ if _params["name"]:
8693
+ _path_params["name"] = _params["name"]
8714
8694
 
8715
8695
  # process the query parameters
8716
8696
  _query_params = []
@@ -8746,7 +8726,7 @@ class RunsV1Api(BaseApi):
8746
8726
  _response_types_map = {}
8747
8727
 
8748
8728
  return self.api_client.call_api(
8749
- "/api/v1/{owner}/{project}/runs/invalidate",
8729
+ "/api/v1/{owner}/{name}/runs/invalidate",
8750
8730
  "POST",
8751
8731
  _path_params,
8752
8732
  _query_params,
@@ -8764,7 +8744,7 @@ class RunsV1Api(BaseApi):
8764
8744
  _request_auth=_params.get("_request_auth"),
8765
8745
  )
8766
8746
 
8767
- @validate_arguments
8747
+ @validate_call
8768
8748
  def list_archived_runs(
8769
8749
  self,
8770
8750
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -8821,7 +8801,7 @@ class RunsV1Api(BaseApi):
8821
8801
  user, offset, limit, sort, query, no_page, **kwargs
8822
8802
  ) # noqa: E501
8823
8803
 
8824
- @validate_arguments
8804
+ @validate_call
8825
8805
  def list_archived_runs_with_http_info(
8826
8806
  self,
8827
8807
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -8971,7 +8951,7 @@ class RunsV1Api(BaseApi):
8971
8951
  _request_auth=_params.get("_request_auth"),
8972
8952
  )
8973
8953
 
8974
- @validate_arguments
8954
+ @validate_call
8975
8955
  def list_bookmarked_runs(
8976
8956
  self,
8977
8957
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -9028,7 +9008,7 @@ class RunsV1Api(BaseApi):
9028
9008
  user, offset, limit, sort, query, no_page, **kwargs
9029
9009
  ) # noqa: E501
9030
9010
 
9031
- @validate_arguments
9011
+ @validate_call
9032
9012
  def list_bookmarked_runs_with_http_info(
9033
9013
  self,
9034
9014
  user: Annotated[StrictStr, Field(..., description="User")],
@@ -9178,7 +9158,7 @@ class RunsV1Api(BaseApi):
9178
9158
  _request_auth=_params.get("_request_auth"),
9179
9159
  )
9180
9160
 
9181
- @validate_arguments
9161
+ @validate_call
9182
9162
  def list_runs(
9183
9163
  self,
9184
9164
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -9250,7 +9230,7 @@ class RunsV1Api(BaseApi):
9250
9230
  owner, name, offset, limit, sort, query, bookmarks, mode, no_page, **kwargs
9251
9231
  ) # noqa: E501
9252
9232
 
9253
- @validate_arguments
9233
+ @validate_call
9254
9234
  def list_runs_with_http_info(
9255
9235
  self,
9256
9236
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -9431,7 +9411,7 @@ class RunsV1Api(BaseApi):
9431
9411
  _request_auth=_params.get("_request_auth"),
9432
9412
  )
9433
9413
 
9434
- @validate_arguments
9414
+ @validate_call
9435
9415
  def notify_run_status(
9436
9416
  self,
9437
9417
  namespace: Annotated[StrictStr, Field(..., description="Na,espace")],
@@ -9483,7 +9463,7 @@ class RunsV1Api(BaseApi):
9483
9463
  namespace, owner, project, uuid, body, **kwargs
9484
9464
  ) # noqa: E501
9485
9465
 
9486
- @validate_arguments
9466
+ @validate_call
9487
9467
  def notify_run_status_with_http_info(
9488
9468
  self,
9489
9469
  namespace: Annotated[StrictStr, Field(..., description="Na,espace")],
@@ -9629,7 +9609,7 @@ class RunsV1Api(BaseApi):
9629
9609
  _request_auth=_params.get("_request_auth"),
9630
9610
  )
9631
9611
 
9632
- @validate_arguments
9612
+ @validate_call
9633
9613
  def patch_run(
9634
9614
  self,
9635
9615
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -9676,7 +9656,7 @@ class RunsV1Api(BaseApi):
9676
9656
  owner, project, run_uuid, body, **kwargs
9677
9657
  ) # noqa: E501
9678
9658
 
9679
- @validate_arguments
9659
+ @validate_call
9680
9660
  def patch_run_with_http_info(
9681
9661
  self,
9682
9662
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -9820,7 +9800,7 @@ class RunsV1Api(BaseApi):
9820
9800
  _request_auth=_params.get("_request_auth"),
9821
9801
  )
9822
9802
 
9823
- @validate_arguments
9803
+ @validate_call
9824
9804
  def restart_run(
9825
9805
  self,
9826
9806
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -9867,7 +9847,7 @@ class RunsV1Api(BaseApi):
9867
9847
  owner, project, run_uuid, body, **kwargs
9868
9848
  ) # noqa: E501
9869
9849
 
9870
- @validate_arguments
9850
+ @validate_call
9871
9851
  def restart_run_with_http_info(
9872
9852
  self,
9873
9853
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10011,7 +9991,7 @@ class RunsV1Api(BaseApi):
10011
9991
  _request_auth=_params.get("_request_auth"),
10012
9992
  )
10013
9993
 
10014
- @validate_arguments
9994
+ @validate_call
10015
9995
  def restore_run(
10016
9996
  self,
10017
9997
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10060,7 +10040,7 @@ class RunsV1Api(BaseApi):
10060
10040
  owner, entity, uuid, **kwargs
10061
10041
  ) # noqa: E501
10062
10042
 
10063
- @validate_arguments
10043
+ @validate_call
10064
10044
  def restore_run_with_http_info(
10065
10045
  self,
10066
10046
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10191,13 +10171,11 @@ class RunsV1Api(BaseApi):
10191
10171
  _request_auth=_params.get("_request_auth"),
10192
10172
  )
10193
10173
 
10194
- @validate_arguments
10174
+ @validate_call
10195
10175
  def restore_runs(
10196
10176
  self,
10197
10177
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
10198
- project: Annotated[
10199
- StrictStr, Field(..., description="Project under namesapce")
10200
- ],
10178
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
10201
10179
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
10202
10180
  **kwargs
10203
10181
  ) -> None: # noqa: E501
@@ -10206,13 +10184,13 @@ class RunsV1Api(BaseApi):
10206
10184
  This method makes a synchronous HTTP request by default. To make an
10207
10185
  asynchronous HTTP request, please pass async_req=True
10208
10186
 
10209
- >>> thread = api.restore_runs(owner, project, body, async_req=True)
10187
+ >>> thread = api.restore_runs(owner, name, body, async_req=True)
10210
10188
  >>> result = thread.get()
10211
10189
 
10212
10190
  :param owner: Owner of the namespace (required)
10213
10191
  :type owner: str
10214
- :param project: Project under namesapce (required)
10215
- :type project: str
10192
+ :param name: Entity under namespace (required)
10193
+ :type name: str
10216
10194
  :param body: Uuids of the entities (required)
10217
10195
  :type body: V1Uuids
10218
10196
  :param async_req: Whether to execute the request asynchronously.
@@ -10232,16 +10210,14 @@ class RunsV1Api(BaseApi):
10232
10210
  """
10233
10211
  kwargs["_return_http_data_only"] = True
10234
10212
  return self.restore_runs_with_http_info(
10235
- owner, project, body, **kwargs
10213
+ owner, name, body, **kwargs
10236
10214
  ) # noqa: E501
10237
10215
 
10238
- @validate_arguments
10216
+ @validate_call
10239
10217
  def restore_runs_with_http_info(
10240
10218
  self,
10241
10219
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
10242
- project: Annotated[
10243
- StrictStr, Field(..., description="Project under namesapce")
10244
- ],
10220
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
10245
10221
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
10246
10222
  **kwargs
10247
10223
  ): # noqa: E501
@@ -10250,13 +10226,13 @@ class RunsV1Api(BaseApi):
10250
10226
  This method makes a synchronous HTTP request by default. To make an
10251
10227
  asynchronous HTTP request, please pass async_req=True
10252
10228
 
10253
- >>> thread = api.restore_runs_with_http_info(owner, project, body, async_req=True)
10229
+ >>> thread = api.restore_runs_with_http_info(owner, name, body, async_req=True)
10254
10230
  >>> result = thread.get()
10255
10231
 
10256
10232
  :param owner: Owner of the namespace (required)
10257
10233
  :type owner: str
10258
- :param project: Project under namesapce (required)
10259
- :type project: str
10234
+ :param name: Entity under namespace (required)
10235
+ :type name: str
10260
10236
  :param body: Uuids of the entities (required)
10261
10237
  :type body: V1Uuids
10262
10238
  :param async_req: Whether to execute the request asynchronously.
@@ -10285,7 +10261,7 @@ class RunsV1Api(BaseApi):
10285
10261
 
10286
10262
  _params = locals()
10287
10263
 
10288
- _all_params = ["owner", "project", "body"]
10264
+ _all_params = ["owner", "name", "body"]
10289
10265
  _all_params.extend(
10290
10266
  [
10291
10267
  "async_req",
@@ -10314,8 +10290,8 @@ class RunsV1Api(BaseApi):
10314
10290
  _path_params = {}
10315
10291
  if _params["owner"]:
10316
10292
  _path_params["owner"] = _params["owner"]
10317
- if _params["project"]:
10318
- _path_params["project"] = _params["project"]
10293
+ if _params["name"]:
10294
+ _path_params["name"] = _params["name"]
10319
10295
 
10320
10296
  # process the query parameters
10321
10297
  _query_params = []
@@ -10351,7 +10327,7 @@ class RunsV1Api(BaseApi):
10351
10327
  _response_types_map = {}
10352
10328
 
10353
10329
  return self.api_client.call_api(
10354
- "/api/v1/{owner}/{project}/runs/restore",
10330
+ "/api/v1/{owner}/{name}/runs/restore",
10355
10331
  "POST",
10356
10332
  _path_params,
10357
10333
  _query_params,
@@ -10369,7 +10345,7 @@ class RunsV1Api(BaseApi):
10369
10345
  _request_auth=_params.get("_request_auth"),
10370
10346
  )
10371
10347
 
10372
- @validate_arguments
10348
+ @validate_call
10373
10349
  def resume_run(
10374
10350
  self,
10375
10351
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10416,7 +10392,7 @@ class RunsV1Api(BaseApi):
10416
10392
  owner, project, run_uuid, body, **kwargs
10417
10393
  ) # noqa: E501
10418
10394
 
10419
- @validate_arguments
10395
+ @validate_call
10420
10396
  def resume_run_with_http_info(
10421
10397
  self,
10422
10398
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10560,7 +10536,7 @@ class RunsV1Api(BaseApi):
10560
10536
  _request_auth=_params.get("_request_auth"),
10561
10537
  )
10562
10538
 
10563
- @validate_arguments
10539
+ @validate_call
10564
10540
  def set_run_edges_lineage(
10565
10541
  self,
10566
10542
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10605,7 +10581,7 @@ class RunsV1Api(BaseApi):
10605
10581
  owner, project, uuid, body, **kwargs
10606
10582
  ) # noqa: E501
10607
10583
 
10608
- @validate_arguments
10584
+ @validate_call
10609
10585
  def set_run_edges_lineage_with_http_info(
10610
10586
  self,
10611
10587
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10739,7 +10715,7 @@ class RunsV1Api(BaseApi):
10739
10715
  _request_auth=_params.get("_request_auth"),
10740
10716
  )
10741
10717
 
10742
- @validate_arguments
10718
+ @validate_call
10743
10719
  def skip_run(
10744
10720
  self,
10745
10721
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10786,7 +10762,7 @@ class RunsV1Api(BaseApi):
10786
10762
  kwargs["_return_http_data_only"] = True
10787
10763
  return self.skip_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
10788
10764
 
10789
- @validate_arguments
10765
+ @validate_call
10790
10766
  def skip_run_with_http_info(
10791
10767
  self,
10792
10768
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -10915,13 +10891,11 @@ class RunsV1Api(BaseApi):
10915
10891
  _request_auth=_params.get("_request_auth"),
10916
10892
  )
10917
10893
 
10918
- @validate_arguments
10894
+ @validate_call
10919
10895
  def skip_runs(
10920
10896
  self,
10921
10897
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
10922
- project: Annotated[
10923
- StrictStr, Field(..., description="Project under namesapce")
10924
- ],
10898
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
10925
10899
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
10926
10900
  **kwargs
10927
10901
  ) -> None: # noqa: E501
@@ -10930,13 +10904,13 @@ class RunsV1Api(BaseApi):
10930
10904
  This method makes a synchronous HTTP request by default. To make an
10931
10905
  asynchronous HTTP request, please pass async_req=True
10932
10906
 
10933
- >>> thread = api.skip_runs(owner, project, body, async_req=True)
10907
+ >>> thread = api.skip_runs(owner, name, body, async_req=True)
10934
10908
  >>> result = thread.get()
10935
10909
 
10936
10910
  :param owner: Owner of the namespace (required)
10937
10911
  :type owner: str
10938
- :param project: Project under namesapce (required)
10939
- :type project: str
10912
+ :param name: Entity under namespace (required)
10913
+ :type name: str
10940
10914
  :param body: Uuids of the entities (required)
10941
10915
  :type body: V1Uuids
10942
10916
  :param async_req: Whether to execute the request asynchronously.
@@ -10955,17 +10929,13 @@ class RunsV1Api(BaseApi):
10955
10929
  :rtype: None
10956
10930
  """
10957
10931
  kwargs["_return_http_data_only"] = True
10958
- return self.skip_runs_with_http_info(
10959
- owner, project, body, **kwargs
10960
- ) # noqa: E501
10932
+ return self.skip_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
10961
10933
 
10962
- @validate_arguments
10934
+ @validate_call
10963
10935
  def skip_runs_with_http_info(
10964
10936
  self,
10965
10937
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
10966
- project: Annotated[
10967
- StrictStr, Field(..., description="Project under namesapce")
10968
- ],
10938
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
10969
10939
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
10970
10940
  **kwargs
10971
10941
  ): # noqa: E501
@@ -10974,13 +10944,13 @@ class RunsV1Api(BaseApi):
10974
10944
  This method makes a synchronous HTTP request by default. To make an
10975
10945
  asynchronous HTTP request, please pass async_req=True
10976
10946
 
10977
- >>> thread = api.skip_runs_with_http_info(owner, project, body, async_req=True)
10947
+ >>> thread = api.skip_runs_with_http_info(owner, name, body, async_req=True)
10978
10948
  >>> result = thread.get()
10979
10949
 
10980
10950
  :param owner: Owner of the namespace (required)
10981
10951
  :type owner: str
10982
- :param project: Project under namesapce (required)
10983
- :type project: str
10952
+ :param name: Entity under namespace (required)
10953
+ :type name: str
10984
10954
  :param body: Uuids of the entities (required)
10985
10955
  :type body: V1Uuids
10986
10956
  :param async_req: Whether to execute the request asynchronously.
@@ -11009,7 +10979,7 @@ class RunsV1Api(BaseApi):
11009
10979
 
11010
10980
  _params = locals()
11011
10981
 
11012
- _all_params = ["owner", "project", "body"]
10982
+ _all_params = ["owner", "name", "body"]
11013
10983
  _all_params.extend(
11014
10984
  [
11015
10985
  "async_req",
@@ -11039,8 +11009,8 @@ class RunsV1Api(BaseApi):
11039
11009
  if _params["owner"]:
11040
11010
  _path_params["owner"] = _params["owner"]
11041
11011
 
11042
- if _params["project"]:
11043
- _path_params["project"] = _params["project"]
11012
+ if _params["name"]:
11013
+ _path_params["name"] = _params["name"]
11044
11014
 
11045
11015
  # process the query parameters
11046
11016
  _query_params = []
@@ -11073,7 +11043,7 @@ class RunsV1Api(BaseApi):
11073
11043
  _response_types_map = {}
11074
11044
 
11075
11045
  return self.api_client.call_api(
11076
- "/api/v1/{owner}/{project}/runs/skip",
11046
+ "/api/v1/{owner}/{name}/runs/skip",
11077
11047
  "POST",
11078
11048
  _path_params,
11079
11049
  _query_params,
@@ -11091,7 +11061,7 @@ class RunsV1Api(BaseApi):
11091
11061
  _request_auth=_params.get("_request_auth"),
11092
11062
  )
11093
11063
 
11094
- @validate_arguments
11064
+ @validate_call
11095
11065
  def stop_run(
11096
11066
  self,
11097
11067
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -11138,7 +11108,7 @@ class RunsV1Api(BaseApi):
11138
11108
  kwargs["_return_http_data_only"] = True
11139
11109
  return self.stop_run_with_http_info(owner, entity, uuid, **kwargs) # noqa: E501
11140
11110
 
11141
- @validate_arguments
11111
+ @validate_call
11142
11112
  def stop_run_with_http_info(
11143
11113
  self,
11144
11114
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -11269,13 +11239,11 @@ class RunsV1Api(BaseApi):
11269
11239
  _request_auth=_params.get("_request_auth"),
11270
11240
  )
11271
11241
 
11272
- @validate_arguments
11242
+ @validate_call
11273
11243
  def stop_runs(
11274
11244
  self,
11275
11245
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
11276
- project: Annotated[
11277
- StrictStr, Field(..., description="Project under namesapce")
11278
- ],
11246
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
11279
11247
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
11280
11248
  **kwargs
11281
11249
  ) -> None: # noqa: E501
@@ -11284,13 +11252,13 @@ class RunsV1Api(BaseApi):
11284
11252
  This method makes a synchronous HTTP request by default. To make an
11285
11253
  asynchronous HTTP request, please pass async_req=True
11286
11254
 
11287
- >>> thread = api.stop_runs(owner, project, body, async_req=True)
11255
+ >>> thread = api.stop_runs(owner, name, body, async_req=True)
11288
11256
  >>> result = thread.get()
11289
11257
 
11290
11258
  :param owner: Owner of the namespace (required)
11291
11259
  :type owner: str
11292
- :param project: Project under namesapce (required)
11293
- :type project: str
11260
+ :param name: Entity under namespace (required)
11261
+ :type name: str
11294
11262
  :param body: Uuids of the entities (required)
11295
11263
  :type body: V1Uuids
11296
11264
  :param async_req: Whether to execute the request asynchronously.
@@ -11309,17 +11277,13 @@ class RunsV1Api(BaseApi):
11309
11277
  :rtype: None
11310
11278
  """
11311
11279
  kwargs["_return_http_data_only"] = True
11312
- return self.stop_runs_with_http_info(
11313
- owner, project, body, **kwargs
11314
- ) # noqa: E501
11280
+ return self.stop_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
11315
11281
 
11316
- @validate_arguments
11282
+ @validate_call
11317
11283
  def stop_runs_with_http_info(
11318
11284
  self,
11319
11285
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
11320
- project: Annotated[
11321
- StrictStr, Field(..., description="Project under namesapce")
11322
- ],
11286
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
11323
11287
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
11324
11288
  **kwargs
11325
11289
  ): # noqa: E501
@@ -11328,13 +11292,13 @@ class RunsV1Api(BaseApi):
11328
11292
  This method makes a synchronous HTTP request by default. To make an
11329
11293
  asynchronous HTTP request, please pass async_req=True
11330
11294
 
11331
- >>> thread = api.stop_runs_with_http_info(owner, project, body, async_req=True)
11295
+ >>> thread = api.stop_runs_with_http_info(owner, name, body, async_req=True)
11332
11296
  >>> result = thread.get()
11333
11297
 
11334
11298
  :param owner: Owner of the namespace (required)
11335
11299
  :type owner: str
11336
- :param project: Project under namesapce (required)
11337
- :type project: str
11300
+ :param name: Entity under namespace (required)
11301
+ :type name: str
11338
11302
  :param body: Uuids of the entities (required)
11339
11303
  :type body: V1Uuids
11340
11304
  :param async_req: Whether to execute the request asynchronously.
@@ -11363,7 +11327,7 @@ class RunsV1Api(BaseApi):
11363
11327
 
11364
11328
  _params = locals()
11365
11329
 
11366
- _all_params = ["owner", "project", "body"]
11330
+ _all_params = ["owner", "name", "body"]
11367
11331
  _all_params.extend(
11368
11332
  [
11369
11333
  "async_req",
@@ -11392,8 +11356,8 @@ class RunsV1Api(BaseApi):
11392
11356
  _path_params = {}
11393
11357
  if _params["owner"]:
11394
11358
  _path_params["owner"] = _params["owner"]
11395
- if _params["project"]:
11396
- _path_params["project"] = _params["project"]
11359
+ if _params["name"]:
11360
+ _path_params["name"] = _params["name"]
11397
11361
 
11398
11362
  # process the query parameters
11399
11363
  _query_params = []
@@ -11429,7 +11393,7 @@ class RunsV1Api(BaseApi):
11429
11393
  _response_types_map = {}
11430
11394
 
11431
11395
  return self.api_client.call_api(
11432
- "/api/v1/{owner}/{project}/runs/stop",
11396
+ "/api/v1/{owner}/{name}/runs/stop",
11433
11397
  "POST",
11434
11398
  _path_params,
11435
11399
  _query_params,
@@ -11447,7 +11411,7 @@ class RunsV1Api(BaseApi):
11447
11411
  _request_auth=_params.get("_request_auth"),
11448
11412
  )
11449
11413
 
11450
- @validate_arguments
11414
+ @validate_call
11451
11415
  def sync_run(
11452
11416
  self,
11453
11417
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -11491,7 +11455,7 @@ class RunsV1Api(BaseApi):
11491
11455
  owner, project, body, **kwargs
11492
11456
  ) # noqa: E501
11493
11457
 
11494
- @validate_arguments
11458
+ @validate_call
11495
11459
  def sync_run_with_http_info(
11496
11460
  self,
11497
11461
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -11625,13 +11589,11 @@ class RunsV1Api(BaseApi):
11625
11589
  _request_auth=_params.get("_request_auth"),
11626
11590
  )
11627
11591
 
11628
- @validate_arguments
11592
+ @validate_call
11629
11593
  def tag_runs(
11630
11594
  self,
11631
11595
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
11632
- project: Annotated[
11633
- StrictStr, Field(..., description="Project under namesapce")
11634
- ],
11596
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
11635
11597
  body: Annotated[V1EntitiesTags, Field(..., description="Data")],
11636
11598
  **kwargs
11637
11599
  ) -> None: # noqa: E501
@@ -11645,8 +11607,8 @@ class RunsV1Api(BaseApi):
11645
11607
 
11646
11608
  :param owner: Owner of the namespace (required)
11647
11609
  :type owner: str
11648
- :param project: Project under namesapce (required)
11649
- :type project: str
11610
+ :param name: Entity under namespace (required)
11611
+ :type name: str
11650
11612
  :param body: Data (required)
11651
11613
  :type body: V1EntitiesTags
11652
11614
  :param async_req: Whether to execute the request asynchronously.
@@ -11665,17 +11627,13 @@ class RunsV1Api(BaseApi):
11665
11627
  :rtype: None
11666
11628
  """
11667
11629
  kwargs["_return_http_data_only"] = True
11668
- return self.tag_runs_with_http_info(
11669
- owner, project, body, **kwargs
11670
- ) # noqa: E501
11630
+ return self.tag_runs_with_http_info(owner, name, body, **kwargs) # noqa: E501
11671
11631
 
11672
- @validate_arguments
11632
+ @validate_call
11673
11633
  def tag_runs_with_http_info(
11674
11634
  self,
11675
11635
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
11676
- project: Annotated[
11677
- StrictStr, Field(..., description="Project under namesapce")
11678
- ],
11636
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
11679
11637
  body: Annotated[V1EntitiesTags, Field(..., description="Data")],
11680
11638
  **kwargs
11681
11639
  ): # noqa: E501
@@ -11684,13 +11642,13 @@ class RunsV1Api(BaseApi):
11684
11642
  This method makes a synchronous HTTP request by default. To make an
11685
11643
  asynchronous HTTP request, please pass async_req=True
11686
11644
 
11687
- >>> thread = api.tag_runs_with_http_info(owner, project, body, async_req=True)
11645
+ >>> thread = api.tag_runs_with_http_info(owner, name, body, async_req=True)
11688
11646
  >>> result = thread.get()
11689
11647
 
11690
11648
  :param owner: Owner of the namespace (required)
11691
11649
  :type owner: str
11692
- :param project: Project under namesapce (required)
11693
- :type project: str
11650
+ :param name: Entity under namespace (required)
11651
+ :type name: str
11694
11652
  :param body: Data (required)
11695
11653
  :type body: V1EntitiesTags
11696
11654
  :param async_req: Whether to execute the request asynchronously.
@@ -11719,7 +11677,7 @@ class RunsV1Api(BaseApi):
11719
11677
 
11720
11678
  _params = locals()
11721
11679
 
11722
- _all_params = ["owner", "project", "body"]
11680
+ _all_params = ["owner", "name", "body"]
11723
11681
  _all_params.extend(
11724
11682
  [
11725
11683
  "async_req",
@@ -11748,8 +11706,8 @@ class RunsV1Api(BaseApi):
11748
11706
  _path_params = {}
11749
11707
  if _params["owner"]:
11750
11708
  _path_params["owner"] = _params["owner"]
11751
- if _params["project"]:
11752
- _path_params["project"] = _params["project"]
11709
+ if _params["name"]:
11710
+ _path_params["name"] = _params["name"]
11753
11711
 
11754
11712
  # process the query parameters
11755
11713
  _query_params = []
@@ -11785,7 +11743,7 @@ class RunsV1Api(BaseApi):
11785
11743
  _response_types_map = {}
11786
11744
 
11787
11745
  return self.api_client.call_api(
11788
- "/api/v1/{owner}/{project}/runs/tag",
11746
+ "/api/v1/{owner}/{name}/runs/tag",
11789
11747
  "POST",
11790
11748
  _path_params,
11791
11749
  _query_params,
@@ -11803,7 +11761,7 @@ class RunsV1Api(BaseApi):
11803
11761
  _request_auth=_params.get("_request_auth"),
11804
11762
  )
11805
11763
 
11806
- @validate_arguments
11764
+ @validate_call
11807
11765
  def transfer_run(
11808
11766
  self,
11809
11767
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -11850,7 +11808,7 @@ class RunsV1Api(BaseApi):
11850
11808
  owner, project, run_uuid, body, **kwargs
11851
11809
  ) # noqa: E501
11852
11810
 
11853
- @validate_arguments
11811
+ @validate_call
11854
11812
  def transfer_run_with_http_info(
11855
11813
  self,
11856
11814
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -11989,13 +11947,11 @@ class RunsV1Api(BaseApi):
11989
11947
  _request_auth=_params.get("_request_auth"),
11990
11948
  )
11991
11949
 
11992
- @validate_arguments
11950
+ @validate_call
11993
11951
  def transfer_runs(
11994
11952
  self,
11995
11953
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
11996
- project: Annotated[
11997
- StrictStr, Field(..., description="Project under namesapce")
11998
- ],
11954
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
11999
11955
  body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
12000
11956
  **kwargs
12001
11957
  ) -> None: # noqa: E501
@@ -12004,13 +11960,13 @@ class RunsV1Api(BaseApi):
12004
11960
  This method makes a synchronous HTTP request by default. To make an
12005
11961
  asynchronous HTTP request, please pass async_req=True
12006
11962
 
12007
- >>> thread = api.transfer_runs(owner, project, body, async_req=True)
11963
+ >>> thread = api.transfer_runs(owner, name, body, async_req=True)
12008
11964
  >>> result = thread.get()
12009
11965
 
12010
11966
  :param owner: Owner of the namespace (required)
12011
11967
  :type owner: str
12012
- :param project: Project under namesapce (required)
12013
- :type project: str
11968
+ :param name: Entity under namespace (required)
11969
+ :type name: str
12014
11970
  :param body: Data (required)
12015
11971
  :type body: V1EntitiesTransfer
12016
11972
  :param async_req: Whether to execute the request asynchronously.
@@ -12030,16 +11986,14 @@ class RunsV1Api(BaseApi):
12030
11986
  """
12031
11987
  kwargs["_return_http_data_only"] = True
12032
11988
  return self.transfer_runs_with_http_info(
12033
- owner, project, body, **kwargs
11989
+ owner, name, body, **kwargs
12034
11990
  ) # noqa: E501
12035
11991
 
12036
- @validate_arguments
11992
+ @validate_call
12037
11993
  def transfer_runs_with_http_info(
12038
11994
  self,
12039
11995
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
12040
- project: Annotated[
12041
- StrictStr, Field(..., description="Project under namesapce")
12042
- ],
11996
+ name: Annotated[StrictStr, Field(..., description="Entity under namespace")],
12043
11997
  body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
12044
11998
  **kwargs
12045
11999
  ): # noqa: E501
@@ -12048,13 +12002,13 @@ class RunsV1Api(BaseApi):
12048
12002
  This method makes a synchronous HTTP request by default. To make an
12049
12003
  asynchronous HTTP request, please pass async_req=True
12050
12004
 
12051
- >>> thread = api.transfer_runs_with_http_info(owner, project, body, async_req=True)
12005
+ >>> thread = api.transfer_runs_with_http_info(owner, name, body, async_req=True)
12052
12006
  >>> result = thread.get()
12053
12007
 
12054
12008
  :param owner: Owner of the namespace (required)
12055
12009
  :type owner: str
12056
- :param project: Project under namesapce (required)
12057
- :type project: str
12010
+ :param name: Entity under namespace (required)
12011
+ :type name: str
12058
12012
  :param body: Data (required)
12059
12013
  :type body: V1EntitiesTransfer
12060
12014
  :param async_req: Whether to execute the request asynchronously.
@@ -12083,7 +12037,7 @@ class RunsV1Api(BaseApi):
12083
12037
 
12084
12038
  _params = locals()
12085
12039
 
12086
- _all_params = ["owner", "project", "body"]
12040
+ _all_params = ["owner", "name", "body"]
12087
12041
  _all_params.extend(
12088
12042
  [
12089
12043
  "async_req",
@@ -12112,8 +12066,8 @@ class RunsV1Api(BaseApi):
12112
12066
  _path_params = {}
12113
12067
  if _params["owner"]:
12114
12068
  _path_params["owner"] = _params["owner"]
12115
- if _params["project"]:
12116
- _path_params["project"] = _params["project"]
12069
+ if _params["name"]:
12070
+ _path_params["name"] = _params["name"]
12117
12071
 
12118
12072
  # process the query parameters
12119
12073
  _query_params = []
@@ -12149,7 +12103,7 @@ class RunsV1Api(BaseApi):
12149
12103
  _response_types_map = {}
12150
12104
 
12151
12105
  return self.api_client.call_api(
12152
- "/api/v1/{owner}/{project}/runs/transfer",
12106
+ "/api/v1/{owner}/{name}/runs/transfer",
12153
12107
  "POST",
12154
12108
  _path_params,
12155
12109
  _query_params,
@@ -12167,7 +12121,7 @@ class RunsV1Api(BaseApi):
12167
12121
  _request_auth=_params.get("_request_auth"),
12168
12122
  )
12169
12123
 
12170
- @validate_arguments
12124
+ @validate_call
12171
12125
  def unbookmark_run(
12172
12126
  self,
12173
12127
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -12216,7 +12170,7 @@ class RunsV1Api(BaseApi):
12216
12170
  owner, entity, uuid, **kwargs
12217
12171
  ) # noqa: E501
12218
12172
 
12219
- @validate_arguments
12173
+ @validate_call
12220
12174
  def unbookmark_run_with_http_info(
12221
12175
  self,
12222
12176
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -12347,7 +12301,7 @@ class RunsV1Api(BaseApi):
12347
12301
  _request_auth=_params.get("_request_auth"),
12348
12302
  )
12349
12303
 
12350
- @validate_arguments
12304
+ @validate_call
12351
12305
  def update_run(
12352
12306
  self,
12353
12307
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -12394,7 +12348,7 @@ class RunsV1Api(BaseApi):
12394
12348
  owner, project, run_uuid, body, **kwargs
12395
12349
  ) # noqa: E501
12396
12350
 
12397
- @validate_arguments
12351
+ @validate_call
12398
12352
  def update_run_with_http_info(
12399
12353
  self,
12400
12354
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -12538,7 +12492,7 @@ class RunsV1Api(BaseApi):
12538
12492
  _request_auth=_params.get("_request_auth"),
12539
12493
  )
12540
12494
 
12541
- @validate_arguments
12495
+ @validate_call
12542
12496
  def upload_run_artifact(
12543
12497
  self,
12544
12498
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -12602,7 +12556,7 @@ class RunsV1Api(BaseApi):
12602
12556
  owner, project, uuid, uploadfile, path, overwrite, connection, **kwargs
12603
12557
  ) # noqa: E501
12604
12558
 
12605
- @validate_arguments
12559
+ @validate_call
12606
12560
  def upload_run_artifact_with_http_info(
12607
12561
  self,
12608
12562
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -12772,7 +12726,7 @@ class RunsV1Api(BaseApi):
12772
12726
  _request_auth=_params.get("_request_auth"),
12773
12727
  )
12774
12728
 
12775
- @validate_arguments
12729
+ @validate_call
12776
12730
  def upload_run_logs(
12777
12731
  self,
12778
12732
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
@@ -12836,7 +12790,7 @@ class RunsV1Api(BaseApi):
12836
12790
  owner, project, uuid, uploadfile, path, overwrite, connection, **kwargs
12837
12791
  ) # noqa: E501
12838
12792
 
12839
- @validate_arguments
12793
+ @validate_call
12840
12794
  def upload_run_logs_with_http_info(
12841
12795
  self,
12842
12796
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],