polyaxon 2.1.8__py3-none-any.whl → 2.2.0.post1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. polyaxon/_cli/artifacts.py +16 -12
  2. polyaxon/_cli/components.py +16 -12
  3. polyaxon/_cli/config.py +31 -0
  4. polyaxon/_cli/dashboard.py +15 -2
  5. polyaxon/_cli/init.py +1 -1
  6. polyaxon/_cli/models.py +16 -12
  7. polyaxon/_cli/operations.py +100 -54
  8. polyaxon/_cli/project_versions.py +26 -5
  9. polyaxon/_cli/projects.py +23 -9
  10. polyaxon/_cli/run.py +29 -9
  11. polyaxon/_client/mixin.py +39 -0
  12. polyaxon/_client/project.py +22 -22
  13. polyaxon/_client/run.py +44 -25
  14. polyaxon/_compiler/contexts/ray_job.py +4 -2
  15. polyaxon/_deploy/schemas/proxy.py +1 -0
  16. polyaxon/_env_vars/getters/owner_entity.py +4 -2
  17. polyaxon/_env_vars/getters/project.py +4 -2
  18. polyaxon/_env_vars/getters/run.py +2 -2
  19. polyaxon/_env_vars/keys.py +1 -0
  20. polyaxon/_k8s/converter/base/main.py +1 -0
  21. polyaxon/_k8s/converter/common/accelerators.py +7 -4
  22. polyaxon/_k8s/converter/converters/ray_job.py +4 -2
  23. polyaxon/_k8s/custom_resources/setter.py +1 -1
  24. polyaxon/_local_process/__init__.py +0 -0
  25. polyaxon/_local_process/agent.py +6 -0
  26. polyaxon/_local_process/converter/__init__.py +1 -0
  27. polyaxon/_local_process/converter/base/__init__.py +1 -0
  28. polyaxon/_local_process/converter/base/base.py +140 -0
  29. polyaxon/_local_process/converter/base/containers.py +69 -0
  30. polyaxon/_local_process/converter/base/env_vars.py +253 -0
  31. polyaxon/_local_process/converter/base/init.py +414 -0
  32. polyaxon/_local_process/converter/base/main.py +74 -0
  33. polyaxon/_local_process/converter/base/mounts.py +82 -0
  34. polyaxon/_local_process/converter/converters/__init__.py +8 -0
  35. polyaxon/_local_process/converter/converters/job.py +40 -0
  36. polyaxon/_local_process/converter/converters/service.py +41 -0
  37. polyaxon/_local_process/converter/mixins.py +38 -0
  38. polyaxon/_local_process/executor.py +132 -0
  39. polyaxon/_local_process/process_types.py +39 -0
  40. polyaxon/_sdk/api/organizations_v1_api.py +8 -8
  41. polyaxon/_sdk/api/project_dashboards_v1_api.py +12 -12
  42. polyaxon/_sdk/api/project_searches_v1_api.py +12 -12
  43. polyaxon/_sdk/api/projects_v1_api.py +221 -44
  44. polyaxon/_sdk/api/runs_v1_api.py +156 -202
  45. polyaxon/_sdk/api/service_accounts_v1_api.py +4 -4
  46. polyaxon/_sdk/api/teams_v1_api.py +2827 -375
  47. polyaxon/_sdk/api/users_v1_api.py +231 -55
  48. polyaxon/_sdk/schemas/v1_settings_catalog.py +1 -0
  49. polyaxon/_sdk/schemas/v1_team.py +3 -0
  50. polyaxon/_sdk/schemas/v1_user.py +1 -2
  51. polyaxon/_utils/fqn_utils.py +25 -2
  52. polyaxon/pkg.py +1 -1
  53. {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/METADATA +8 -8
  54. {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/RECORD +58 -41
  55. {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/LICENSE +0 -0
  56. {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/WHEEL +0 -0
  57. {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/entry_points.txt +0 -0
  58. {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/top_level.txt +0 -0
@@ -1308,7 +1308,7 @@ class ServiceAccountsV1Api(BaseApi):
1308
1308
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1309
1309
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
1310
1310
  entity: Annotated[
1311
- Optional[StrictStr], Field(description="Entity name under namesapce.")
1311
+ Optional[StrictStr], Field(description="Entity name under namespace.")
1312
1312
  ] = None,
1313
1313
  offset: Annotated[
1314
1314
  Optional[StrictInt], Field(description="Pagination offset.")
@@ -1335,7 +1335,7 @@ class ServiceAccountsV1Api(BaseApi):
1335
1335
  :type owner: str
1336
1336
  :param uuid: SubEntity uuid (required)
1337
1337
  :type uuid: str
1338
- :param entity: Entity name under namesapce.
1338
+ :param entity: Entity name under namespace.
1339
1339
  :type entity: str
1340
1340
  :param offset: Pagination offset.
1341
1341
  :type offset: int
@@ -1373,7 +1373,7 @@ class ServiceAccountsV1Api(BaseApi):
1373
1373
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1374
1374
  uuid: Annotated[StrictStr, Field(..., description="SubEntity uuid")],
1375
1375
  entity: Annotated[
1376
- Optional[StrictStr], Field(description="Entity name under namesapce.")
1376
+ Optional[StrictStr], Field(description="Entity name under namespace.")
1377
1377
  ] = None,
1378
1378
  offset: Annotated[
1379
1379
  Optional[StrictInt], Field(description="Pagination offset.")
@@ -1400,7 +1400,7 @@ class ServiceAccountsV1Api(BaseApi):
1400
1400
  :type owner: str
1401
1401
  :param uuid: SubEntity uuid (required)
1402
1402
  :type uuid: str
1403
- :param entity: Entity name under namesapce.
1403
+ :param entity: Entity name under namespace.
1404
1404
  :type entity: str
1405
1405
  :param offset: Pagination offset.
1406
1406
  :type offset: int