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
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_call
5
5
 
6
6
  from polyaxon._sdk.base_api import BaseApi
7
7
  from polyaxon._sdk.schemas.v1_list_activities_response import V1ListActivitiesResponse
@@ -12,11 +12,11 @@ from polyaxon.exceptions import ApiTypeError
12
12
 
13
13
 
14
14
  class UsersV1Api(BaseApi):
15
- @validate_arguments
15
+ @validate_call
16
16
  def create_token(
17
17
  self, body: Annotated[V1Token, Field(..., description="Token body")], **kwargs
18
- ) -> V1Token:
19
- """Create token
18
+ ) -> V1Token: # noqa: E501
19
+ """Create token # noqa: E501
20
20
 
21
21
  This method makes a synchronous HTTP request by default. To make an
22
22
  asynchronous HTTP request, please pass async_req=True
@@ -42,13 +42,13 @@ class UsersV1Api(BaseApi):
42
42
  :rtype: V1Token
43
43
  """
44
44
  kwargs["_return_http_data_only"] = True
45
- return self.create_token_with_http_info(body, **kwargs)
45
+ return self.create_token_with_http_info(body, **kwargs) # noqa: E501
46
46
 
47
- @validate_arguments
47
+ @validate_call
48
48
  def create_token_with_http_info(
49
49
  self, body: Annotated[V1Token, Field(..., description="Token body")], **kwargs
50
- ):
51
- """Create token
50
+ ): # noqa: E501
51
+ """Create token # noqa: E501
52
52
 
53
53
  This method makes a synchronous HTTP request by default. To make an
54
54
  asynchronous HTTP request, please pass async_req=True
@@ -114,14 +114,11 @@ class UsersV1Api(BaseApi):
114
114
 
115
115
  # process the query parameters
116
116
  _query_params = []
117
-
118
117
  # process the header parameters
119
118
  _header_params = dict(_params.get("_headers", {}))
120
-
121
119
  # process the form parameters
122
120
  _form_params = []
123
121
  _files = {}
124
-
125
122
  # process the body parameter
126
123
  _body_params = None
127
124
  if _params["body"]:
@@ -130,7 +127,7 @@ class UsersV1Api(BaseApi):
130
127
  # set the HTTP header `Accept`
131
128
  _header_params["Accept"] = self.api_client.select_header_accept(
132
129
  ["application/json"]
133
- )
130
+ ) # noqa: E501
134
131
 
135
132
  # set the HTTP header `Content-Type`
136
133
  _content_types_list = _params.get(
@@ -141,7 +138,7 @@ class UsersV1Api(BaseApi):
141
138
  _header_params["Content-Type"] = _content_types_list
142
139
 
143
140
  # authentication setting
144
- _auth_settings = ["ApiKey"]
141
+ _auth_settings = ["ApiKey"] # noqa: E501
145
142
 
146
143
  _response_types_map = {
147
144
  "200": "V1Token",
@@ -162,20 +159,20 @@ class UsersV1Api(BaseApi):
162
159
  response_types_map=_response_types_map,
163
160
  auth_settings=_auth_settings,
164
161
  async_req=_params.get("async_req"),
165
- _return_http_data_only=_params.get("_return_http_data_only"),
162
+ _return_http_data_only=_params.get("_return_http_data_only"), # noqa: E501
166
163
  _preload_content=_params.get("_preload_content", True),
167
164
  _request_timeout=_params.get("_request_timeout"),
168
165
  collection_formats=_collection_formats,
169
166
  _request_auth=_params.get("_request_auth"),
170
167
  )
171
168
 
172
- @validate_arguments
169
+ @validate_call
173
170
  def delete_token(
174
171
  self,
175
172
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
176
173
  **kwargs
177
- ) -> None:
178
- """Delete token
174
+ ) -> None: # noqa: E501
175
+ """Delete token # noqa: E501
179
176
 
180
177
  This method makes a synchronous HTTP request by default. To make an
181
178
  asynchronous HTTP request, please pass async_req=True
@@ -201,15 +198,15 @@ class UsersV1Api(BaseApi):
201
198
  :rtype: None
202
199
  """
203
200
  kwargs["_return_http_data_only"] = True
204
- return self.delete_token_with_http_info(uuid, **kwargs)
201
+ return self.delete_token_with_http_info(uuid, **kwargs) # noqa: E501
205
202
 
206
- @validate_arguments
203
+ @validate_call
207
204
  def delete_token_with_http_info(
208
205
  self,
209
206
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
210
207
  **kwargs
211
- ):
212
- """Delete token
208
+ ): # noqa: E501
209
+ """Delete token # noqa: E501
213
210
 
214
211
  This method makes a synchronous HTTP request by default. To make an
215
212
  asynchronous HTTP request, please pass async_req=True
@@ -277,24 +274,20 @@ class UsersV1Api(BaseApi):
277
274
 
278
275
  # process the query parameters
279
276
  _query_params = []
280
-
281
277
  # process the header parameters
282
278
  _header_params = dict(_params.get("_headers", {}))
283
-
284
279
  # process the form parameters
285
280
  _form_params = []
286
281
  _files = {}
287
-
288
282
  # process the body parameter
289
283
  _body_params = None
290
-
291
284
  # set the HTTP header `Accept`
292
285
  _header_params["Accept"] = self.api_client.select_header_accept(
293
286
  ["application/json"]
294
- )
287
+ ) # noqa: E501
295
288
 
296
289
  # authentication setting
297
- _auth_settings = ["ApiKey"]
290
+ _auth_settings = ["ApiKey"] # noqa: E501
298
291
 
299
292
  _response_types_map = {}
300
293
 
@@ -310,14 +303,14 @@ class UsersV1Api(BaseApi):
310
303
  response_types_map=_response_types_map,
311
304
  auth_settings=_auth_settings,
312
305
  async_req=_params.get("async_req"),
313
- _return_http_data_only=_params.get("_return_http_data_only"),
306
+ _return_http_data_only=_params.get("_return_http_data_only"), # noqa: E501
314
307
  _preload_content=_params.get("_preload_content", True),
315
308
  _request_timeout=_params.get("_request_timeout"),
316
309
  collection_formats=_collection_formats,
317
310
  _request_auth=_params.get("_request_auth"),
318
311
  )
319
312
 
320
- @validate_arguments
313
+ @validate_call
321
314
  def get_history(
322
315
  self,
323
316
  offset: Annotated[
@@ -332,8 +325,8 @@ class UsersV1Api(BaseApi):
332
325
  ] = None,
333
326
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
334
327
  **kwargs
335
- ) -> V1ListActivitiesResponse:
336
- """User History
328
+ ) -> V1ListActivitiesResponse: # noqa: E501
329
+ """User History # noqa: E501
337
330
 
338
331
  This method makes a synchronous HTTP request by default. To make an
339
332
  asynchronous HTTP request, please pass async_req=True
@@ -369,9 +362,9 @@ class UsersV1Api(BaseApi):
369
362
  kwargs["_return_http_data_only"] = True
370
363
  return self.get_history_with_http_info(
371
364
  offset, limit, sort, query, no_page, **kwargs
372
- )
365
+ ) # noqa: E501
373
366
 
374
- @validate_arguments
367
+ @validate_call
375
368
  def get_history_with_http_info(
376
369
  self,
377
370
  offset: Annotated[
@@ -463,25 +456,26 @@ class UsersV1Api(BaseApi):
463
456
  _query_params = []
464
457
  if _params.get("offset") is not None: # noqa: E501
465
458
  _query_params.append(("offset", _params["offset"]))
459
+
466
460
  if _params.get("limit") is not None: # noqa: E501
467
461
  _query_params.append(("limit", _params["limit"]))
462
+
468
463
  if _params.get("sort") is not None: # noqa: E501
469
464
  _query_params.append(("sort", _params["sort"]))
465
+
470
466
  if _params.get("query") is not None: # noqa: E501
471
467
  _query_params.append(("query", _params["query"]))
468
+
472
469
  if _params.get("no_page") is not None: # noqa: E501
473
470
  _query_params.append(("no_page", _params["no_page"]))
474
471
 
475
472
  # process the header parameters
476
473
  _header_params = dict(_params.get("_headers", {}))
477
-
478
474
  # process the form parameters
479
475
  _form_params = []
480
476
  _files = {}
481
-
482
477
  # process the body parameter
483
478
  _body_params = None
484
-
485
479
  # set the HTTP header `Accept`
486
480
  _header_params["Accept"] = self.api_client.select_header_accept(
487
481
  ["application/json"]
@@ -516,7 +510,7 @@ class UsersV1Api(BaseApi):
516
510
  _request_auth=_params.get("_request_auth"),
517
511
  )
518
512
 
519
- @validate_arguments
513
+ @validate_call
520
514
  def get_suggestions(
521
515
  self,
522
516
  offset: Annotated[
@@ -570,7 +564,7 @@ class UsersV1Api(BaseApi):
570
564
  offset, limit, sort, query, no_page, **kwargs
571
565
  ) # noqa: E501
572
566
 
573
- @validate_arguments
567
+ @validate_call
574
568
  def get_suggestions_with_http_info(
575
569
  self,
576
570
  offset: Annotated[
@@ -662,25 +656,26 @@ class UsersV1Api(BaseApi):
662
656
  _query_params = []
663
657
  if _params.get("offset") is not None: # noqa: E501
664
658
  _query_params.append(("offset", _params["offset"]))
659
+
665
660
  if _params.get("limit") is not None: # noqa: E501
666
661
  _query_params.append(("limit", _params["limit"]))
662
+
667
663
  if _params.get("sort") is not None: # noqa: E501
668
664
  _query_params.append(("sort", _params["sort"]))
665
+
669
666
  if _params.get("query") is not None: # noqa: E501
670
667
  _query_params.append(("query", _params["query"]))
668
+
671
669
  if _params.get("no_page") is not None: # noqa: E501
672
670
  _query_params.append(("no_page", _params["no_page"]))
673
671
 
674
672
  # process the header parameters
675
673
  _header_params = dict(_params.get("_headers", {}))
676
-
677
674
  # process the form parameters
678
675
  _form_params = []
679
676
  _files = {}
680
-
681
677
  # process the body parameter
682
678
  _body_params = None
683
-
684
679
  # set the HTTP header `Accept`
685
680
  _header_params["Accept"] = self.api_client.select_header_accept(
686
681
  ["application/json"]
@@ -715,7 +710,7 @@ class UsersV1Api(BaseApi):
715
710
  _request_auth=_params.get("_request_auth"),
716
711
  )
717
712
 
718
- @validate_arguments
713
+ @validate_call
719
714
  def get_token(
720
715
  self,
721
716
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
@@ -749,7 +744,7 @@ class UsersV1Api(BaseApi):
749
744
  kwargs["_return_http_data_only"] = True
750
745
  return self.get_token_with_http_info(uuid, **kwargs) # noqa: E501
751
746
 
752
- @validate_arguments
747
+ @validate_call
753
748
  def get_token_with_http_info(
754
749
  self,
755
750
  uuid: Annotated[StrictStr, Field(..., description="UUid of the namespace")],
@@ -823,17 +818,13 @@ class UsersV1Api(BaseApi):
823
818
 
824
819
  # process the query parameters
825
820
  _query_params = []
826
-
827
821
  # process the header parameters
828
822
  _header_params = dict(_params.get("_headers", {}))
829
-
830
823
  # process the form parameters
831
824
  _form_params = []
832
825
  _files = {}
833
-
834
826
  # process the body parameter
835
827
  _body_params = None
836
-
837
828
  # set the HTTP header `Accept`
838
829
  _header_params["Accept"] = self.api_client.select_header_accept(
839
830
  ["application/json"]
@@ -868,7 +859,7 @@ class UsersV1Api(BaseApi):
868
859
  _request_auth=_params.get("_request_auth"),
869
860
  )
870
861
 
871
- @validate_arguments
862
+ @validate_call
872
863
  def get_user(self, **kwargs) -> V1User: # noqa: E501
873
864
  """Get current user # noqa: E501
874
865
 
@@ -896,7 +887,7 @@ class UsersV1Api(BaseApi):
896
887
  kwargs["_return_http_data_only"] = True
897
888
  return self.get_user_with_http_info(**kwargs) # noqa: E501
898
889
 
899
- @validate_arguments
890
+ @validate_call
900
891
  def get_user_with_http_info(self, **kwargs): # noqa: E501
901
892
  """Get current user # noqa: E501
902
893
 
@@ -962,17 +953,13 @@ class UsersV1Api(BaseApi):
962
953
 
963
954
  # process the query parameters
964
955
  _query_params = []
965
-
966
956
  # process the header parameters
967
957
  _header_params = dict(_params.get("_headers", {}))
968
-
969
958
  # process the form parameters
970
959
  _form_params = []
971
960
  _files = {}
972
-
973
961
  # process the body parameter
974
962
  _body_params = None
975
-
976
963
  # set the HTTP header `Accept`
977
964
  _header_params["Accept"] = self.api_client.select_header_accept(
978
965
  ["application/json"]
@@ -1007,7 +994,207 @@ class UsersV1Api(BaseApi):
1007
994
  _request_auth=_params.get("_request_auth"),
1008
995
  )
1009
996
 
1010
- @validate_arguments
997
+ @validate_call
998
+ def get_workspaces(
999
+ self,
1000
+ offset: Annotated[
1001
+ Optional[StrictInt], Field(description="Pagination offset.")
1002
+ ] = None,
1003
+ limit: Annotated[Optional[StrictInt], Field(description="Limit size.")] = None,
1004
+ sort: Annotated[
1005
+ Optional[StrictStr], Field(description="Sort to order the search.")
1006
+ ] = None,
1007
+ query: Annotated[
1008
+ Optional[StrictStr], Field(description="Query filter the search.")
1009
+ ] = None,
1010
+ no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1011
+ **kwargs
1012
+ ) -> object: # noqa: E501
1013
+ """User workspaces # noqa: E501
1014
+
1015
+ This method makes a synchronous HTTP request by default. To make an
1016
+ asynchronous HTTP request, please pass async_req=True
1017
+
1018
+ >>> thread = api.get_workspaces(offset, limit, sort, query, no_page, async_req=True)
1019
+ >>> result = thread.get()
1020
+
1021
+ :param offset: Pagination offset.
1022
+ :type offset: int
1023
+ :param limit: Limit size.
1024
+ :type limit: int
1025
+ :param sort: Sort to order the search.
1026
+ :type sort: str
1027
+ :param query: Query filter the search.
1028
+ :type query: str
1029
+ :param no_page: No pagination.
1030
+ :type no_page: bool
1031
+ :param async_req: Whether to execute the request asynchronously.
1032
+ :type async_req: bool, optional
1033
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
1034
+ be returned without reading/decoding response
1035
+ data. Default is True.
1036
+ :type _preload_content: bool, optional
1037
+ :param _request_timeout: timeout setting for this request. If one
1038
+ number provided, it will be total request
1039
+ timeout. It can also be a pair (tuple) of
1040
+ (connection, read) timeouts.
1041
+ :return: Returns the result object.
1042
+ If the method is called asynchronously,
1043
+ returns the request thread.
1044
+ :rtype: object
1045
+ """
1046
+ kwargs["_return_http_data_only"] = True
1047
+ return self.get_workspaces_with_http_info(
1048
+ offset, limit, sort, query, no_page, **kwargs
1049
+ ) # noqa: E501
1050
+
1051
+ @validate_call
1052
+ def get_workspaces_with_http_info(
1053
+ self,
1054
+ offset: Annotated[
1055
+ Optional[StrictInt], Field(description="Pagination offset.")
1056
+ ] = None,
1057
+ limit: Annotated[Optional[StrictInt], Field(description="Limit size.")] = None,
1058
+ sort: Annotated[
1059
+ Optional[StrictStr], Field(description="Sort to order the search.")
1060
+ ] = None,
1061
+ query: Annotated[
1062
+ Optional[StrictStr], Field(description="Query filter the search.")
1063
+ ] = None,
1064
+ no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1065
+ **kwargs
1066
+ ): # noqa: E501
1067
+ """User workspaces # noqa: E501
1068
+
1069
+ This method makes a synchronous HTTP request by default. To make an
1070
+ asynchronous HTTP request, please pass async_req=True
1071
+
1072
+ >>> thread = api.get_workspaces_with_http_info(offset, limit, sort, query, no_page, async_req=True)
1073
+ >>> result = thread.get()
1074
+
1075
+ :param offset: Pagination offset.
1076
+ :type offset: int
1077
+ :param limit: Limit size.
1078
+ :type limit: int
1079
+ :param sort: Sort to order the search.
1080
+ :type sort: str
1081
+ :param query: Query filter the search.
1082
+ :type query: str
1083
+ :param no_page: No pagination.
1084
+ :type no_page: bool
1085
+ :param async_req: Whether to execute the request asynchronously.
1086
+ :type async_req: bool, optional
1087
+ :param _return_http_data_only: response data without head status code
1088
+ and headers
1089
+ :type _return_http_data_only: bool, optional
1090
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
1091
+ be returned without reading/decoding response
1092
+ data. Default is True.
1093
+ :type _preload_content: bool, optional
1094
+ :param _request_timeout: timeout setting for this request. If one
1095
+ number provided, it will be total request
1096
+ timeout. It can also be a pair (tuple) of
1097
+ (connection, read) timeouts.
1098
+ :param _request_auth: set to override the auth_settings for an a single
1099
+ request; this effectively ignores the authentication
1100
+ in the spec for a single request.
1101
+ :type _request_auth: dict, optional
1102
+ :type _content_type: string, optional: force content-type for the request
1103
+ :return: Returns the result object.
1104
+ If the method is called asynchronously,
1105
+ returns the request thread.
1106
+ :rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
1107
+ """
1108
+
1109
+ _params = locals()
1110
+
1111
+ _all_params = ["offset", "limit", "sort", "query", "no_page"]
1112
+ _all_params.extend(
1113
+ [
1114
+ "async_req",
1115
+ "_return_http_data_only",
1116
+ "_preload_content",
1117
+ "_request_timeout",
1118
+ "_request_auth",
1119
+ "_content_type",
1120
+ "_headers",
1121
+ ]
1122
+ )
1123
+
1124
+ # validate the arguments
1125
+ for _key, _val in _params["kwargs"].items():
1126
+ if _key not in _all_params:
1127
+ raise ApiTypeError(
1128
+ "Got an unexpected keyword argument '%s'"
1129
+ " to method get_workspaces" % _key
1130
+ )
1131
+ _params[_key] = _val
1132
+ del _params["kwargs"]
1133
+
1134
+ _collection_formats = {}
1135
+
1136
+ # process the path parameters
1137
+ _path_params = {}
1138
+
1139
+ # process the query parameters
1140
+ _query_params = []
1141
+ if _params.get("offset") is not None: # noqa: E501
1142
+ _query_params.append(("offset", _params["offset"]))
1143
+
1144
+ if _params.get("limit") is not None: # noqa: E501
1145
+ _query_params.append(("limit", _params["limit"]))
1146
+
1147
+ if _params.get("sort") is not None: # noqa: E501
1148
+ _query_params.append(("sort", _params["sort"]))
1149
+
1150
+ if _params.get("query") is not None: # noqa: E501
1151
+ _query_params.append(("query", _params["query"]))
1152
+
1153
+ if _params.get("no_page") is not None: # noqa: E501
1154
+ _query_params.append(("no_page", _params["no_page"]))
1155
+
1156
+ # process the header parameters
1157
+ _header_params = dict(_params.get("_headers", {}))
1158
+ # process the form parameters
1159
+ _form_params = []
1160
+ _files = {}
1161
+ # process the body parameter
1162
+ _body_params = None
1163
+ # set the HTTP header `Accept`
1164
+ _header_params["Accept"] = self.api_client.select_header_accept(
1165
+ ["application/json"]
1166
+ ) # noqa: E501
1167
+
1168
+ # authentication setting
1169
+ _auth_settings = ["ApiKey"] # noqa: E501
1170
+
1171
+ _response_types_map = {
1172
+ "200": "object",
1173
+ "204": "object",
1174
+ "403": "object",
1175
+ "404": "object",
1176
+ }
1177
+
1178
+ return self.api_client.call_api(
1179
+ "/api/v1/users/workspaces",
1180
+ "GET",
1181
+ _path_params,
1182
+ _query_params,
1183
+ _header_params,
1184
+ body=_body_params,
1185
+ post_params=_form_params,
1186
+ files=_files,
1187
+ response_types_map=_response_types_map,
1188
+ auth_settings=_auth_settings,
1189
+ async_req=_params.get("async_req"),
1190
+ _return_http_data_only=_params.get("_return_http_data_only"), # noqa: E501
1191
+ _preload_content=_params.get("_preload_content", True),
1192
+ _request_timeout=_params.get("_request_timeout"),
1193
+ collection_formats=_collection_formats,
1194
+ _request_auth=_params.get("_request_auth"),
1195
+ )
1196
+
1197
+ @validate_call
1011
1198
  def list_tokens(
1012
1199
  self,
1013
1200
  offset: Annotated[
@@ -1061,7 +1248,7 @@ class UsersV1Api(BaseApi):
1061
1248
  offset, limit, sort, query, no_page, **kwargs
1062
1249
  ) # noqa: E501
1063
1250
 
1064
- @validate_arguments
1251
+ @validate_call
1065
1252
  def list_tokens_with_http_info(
1066
1253
  self,
1067
1254
  offset: Annotated[
@@ -1153,25 +1340,26 @@ class UsersV1Api(BaseApi):
1153
1340
  _query_params = []
1154
1341
  if _params.get("offset") is not None: # noqa: E501
1155
1342
  _query_params.append(("offset", _params["offset"]))
1343
+
1156
1344
  if _params.get("limit") is not None: # noqa: E501
1157
1345
  _query_params.append(("limit", _params["limit"]))
1346
+
1158
1347
  if _params.get("sort") is not None: # noqa: E501
1159
1348
  _query_params.append(("sort", _params["sort"]))
1349
+
1160
1350
  if _params.get("query") is not None: # noqa: E501
1161
1351
  _query_params.append(("query", _params["query"]))
1352
+
1162
1353
  if _params.get("no_page") is not None: # noqa: E501
1163
1354
  _query_params.append(("no_page", _params["no_page"]))
1164
1355
 
1165
1356
  # process the header parameters
1166
1357
  _header_params = dict(_params.get("_headers", {}))
1167
-
1168
1358
  # process the form parameters
1169
1359
  _form_params = []
1170
1360
  _files = {}
1171
-
1172
1361
  # process the body parameter
1173
1362
  _body_params = None
1174
-
1175
1363
  # set the HTTP header `Accept`
1176
1364
  _header_params["Accept"] = self.api_client.select_header_accept(
1177
1365
  ["application/json"]
@@ -1206,7 +1394,7 @@ class UsersV1Api(BaseApi):
1206
1394
  _request_auth=_params.get("_request_auth"),
1207
1395
  )
1208
1396
 
1209
- @validate_arguments
1397
+ @validate_call
1210
1398
  def patch_token(
1211
1399
  self,
1212
1400
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
@@ -1243,7 +1431,7 @@ class UsersV1Api(BaseApi):
1243
1431
  kwargs["_return_http_data_only"] = True
1244
1432
  return self.patch_token_with_http_info(token_uuid, body, **kwargs) # noqa: E501
1245
1433
 
1246
- @validate_arguments
1434
+ @validate_call
1247
1435
  def patch_token_with_http_info(
1248
1436
  self,
1249
1437
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
@@ -1320,14 +1508,11 @@ class UsersV1Api(BaseApi):
1320
1508
 
1321
1509
  # process the query parameters
1322
1510
  _query_params = []
1323
-
1324
1511
  # process the header parameters
1325
1512
  _header_params = dict(_params.get("_headers", {}))
1326
-
1327
1513
  # process the form parameters
1328
1514
  _form_params = []
1329
1515
  _files = {}
1330
-
1331
1516
  # process the body parameter
1332
1517
  _body_params = None
1333
1518
  if _params["body"]:
@@ -1375,7 +1560,7 @@ class UsersV1Api(BaseApi):
1375
1560
  _request_auth=_params.get("_request_auth"),
1376
1561
  )
1377
1562
 
1378
- @validate_arguments
1563
+ @validate_call
1379
1564
  def patch_user(self, body: V1User, **kwargs) -> V1User: # noqa: E501
1380
1565
  """Patch current user # noqa: E501
1381
1566
 
@@ -1405,7 +1590,7 @@ class UsersV1Api(BaseApi):
1405
1590
  kwargs["_return_http_data_only"] = True
1406
1591
  return self.patch_user_with_http_info(body, **kwargs) # noqa: E501
1407
1592
 
1408
- @validate_arguments
1593
+ @validate_call
1409
1594
  def patch_user_with_http_info(self, body: V1User, **kwargs): # noqa: E501
1410
1595
  """Patch current user # noqa: E501
1411
1596
 
@@ -1473,14 +1658,11 @@ class UsersV1Api(BaseApi):
1473
1658
 
1474
1659
  # process the query parameters
1475
1660
  _query_params = []
1476
-
1477
1661
  # process the header parameters
1478
1662
  _header_params = dict(_params.get("_headers", {}))
1479
-
1480
1663
  # process the form parameters
1481
1664
  _form_params = []
1482
1665
  _files = {}
1483
-
1484
1666
  # process the body parameter
1485
1667
  _body_params = None
1486
1668
  if _params["body"]:
@@ -1528,7 +1710,7 @@ class UsersV1Api(BaseApi):
1528
1710
  _request_auth=_params.get("_request_auth"),
1529
1711
  )
1530
1712
 
1531
- @validate_arguments
1713
+ @validate_call
1532
1714
  def update_token(
1533
1715
  self,
1534
1716
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
@@ -1567,7 +1749,7 @@ class UsersV1Api(BaseApi):
1567
1749
  token_uuid, body, **kwargs
1568
1750
  ) # noqa: E501
1569
1751
 
1570
- @validate_arguments
1752
+ @validate_call
1571
1753
  def update_token_with_http_info(
1572
1754
  self,
1573
1755
  token_uuid: Annotated[StrictStr, Field(..., description="UUID")],
@@ -1644,14 +1826,11 @@ class UsersV1Api(BaseApi):
1644
1826
 
1645
1827
  # process the query parameters
1646
1828
  _query_params = []
1647
-
1648
1829
  # process the header parameters
1649
1830
  _header_params = dict(_params.get("_headers", {}))
1650
-
1651
1831
  # process the form parameters
1652
1832
  _form_params = []
1653
1833
  _files = {}
1654
-
1655
1834
  # process the body parameter
1656
1835
  _body_params = None
1657
1836
  if _params["body"]:
@@ -1699,7 +1878,7 @@ class UsersV1Api(BaseApi):
1699
1878
  _request_auth=_params.get("_request_auth"),
1700
1879
  )
1701
1880
 
1702
- @validate_arguments
1881
+ @validate_call
1703
1882
  def update_user(self, body: V1User, **kwargs) -> V1User: # noqa: E501
1704
1883
  """Update current user # noqa: E501
1705
1884
 
@@ -1729,7 +1908,7 @@ class UsersV1Api(BaseApi):
1729
1908
  kwargs["_return_http_data_only"] = True
1730
1909
  return self.update_user_with_http_info(body, **kwargs) # noqa: E501
1731
1910
 
1732
- @validate_arguments
1911
+ @validate_call
1733
1912
  def update_user_with_http_info(self, body: V1User, **kwargs): # noqa: E501
1734
1913
  """Update current user # noqa: E501
1735
1914
 
@@ -1797,14 +1976,11 @@ class UsersV1Api(BaseApi):
1797
1976
 
1798
1977
  # process the query parameters
1799
1978
  _query_params = []
1800
-
1801
1979
  # process the header parameters
1802
1980
  _header_params = dict(_params.get("_headers", {}))
1803
-
1804
1981
  # process the form parameters
1805
1982
  _form_params = []
1806
1983
  _files = {}
1807
-
1808
1984
  # process the body parameter
1809
1985
  _body_params = None
1810
1986
  if _params["body"]: