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.
- polyaxon/_cli/artifacts.py +16 -12
- polyaxon/_cli/components.py +16 -12
- polyaxon/_cli/config.py +31 -0
- polyaxon/_cli/dashboard.py +15 -2
- polyaxon/_cli/init.py +1 -1
- polyaxon/_cli/models.py +16 -12
- polyaxon/_cli/operations.py +100 -54
- polyaxon/_cli/project_versions.py +26 -5
- polyaxon/_cli/projects.py +23 -9
- polyaxon/_cli/run.py +29 -9
- polyaxon/_client/mixin.py +39 -0
- polyaxon/_client/project.py +22 -22
- polyaxon/_client/run.py +44 -25
- polyaxon/_compiler/contexts/ray_job.py +4 -2
- polyaxon/_deploy/schemas/proxy.py +1 -0
- polyaxon/_env_vars/getters/owner_entity.py +4 -2
- polyaxon/_env_vars/getters/project.py +4 -2
- polyaxon/_env_vars/getters/run.py +2 -2
- polyaxon/_env_vars/keys.py +1 -0
- polyaxon/_k8s/converter/base/main.py +1 -0
- polyaxon/_k8s/converter/common/accelerators.py +7 -4
- polyaxon/_k8s/converter/converters/ray_job.py +4 -2
- polyaxon/_k8s/custom_resources/setter.py +1 -1
- polyaxon/_local_process/__init__.py +0 -0
- polyaxon/_local_process/agent.py +6 -0
- polyaxon/_local_process/converter/__init__.py +1 -0
- polyaxon/_local_process/converter/base/__init__.py +1 -0
- polyaxon/_local_process/converter/base/base.py +140 -0
- polyaxon/_local_process/converter/base/containers.py +69 -0
- polyaxon/_local_process/converter/base/env_vars.py +253 -0
- polyaxon/_local_process/converter/base/init.py +414 -0
- polyaxon/_local_process/converter/base/main.py +74 -0
- polyaxon/_local_process/converter/base/mounts.py +82 -0
- polyaxon/_local_process/converter/converters/__init__.py +8 -0
- polyaxon/_local_process/converter/converters/job.py +40 -0
- polyaxon/_local_process/converter/converters/service.py +41 -0
- polyaxon/_local_process/converter/mixins.py +38 -0
- polyaxon/_local_process/executor.py +132 -0
- polyaxon/_local_process/process_types.py +39 -0
- polyaxon/_sdk/api/organizations_v1_api.py +8 -8
- polyaxon/_sdk/api/project_dashboards_v1_api.py +12 -12
- polyaxon/_sdk/api/project_searches_v1_api.py +12 -12
- polyaxon/_sdk/api/projects_v1_api.py +221 -44
- polyaxon/_sdk/api/runs_v1_api.py +156 -202
- polyaxon/_sdk/api/service_accounts_v1_api.py +4 -4
- polyaxon/_sdk/api/teams_v1_api.py +2827 -375
- polyaxon/_sdk/api/users_v1_api.py +231 -55
- polyaxon/_sdk/schemas/v1_settings_catalog.py +1 -0
- polyaxon/_sdk/schemas/v1_team.py +3 -0
- polyaxon/_sdk/schemas/v1_user.py +1 -2
- polyaxon/_utils/fqn_utils.py +25 -2
- polyaxon/pkg.py +1 -1
- {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/METADATA +8 -8
- {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/RECORD +58 -41
- {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/LICENSE +0 -0
- {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/WHEEL +0 -0
- {polyaxon-2.1.8.dist-info → polyaxon-2.2.0.post1.dist-info}/entry_points.txt +0 -0
- {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
|
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
|
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
|
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
|
1403
|
+
:param entity: Entity name under namespace.
|
1404
1404
|
:type entity: str
|
1405
1405
|
:param offset: Pagination offset.
|
1406
1406
|
:type offset: int
|