polyaxon 2.6.0rc1__py3-none-any.whl → 2.7.0rc0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. polyaxon/_cli/operations.py +1 -1
  2. polyaxon/_cli/projects.py +2 -2
  3. polyaxon/_compiler/contexts/contexts.py +5 -5
  4. polyaxon/_compiler/contexts/dask_job.py +1 -1
  5. polyaxon/_compiler/contexts/kubeflow/mpi_job.py +1 -1
  6. polyaxon/_compiler/contexts/kubeflow/mx_job.py +1 -1
  7. polyaxon/_compiler/contexts/kubeflow/paddle_job.py +1 -1
  8. polyaxon/_compiler/contexts/kubeflow/pytroch_job.py +1 -1
  9. polyaxon/_compiler/contexts/kubeflow/tf_job.py +1 -1
  10. polyaxon/_compiler/contexts/kubeflow/xgb_job.py +1 -1
  11. polyaxon/_compiler/contexts/ray_job.py +1 -1
  12. polyaxon/_compiler/resolver/agent.py +1 -1
  13. polyaxon/_compiler/resolver/runtime.py +1 -1
  14. polyaxon/_deploy/schemas/deployment.py +1 -0
  15. polyaxon/_deploy/schemas/ui.py +3 -1
  16. polyaxon/_docker/converter/base/base.py +1 -1
  17. polyaxon/_docker/converter/base/env_vars.py +1 -1
  18. polyaxon/_docker/converter/converters/job.py +1 -1
  19. polyaxon/_docker/converter/converters/service.py +1 -1
  20. polyaxon/_flow/component/component.py +4 -0
  21. polyaxon/_flow/environment/__init__.py +5 -4
  22. polyaxon/_flow/io/io.py +2 -0
  23. polyaxon/_flow/matrix/params.py +1 -1
  24. polyaxon/_flow/operations/compiled_operation.py +4 -0
  25. polyaxon/_flow/operations/operation.py +5 -3
  26. polyaxon/_flow/params/params.py +2 -2
  27. polyaxon/_flow/run/__init__.py +3 -0
  28. polyaxon/_flow/run/dag.py +6 -6
  29. polyaxon/_flow/run/dask/dask.py +10 -0
  30. polyaxon/_flow/run/kubeflow/mpi_job.py +8 -0
  31. polyaxon/_flow/run/kubeflow/mx_job.py +16 -0
  32. polyaxon/_flow/run/kubeflow/paddle_job.py +8 -0
  33. polyaxon/_flow/run/kubeflow/pytorch_job.py +8 -0
  34. polyaxon/_flow/run/kubeflow/tf_job.py +12 -0
  35. polyaxon/_flow/run/kubeflow/xgboost_job.py +19 -33
  36. polyaxon/_flow/run/patch.py +37 -9
  37. polyaxon/_flow/run/ray/ray.py +9 -0
  38. polyaxon/_flow/run/resources.py +1 -1
  39. polyaxon/_fs/fs.py +1 -1
  40. polyaxon/_k8s/converter/base/containers.py +1 -1
  41. polyaxon/_k8s/converter/converters/dask_job.py +1 -1
  42. polyaxon/_k8s/converter/converters/job.py +1 -1
  43. polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py +1 -1
  44. polyaxon/_k8s/converter/converters/kubeflow/mx_job.py +1 -1
  45. polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py +1 -1
  46. polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py +1 -1
  47. polyaxon/_k8s/converter/converters/kubeflow/tf_job.py +1 -1
  48. polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py +1 -1
  49. polyaxon/_k8s/converter/converters/ray_job.py +1 -2
  50. polyaxon/_k8s/converter/converters/service.py +1 -1
  51. polyaxon/_k8s/k8s_validation.py +16 -16
  52. polyaxon/_k8s/logging/async_monitor.py +4 -4
  53. polyaxon/_k8s/manager/async_manager.py +5 -3
  54. polyaxon/_k8s/manager/manager.py +6 -6
  55. polyaxon/_local_process/converter/base/env_vars.py +1 -1
  56. polyaxon/_local_process/converter/base/init.py +1 -1
  57. polyaxon/_local_process/converter/base/mounts.py +0 -2
  58. polyaxon/_local_process/converter/converters/job.py +1 -1
  59. polyaxon/_local_process/converter/converters/service.py +1 -1
  60. polyaxon/_managers/project.py +3 -2
  61. polyaxon/_polyaxonfile/check.py +4 -4
  62. polyaxon/_polyaxonfile/specs/compiled_operation.py +8 -6
  63. polyaxon/_polyaxonfile/specs/libs/parser.py +1 -3
  64. polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
  65. polyaxon/_polyaxonfile/specs/operation.py +7 -3
  66. polyaxon/_pql/manager.py +1 -1
  67. polyaxon/_pql/parser.py +29 -26
  68. polyaxon/_runner/agent/base_agent.py +1 -2
  69. polyaxon/_runner/converter/init/artifacts.py +3 -2
  70. polyaxon/_runner/converter/init/tensorboard.py +1 -1
  71. polyaxon/_schemas/client.py +1 -1
  72. polyaxon/_sdk/api/agents_v1_api.py +56 -80
  73. polyaxon/_sdk/api/artifacts_stores_v1_api.py +2 -2
  74. polyaxon/_sdk/api/auth_v1_api.py +2 -6
  75. polyaxon/_sdk/api/connections_v1_api.py +16 -20
  76. polyaxon/_sdk/api/dashboards_v1_api.py +14 -14
  77. polyaxon/_sdk/api/organizations_v1_api.py +1735 -755
  78. polyaxon/_sdk/api/presets_v1_api.py +18 -26
  79. polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -19
  80. polyaxon/_sdk/api/project_searches_v1_api.py +20 -28
  81. polyaxon/_sdk/api/projects_v1_api.py +74 -92
  82. polyaxon/_sdk/api/queues_v1_api.py +22 -30
  83. polyaxon/_sdk/api/runs_v1_api.py +157 -207
  84. polyaxon/_sdk/api/searches_v1_api.py +16 -20
  85. polyaxon/_sdk/api/service_accounts_v1_api.py +30 -38
  86. polyaxon/_sdk/api/tags_v1_api.py +19 -25
  87. polyaxon/_sdk/api/teams_v1_api.py +64 -90
  88. polyaxon/_sdk/api/users_v1_api.py +17 -19
  89. polyaxon/_sdk/api/versions_v1_api.py +4 -4
  90. polyaxon/_sdk/async_client/rest.py +1 -3
  91. polyaxon/_sdk/schemas/v1_organization.py +3 -2
  92. polyaxon/_sdk/schemas/v1_project_settings.py +2 -1
  93. polyaxon/_sdk/schemas/v1_section_spec.py +1 -1
  94. polyaxon/_sdk/schemas/v1_user_access.py +3 -2
  95. polyaxon/_sdk/sync_client/api_client.py +2 -6
  96. polyaxon/_sdk/sync_client/rest.py +4 -8
  97. polyaxon/pkg.py +1 -1
  98. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/METADATA +9 -9
  99. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/RECORD +103 -103
  100. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/LICENSE +0 -0
  101. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/WHEEL +0 -0
  102. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/entry_points.txt +0 -0
  103. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.7.0rc0.dist-info}/top_level.txt +0 -0
@@ -15,7 +15,7 @@ class DashboardsV1Api(BaseApi):
15
15
  self,
16
16
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
17
17
  body: Annotated[V1Dashboard, Field(..., description="Dashboard body")],
18
- **kwargs
18
+ **kwargs,
19
19
  ) -> V1Dashboard: # noqa: E501
20
20
  """Create dashboard # noqa: E501
21
21
 
@@ -52,7 +52,7 @@ class DashboardsV1Api(BaseApi):
52
52
  self,
53
53
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
54
54
  body: Annotated[V1Dashboard, Field(..., description="Dashboard body")],
55
- **kwargs
55
+ **kwargs,
56
56
  ): # noqa: E501
57
57
  """Create dashboard # noqa: E501
58
58
 
@@ -186,7 +186,7 @@ class DashboardsV1Api(BaseApi):
186
186
  uuid: Annotated[
187
187
  StrictStr, Field(..., description="Uuid identifier of the entity")
188
188
  ],
189
- **kwargs
189
+ **kwargs,
190
190
  ) -> None: # noqa: E501
191
191
  """Delete dashboard # noqa: E501
192
192
 
@@ -225,7 +225,7 @@ class DashboardsV1Api(BaseApi):
225
225
  uuid: Annotated[
226
226
  StrictStr, Field(..., description="Uuid identifier of the entity")
227
227
  ],
228
- **kwargs
228
+ **kwargs,
229
229
  ): # noqa: E501
230
230
  """Delete dashboard # noqa: E501
231
231
 
@@ -346,7 +346,7 @@ class DashboardsV1Api(BaseApi):
346
346
  uuid: Annotated[
347
347
  StrictStr, Field(..., description="Uuid identifier of the entity")
348
348
  ],
349
- **kwargs
349
+ **kwargs,
350
350
  ) -> V1Dashboard: # noqa: E501
351
351
  """Get dashboard # noqa: E501
352
352
 
@@ -385,7 +385,7 @@ class DashboardsV1Api(BaseApi):
385
385
  uuid: Annotated[
386
386
  StrictStr, Field(..., description="Uuid identifier of the entity")
387
387
  ],
388
- **kwargs
388
+ **kwargs,
389
389
  ): # noqa: E501
390
390
  """Get dashboard # noqa: E501
391
391
 
@@ -525,7 +525,7 @@ class DashboardsV1Api(BaseApi):
525
525
  Optional[StrictStr], Field(description="Mode of the search.")
526
526
  ] = None,
527
527
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
528
- **kwargs
528
+ **kwargs,
529
529
  ) -> V1ListDashboardsResponse: # noqa: E501
530
530
  """List dashboard names # noqa: E501
531
531
 
@@ -592,7 +592,7 @@ class DashboardsV1Api(BaseApi):
592
592
  Optional[StrictStr], Field(description="Mode of the search.")
593
593
  ] = None,
594
594
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
595
- **kwargs
595
+ **kwargs,
596
596
  ): # noqa: E501
597
597
  """List dashboard names # noqa: E501
598
598
 
@@ -765,7 +765,7 @@ class DashboardsV1Api(BaseApi):
765
765
  Optional[StrictStr], Field(description="Mode of the search.")
766
766
  ] = None,
767
767
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
768
- **kwargs
768
+ **kwargs,
769
769
  ) -> V1ListDashboardsResponse: # noqa: E501
770
770
  """List dashboards # noqa: E501
771
771
 
@@ -832,7 +832,7 @@ class DashboardsV1Api(BaseApi):
832
832
  Optional[StrictStr], Field(description="Mode of the search.")
833
833
  ] = None,
834
834
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
835
- **kwargs
835
+ **kwargs,
836
836
  ): # noqa: E501
837
837
  """List dashboards # noqa: E501
838
838
 
@@ -990,7 +990,7 @@ class DashboardsV1Api(BaseApi):
990
990
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
991
991
  dashboard_uuid: Annotated[StrictStr, Field(..., description="UUID")],
992
992
  body: Annotated[V1Dashboard, Field(..., description="Dashboard body")],
993
- **kwargs
993
+ **kwargs,
994
994
  ) -> V1Dashboard: # noqa: E501
995
995
  """Patch dashboard # noqa: E501
996
996
 
@@ -1032,7 +1032,7 @@ class DashboardsV1Api(BaseApi):
1032
1032
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1033
1033
  dashboard_uuid: Annotated[StrictStr, Field(..., description="UUID")],
1034
1034
  body: Annotated[V1Dashboard, Field(..., description="Dashboard body")],
1035
- **kwargs
1035
+ **kwargs,
1036
1036
  ): # noqa: E501
1037
1037
  """Patch dashboard # noqa: E501
1038
1038
 
@@ -1169,7 +1169,7 @@ class DashboardsV1Api(BaseApi):
1169
1169
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1170
1170
  dashboard_uuid: Annotated[StrictStr, Field(..., description="UUID")],
1171
1171
  body: Annotated[V1Dashboard, Field(..., description="Dashboard body")],
1172
- **kwargs
1172
+ **kwargs,
1173
1173
  ) -> V1Dashboard: # noqa: E501
1174
1174
  """Update dashboard # noqa: E501
1175
1175
 
@@ -1211,7 +1211,7 @@ class DashboardsV1Api(BaseApi):
1211
1211
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1212
1212
  dashboard_uuid: Annotated[StrictStr, Field(..., description="UUID")],
1213
1213
  body: Annotated[V1Dashboard, Field(..., description="Dashboard body")],
1214
- **kwargs
1214
+ **kwargs,
1215
1215
  ): # noqa: E501
1216
1216
  """Update dashboard # noqa: E501
1217
1217