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.
- polyaxon/_auxiliaries/default_scheduling.py +17 -7
- polyaxon/_auxiliaries/init.py +14 -6
- polyaxon/_auxiliaries/sidecar.py +10 -8
- polyaxon/_cli/artifacts.py +96 -11
- polyaxon/_cli/components.py +96 -11
- polyaxon/_cli/config.py +31 -0
- polyaxon/_cli/dashboard.py +12 -2
- polyaxon/_cli/init.py +1 -1
- polyaxon/_cli/models.py +96 -11
- polyaxon/_cli/operations.py +133 -58
- polyaxon/_cli/project_versions.py +139 -6
- polyaxon/_cli/projects.py +23 -9
- polyaxon/_cli/run.py +43 -9
- polyaxon/_cli/services/agent.py +2 -2
- polyaxon/_cli/version.py +4 -1
- polyaxon/_client/mixin.py +39 -0
- polyaxon/_client/project.py +218 -23
- polyaxon/_client/run.py +84 -27
- polyaxon/_compiler/contexts/contexts.py +4 -0
- polyaxon/_compiler/contexts/ray_job.py +4 -2
- polyaxon/_compiler/resolver/agent.py +22 -10
- polyaxon/_compiler/resolver/runtime.py +7 -3
- polyaxon/_constants/metadata.py +1 -0
- polyaxon/_contexts/keys.py +1 -0
- polyaxon/_contexts/paths.py +1 -1
- polyaxon/_deploy/operators/compose.py +1 -27
- polyaxon/_deploy/schemas/auth.py +3 -3
- polyaxon/_deploy/schemas/celery.py +10 -8
- polyaxon/_deploy/schemas/deployment.py +148 -115
- polyaxon/_deploy/schemas/email.py +8 -8
- polyaxon/_deploy/schemas/ingress.py +7 -7
- polyaxon/_deploy/schemas/intervals.py +2 -7
- polyaxon/_deploy/schemas/operators.py +8 -8
- polyaxon/_deploy/schemas/proxy.py +9 -8
- polyaxon/_deploy/schemas/rbac.py +1 -1
- polyaxon/_deploy/schemas/root_user.py +5 -5
- polyaxon/_deploy/schemas/security_context.py +25 -15
- polyaxon/_deploy/schemas/service.py +75 -66
- polyaxon/_deploy/schemas/ssl.py +3 -3
- polyaxon/_deploy/schemas/ui.py +10 -6
- polyaxon/_docker/builder/builder.py +4 -1
- polyaxon/_docker/converter/base/containers.py +4 -7
- polyaxon/_docker/converter/base/env_vars.py +5 -5
- polyaxon/_docker/converter/base/mounts.py +2 -2
- polyaxon/_docker/docker_types.py +57 -30
- polyaxon/_env_vars/getters/owner_entity.py +4 -2
- polyaxon/_env_vars/getters/project.py +4 -2
- polyaxon/_env_vars/getters/run.py +5 -2
- polyaxon/_env_vars/keys.py +3 -0
- polyaxon/_flow/__init__.py +3 -2
- polyaxon/_flow/builds/__init__.py +8 -8
- polyaxon/_flow/cache/__init__.py +4 -4
- polyaxon/_flow/component/base.py +25 -18
- polyaxon/_flow/component/component.py +4 -3
- polyaxon/_flow/early_stopping/__init__.py +1 -1
- polyaxon/_flow/early_stopping/policies.py +12 -10
- polyaxon/_flow/environment/__init__.py +43 -25
- polyaxon/_flow/events/__init__.py +1 -1
- polyaxon/_flow/hooks/__init__.py +11 -11
- polyaxon/_flow/init/__init__.py +41 -25
- polyaxon/_flow/io/io.py +57 -47
- polyaxon/_flow/joins/__init__.py +5 -5
- polyaxon/_flow/matrix/bayes.py +23 -17
- polyaxon/_flow/matrix/grid_search.py +16 -7
- polyaxon/_flow/matrix/hyperband.py +10 -10
- polyaxon/_flow/matrix/hyperopt.py +14 -9
- polyaxon/_flow/matrix/iterative.py +14 -8
- polyaxon/_flow/matrix/mapping.py +4 -4
- polyaxon/_flow/matrix/params.py +138 -77
- polyaxon/_flow/matrix/random_search.py +10 -5
- polyaxon/_flow/matrix/tuner.py +4 -4
- polyaxon/_flow/mounts/artifacts_mounts.py +1 -1
- polyaxon/_flow/notifications/__init__.py +1 -1
- polyaxon/_flow/operations/base.py +10 -8
- polyaxon/_flow/operations/compiled_operation.py +5 -4
- polyaxon/_flow/operations/operation.py +57 -41
- polyaxon/_flow/optimization/__init__.py +2 -2
- polyaxon/_flow/params/params.py +10 -9
- polyaxon/_flow/plugins/__init__.py +19 -13
- polyaxon/_flow/run/dag.py +12 -9
- polyaxon/_flow/run/dask/dask.py +4 -4
- polyaxon/_flow/run/dask/replica.py +17 -11
- polyaxon/_flow/run/job.py +17 -11
- polyaxon/_flow/run/kubeflow/mpi_job.py +10 -5
- polyaxon/_flow/run/kubeflow/mx_job.py +25 -9
- polyaxon/_flow/run/kubeflow/paddle_job.py +16 -9
- polyaxon/_flow/run/kubeflow/pytorch_job.py +24 -17
- polyaxon/_flow/run/kubeflow/replica.py +17 -11
- polyaxon/_flow/run/kubeflow/scheduling_policy.py +7 -5
- polyaxon/_flow/run/kubeflow/tf_job.py +15 -8
- polyaxon/_flow/run/kubeflow/xgboost_job.py +9 -4
- polyaxon/_flow/run/ray/ray.py +9 -6
- polyaxon/_flow/run/ray/replica.py +25 -16
- polyaxon/_flow/run/resources.py +14 -13
- polyaxon/_flow/run/service.py +4 -4
- polyaxon/_flow/schedules/cron.py +4 -4
- polyaxon/_flow/schedules/interval.py +4 -4
- polyaxon/_flow/templates/__init__.py +3 -3
- polyaxon/_flow/termination/__init__.py +3 -3
- polyaxon/_fs/async_manager.py +1 -1
- polyaxon/_fs/fs.py +1 -1
- polyaxon/_fs/watcher.py +26 -27
- polyaxon/_k8s/converter/base/base.py +2 -1
- 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/dask_job.py +3 -0
- polyaxon/_k8s/custom_resources/kubeflow/common.py +4 -1
- polyaxon/_k8s/custom_resources/ray_job.py +3 -0
- polyaxon/_k8s/custom_resources/setter.py +1 -1
- polyaxon/_k8s/executor/async_executor.py +2 -0
- polyaxon/_k8s/k8s_validation.py +1 -1
- polyaxon/_k8s/logging/async_monitor.py +82 -11
- polyaxon/_k8s/manager/async_manager.py +15 -0
- polyaxon/_k8s/manager/manager.py +16 -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 +66 -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 +42 -0
- polyaxon/_polyaxonfile/specs/compiled_operation.py +1 -1
- polyaxon/_polyaxonfile/specs/libs/parser.py +1 -1
- polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
- polyaxon/_polyaxonfile/specs/operation.py +1 -1
- polyaxon/_polyaxonfile/specs/sections.py +8 -0
- polyaxon/_pql/manager.py +1 -1
- polyaxon/_runner/agent/async_agent.py +25 -11
- polyaxon/_runner/agent/base_agent.py +19 -10
- polyaxon/_runner/agent/sync_agent.py +24 -10
- polyaxon/_runner/converter/converter.py +12 -4
- polyaxon/_runner/executor.py +1 -1
- polyaxon/_schemas/agent.py +69 -37
- polyaxon/_schemas/authentication.py +4 -4
- polyaxon/_schemas/base.py +26 -2
- polyaxon/_schemas/checks.py +3 -3
- polyaxon/_schemas/cli.py +4 -6
- polyaxon/_schemas/client.py +20 -18
- polyaxon/_schemas/compatibility.py +4 -4
- polyaxon/_schemas/container_resources.py +1 -1
- polyaxon/_schemas/home.py +3 -3
- polyaxon/_schemas/installation.py +13 -9
- polyaxon/_schemas/lifecycle.py +23 -23
- polyaxon/_schemas/log_handler.py +2 -2
- polyaxon/_schemas/services.py +26 -14
- polyaxon/_schemas/types/artifacts.py +3 -3
- polyaxon/_schemas/types/dockerfile.py +14 -12
- polyaxon/_schemas/types/event.py +2 -2
- polyaxon/_schemas/types/file.py +3 -3
- polyaxon/_schemas/types/git.py +12 -4
- polyaxon/_schemas/types/tensorboard.py +14 -8
- polyaxon/_schemas/user.py +3 -3
- polyaxon/_schemas/version.py +2 -2
- polyaxon/_sdk/api/agents_v1_api.py +222 -43
- polyaxon/_sdk/api/artifacts_stores_v1_api.py +3 -3
- polyaxon/_sdk/api/auth_v1_api.py +13 -13
- polyaxon/_sdk/api/connections_v1_api.py +15 -15
- polyaxon/_sdk/api/dashboards_v1_api.py +15 -15
- polyaxon/_sdk/api/organizations_v1_api.py +85 -85
- polyaxon/_sdk/api/presets_v1_api.py +15 -15
- polyaxon/_sdk/api/project_dashboards_v1_api.py +29 -29
- polyaxon/_sdk/api/project_searches_v1_api.py +29 -29
- polyaxon/_sdk/api/projects_v1_api.py +284 -107
- polyaxon/_sdk/api/queues_v1_api.py +19 -19
- polyaxon/_sdk/api/runs_v1_api.py +313 -359
- polyaxon/_sdk/api/searches_v1_api.py +15 -15
- polyaxon/_sdk/api/service_accounts_v1_api.py +31 -31
- polyaxon/_sdk/api/tags_v1_api.py +17 -17
- polyaxon/_sdk/api/teams_v1_api.py +2854 -402
- polyaxon/_sdk/api/users_v1_api.py +254 -78
- polyaxon/_sdk/api/versions_v1_api.py +7 -7
- polyaxon/_sdk/async_client/api_client.py +4 -0
- polyaxon/_sdk/schemas/__init__.py +1 -1
- polyaxon/_sdk/schemas/v1_activity.py +8 -8
- polyaxon/_sdk/schemas/v1_agent.py +18 -16
- polyaxon/_sdk/schemas/v1_agent_state_response.py +4 -4
- polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +10 -10
- polyaxon/_sdk/schemas/v1_agent_status_body_request.py +3 -3
- polyaxon/_sdk/schemas/v1_analytics_spec.py +4 -4
- polyaxon/_sdk/schemas/v1_artifact_tree.py +3 -3
- polyaxon/_sdk/schemas/v1_auth.py +1 -1
- polyaxon/_sdk/schemas/v1_cloning.py +3 -3
- polyaxon/_sdk/schemas/v1_connection_response.py +9 -9
- polyaxon/_sdk/schemas/v1_dashboard.py +9 -9
- polyaxon/_sdk/schemas/v1_dashboard_spec.py +5 -1
- polyaxon/_sdk/schemas/v1_entities_tags.py +2 -2
- polyaxon/_sdk/schemas/v1_entities_transfer.py +2 -2
- polyaxon/_sdk/schemas/v1_entity_notification_body.py +7 -7
- polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +5 -5
- polyaxon/_sdk/schemas/v1_entity_status_body_request.py +5 -5
- polyaxon/_sdk/schemas/v1_events_response.py +2 -2
- polyaxon/_sdk/schemas/v1_list_activities_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_agents_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_connections_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_dashboards_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_organization_members_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_organizations_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_presets_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_project_versions_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_projects_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_queues_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_run_connections_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_run_edges_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_runs_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_searches_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_tags_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_team_members_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_teams_response.py +4 -4
- polyaxon/_sdk/schemas/v1_list_token_response.py +4 -4
- polyaxon/_sdk/schemas/v1_operation_body.py +8 -8
- polyaxon/_sdk/schemas/v1_organization.py +16 -16
- polyaxon/_sdk/schemas/v1_organization_member.py +6 -6
- polyaxon/_sdk/schemas/v1_password_change.py +3 -3
- polyaxon/_sdk/schemas/v1_pipeline.py +3 -3
- polyaxon/_sdk/schemas/v1_preset.py +16 -9
- polyaxon/_sdk/schemas/v1_project.py +17 -17
- polyaxon/_sdk/schemas/v1_project_settings.py +12 -10
- polyaxon/_sdk/schemas/v1_project_version.py +20 -20
- polyaxon/_sdk/schemas/v1_queue.py +12 -12
- polyaxon/_sdk/schemas/v1_run.py +38 -38
- polyaxon/_sdk/schemas/v1_run_connection.py +3 -3
- polyaxon/_sdk/schemas/v1_run_edge.py +5 -5
- polyaxon/_sdk/schemas/v1_run_edge_lineage.py +3 -3
- polyaxon/_sdk/schemas/v1_run_edges_graph.py +1 -1
- polyaxon/_sdk/schemas/v1_run_reference_catalog.py +4 -4
- polyaxon/_sdk/schemas/v1_run_settings.py +9 -9
- polyaxon/_sdk/schemas/v1_search.py +10 -10
- polyaxon/_sdk/schemas/v1_search_spec.py +14 -14
- polyaxon/_sdk/schemas/v1_section_spec.py +12 -7
- polyaxon/_sdk/schemas/v1_service_account.py +9 -9
- polyaxon/_sdk/schemas/v1_settings_catalog.py +4 -3
- polyaxon/_sdk/schemas/v1_tag.py +6 -6
- polyaxon/_sdk/schemas/v1_team.py +11 -8
- polyaxon/_sdk/schemas/v1_team_member.py +6 -6
- polyaxon/_sdk/schemas/v1_team_settings.py +2 -2
- polyaxon/_sdk/schemas/v1_token.py +10 -10
- polyaxon/_sdk/schemas/v1_trial_start.py +6 -6
- polyaxon/_sdk/schemas/v1_user.py +6 -7
- polyaxon/_sdk/schemas/v1_user_access.py +17 -0
- polyaxon/_sdk/schemas/v1_user_email.py +1 -1
- polyaxon/_sdk/schemas/v1_user_singup.py +5 -5
- polyaxon/_sdk/schemas/v1_uuids.py +1 -1
- polyaxon/_sidecar/container/__init__.py +39 -20
- polyaxon/_sidecar/container/monitors/logs.py +10 -13
- polyaxon/_sidecar/ignore.py +0 -1
- polyaxon/_utils/cli_constants.py +2 -0
- polyaxon/_utils/fqn_utils.py +25 -2
- polyaxon/_utils/test_utils.py +2 -1
- polyaxon/pkg.py +1 -1
- polyaxon/schemas.py +1 -1
- {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/METADATA +43 -43
- {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/RECORD +269 -252
- {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/WHEEL +1 -1
- polyaxon/_sdk/schemas/v1_project_user_access.py +0 -10
- {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/LICENSE +0 -0
- {polyaxon-2.1.0rc9.dist-info → polyaxon-2.6.0.dist-info}/entry_points.txt +0 -0
- {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, StrictStr,
|
4
|
+
from clipped.compact.pydantic import Field, StrictStr, validate_call
|
5
5
|
|
6
6
|
from polyaxon._schemas.compatibility import V1Compatibility
|
7
7
|
from polyaxon._schemas.installation import V1Installation
|
@@ -11,7 +11,7 @@ from polyaxon.exceptions import ApiTypeError
|
|
11
11
|
|
12
12
|
|
13
13
|
class VersionsV1Api(BaseApi):
|
14
|
-
@
|
14
|
+
@validate_call
|
15
15
|
def get_compatibility(
|
16
16
|
self,
|
17
17
|
uuid: Annotated[StrictStr, Field(..., description="UUid")],
|
@@ -51,7 +51,7 @@ class VersionsV1Api(BaseApi):
|
|
51
51
|
kwargs["_return_http_data_only"] = True
|
52
52
|
return self.get_compatibility_with_http_info(uuid, version, service, **kwargs)
|
53
53
|
|
54
|
-
@
|
54
|
+
@validate_call
|
55
55
|
def get_compatibility_with_http_info(
|
56
56
|
self,
|
57
57
|
uuid: Annotated[StrictStr, Field(..., description="UUid")],
|
@@ -180,7 +180,7 @@ class VersionsV1Api(BaseApi):
|
|
180
180
|
_request_auth=_params.get("_request_auth"),
|
181
181
|
)
|
182
182
|
|
183
|
-
@
|
183
|
+
@validate_call
|
184
184
|
def get_installation(
|
185
185
|
self,
|
186
186
|
auth: Annotated[Optional[bool], Field(description="auth.")] = None,
|
@@ -214,7 +214,7 @@ class VersionsV1Api(BaseApi):
|
|
214
214
|
kwargs["_return_http_data_only"] = True
|
215
215
|
return self.get_installation_with_http_info(auth, **kwargs)
|
216
216
|
|
217
|
-
@
|
217
|
+
@validate_call
|
218
218
|
def get_installation_with_http_info(
|
219
219
|
self,
|
220
220
|
auth: Annotated[Optional[bool], Field(description="auth.")] = None,
|
@@ -333,7 +333,7 @@ class VersionsV1Api(BaseApi):
|
|
333
333
|
_request_auth=_params.get("_request_auth"),
|
334
334
|
)
|
335
335
|
|
336
|
-
@
|
336
|
+
@validate_call
|
337
337
|
def get_log_handler(self, **kwargs) -> V1LogHandler: # noqa: E501
|
338
338
|
"""Get log handler versions # noqa: E501
|
339
339
|
|
@@ -361,7 +361,7 @@ class VersionsV1Api(BaseApi):
|
|
361
361
|
kwargs["_return_http_data_only"] = True
|
362
362
|
return self.get_log_handler_with_http_info(**kwargs) # noqa: E501
|
363
363
|
|
364
|
-
@
|
364
|
+
@validate_call
|
365
365
|
def get_log_handler_with_http_info(self, **kwargs): # noqa: E501
|
366
366
|
"""Get log handler versions # noqa: E501
|
367
367
|
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import atexit
|
2
|
+
import logging
|
2
3
|
import re
|
3
4
|
|
4
5
|
from urllib.parse import quote
|
@@ -6,6 +7,9 @@ from urllib.parse import quote
|
|
6
7
|
from polyaxon._sdk.sync_client.api_client import ApiClient
|
7
8
|
from polyaxon.exceptions import ApiException
|
8
9
|
|
10
|
+
aiohttp_logger = logging.getLogger("aiohttp")
|
11
|
+
aiohttp_logger.setLevel(logging.ERROR)
|
12
|
+
|
9
13
|
|
10
14
|
class AsyncApiClient(ApiClient):
|
11
15
|
"""Generic Async API client for OpenAPI client library builds.
|
@@ -69,7 +69,6 @@ from polyaxon._sdk.schemas.v1_pipeline import V1Pipeline
|
|
69
69
|
from polyaxon._sdk.schemas.v1_preset import V1Preset
|
70
70
|
from polyaxon._sdk.schemas.v1_project import V1Project
|
71
71
|
from polyaxon._sdk.schemas.v1_project_settings import V1ProjectSettings
|
72
|
-
from polyaxon._sdk.schemas.v1_project_user_access import V1ProjectUserAccess
|
73
72
|
from polyaxon._sdk.schemas.v1_project_version import V1ProjectVersion
|
74
73
|
from polyaxon._sdk.schemas.v1_queue import V1Queue
|
75
74
|
from polyaxon._sdk.schemas.v1_run import V1Run
|
@@ -91,6 +90,7 @@ from polyaxon._sdk.schemas.v1_team_settings import V1TeamSettings
|
|
91
90
|
from polyaxon._sdk.schemas.v1_token import V1Token
|
92
91
|
from polyaxon._sdk.schemas.v1_trial_start import V1TrialStart
|
93
92
|
from polyaxon._sdk.schemas.v1_user import V1User
|
93
|
+
from polyaxon._sdk.schemas.v1_user_access import V1UserAccess
|
94
94
|
from polyaxon._sdk.schemas.v1_user_email import V1UserEmail
|
95
95
|
from polyaxon._sdk.schemas.v1_user_singup import V1UserSingup
|
96
96
|
from polyaxon._sdk.schemas.v1_uuids import V1Uuids
|
@@ -8,11 +8,11 @@ from clipped.types.uuids import UUIDStr
|
|
8
8
|
|
9
9
|
|
10
10
|
class V1Activity(BaseAllowSchemaModel):
|
11
|
-
actor: Optional[StrictStr]
|
12
|
-
owner: Optional[StrictStr]
|
13
|
-
created_at: Optional[datetime.datetime]
|
14
|
-
event_action: Optional[StrictStr]
|
15
|
-
event_subject: Optional[StrictStr]
|
16
|
-
object_name: Optional[StrictStr]
|
17
|
-
object_uuid: Optional[UUIDStr]
|
18
|
-
object_parent: Optional[StrictStr]
|
11
|
+
actor: Optional[StrictStr] = None
|
12
|
+
owner: Optional[StrictStr] = None
|
13
|
+
created_at: Optional[datetime.datetime] = None
|
14
|
+
event_action: Optional[StrictStr] = None
|
15
|
+
event_subject: Optional[StrictStr] = None
|
16
|
+
object_name: Optional[StrictStr] = None
|
17
|
+
object_uuid: Optional[UUIDStr] = None
|
18
|
+
object_parent: Optional[StrictStr] = None
|
@@ -6,22 +6,24 @@ from clipped.compact.pydantic import StrictStr
|
|
6
6
|
from clipped.config.schema import BaseAllowSchemaModel
|
7
7
|
from clipped.types.uuids import UUIDStr
|
8
8
|
|
9
|
-
from polyaxon._schemas.lifecycle import V1Statuses
|
9
|
+
from polyaxon._schemas.lifecycle import V1StatusCondition, V1Statuses
|
10
10
|
|
11
11
|
|
12
12
|
class V1Agent(BaseAllowSchemaModel):
|
13
|
-
uuid: Optional[UUIDStr]
|
14
|
-
name: Optional[StrictStr]
|
15
|
-
description: Optional[StrictStr]
|
16
|
-
tags: Optional[List[StrictStr]]
|
17
|
-
live_state: Optional[int]
|
18
|
-
namespace: Optional[StrictStr]
|
19
|
-
version_api: Optional[Dict[str, Any]]
|
20
|
-
version: Optional[StrictStr]
|
21
|
-
content: Optional[StrictStr]
|
22
|
-
created_at: Optional[datetime.datetime]
|
23
|
-
updated_at: Optional[datetime.datetime]
|
24
|
-
status: Optional[V1Statuses]
|
25
|
-
|
26
|
-
|
27
|
-
|
13
|
+
uuid: Optional[UUIDStr] = None
|
14
|
+
name: Optional[StrictStr] = None
|
15
|
+
description: Optional[StrictStr] = None
|
16
|
+
tags: Optional[List[StrictStr]] = None
|
17
|
+
live_state: Optional[int] = None
|
18
|
+
namespace: Optional[StrictStr] = None
|
19
|
+
version_api: Optional[Dict[str, Any]] = None
|
20
|
+
version: Optional[StrictStr] = None
|
21
|
+
content: Optional[StrictStr] = None
|
22
|
+
created_at: Optional[datetime.datetime] = None
|
23
|
+
updated_at: Optional[datetime.datetime] = None
|
24
|
+
status: Optional[V1Statuses] = None
|
25
|
+
status_conditions: Optional[List[V1StatusCondition]] = None
|
26
|
+
is_replica: Optional[bool] = None
|
27
|
+
is_ui_managed: Optional[bool] = None
|
28
|
+
settings: Optional[Dict[str, Any]] = None
|
29
|
+
stats: Optional[Dict[str, Any]] = None
|
@@ -9,7 +9,7 @@ from polyaxon._sdk.schemas.v1_agent_state_response_agent_state import (
|
|
9
9
|
|
10
10
|
|
11
11
|
class V1AgentStateResponse(BaseAllowSchemaModel):
|
12
|
-
status: Optional[V1Statuses]
|
13
|
-
state: Optional[V1AgentStateResponseAgentState]
|
14
|
-
live_state: Optional[int]
|
15
|
-
compatible_updates: Optional[Dict[str, Any]]
|
12
|
+
status: Optional[V1Statuses] = None
|
13
|
+
state: Optional[V1AgentStateResponseAgentState] = None
|
14
|
+
live_state: Optional[int] = None
|
15
|
+
compatible_updates: Optional[Dict[str, Any]] = None
|
@@ -4,13 +4,13 @@ from clipped.config.schema import BaseAllowSchemaModel
|
|
4
4
|
|
5
5
|
|
6
6
|
class V1AgentStateResponseAgentState(BaseAllowSchemaModel):
|
7
|
-
schedules: Optional[List]
|
8
|
-
hooks: Optional[List]
|
9
|
-
watchdogs: Optional[List]
|
10
|
-
tuners: Optional[List]
|
11
|
-
queued: Optional[List]
|
12
|
-
stopping: Optional[List]
|
13
|
-
deleting: Optional[List]
|
14
|
-
apply: Optional[List]
|
15
|
-
checks: Optional[List]
|
16
|
-
full: Optional[bool]
|
7
|
+
schedules: Optional[List] = None
|
8
|
+
hooks: Optional[List] = None
|
9
|
+
watchdogs: Optional[List] = None
|
10
|
+
tuners: Optional[List] = None
|
11
|
+
queued: Optional[List] = None
|
12
|
+
stopping: Optional[List] = None
|
13
|
+
deleting: Optional[List] = None
|
14
|
+
apply: Optional[List] = None
|
15
|
+
checks: Optional[List] = None
|
16
|
+
full: Optional[bool] = None
|
@@ -8,6 +8,6 @@ from polyaxon._schemas.lifecycle import V1StatusCondition
|
|
8
8
|
|
9
9
|
|
10
10
|
class V1AgentStatusBodyRequest(BaseAllowSchemaModel):
|
11
|
-
owner: Optional[StrictStr]
|
12
|
-
uuid: Optional[UUIDStr]
|
13
|
-
condition: Optional[V1StatusCondition]
|
11
|
+
owner: Optional[StrictStr] = None
|
12
|
+
uuid: Optional[UUIDStr] = None
|
13
|
+
condition: Optional[V1StatusCondition] = None
|
@@ -5,7 +5,7 @@ from clipped.config.schema import BaseAllowSchemaModel
|
|
5
5
|
|
6
6
|
|
7
7
|
class V1AnalyticsSpec(BaseAllowSchemaModel):
|
8
|
-
view: Optional[StrictStr]
|
9
|
-
trunc: Optional[StrictStr]
|
10
|
-
groupby: Optional[StrictStr]
|
11
|
-
frequency: Optional[StrictStr]
|
8
|
+
view: Optional[StrictStr] = None
|
9
|
+
trunc: Optional[StrictStr] = None
|
10
|
+
groupby: Optional[StrictStr] = None
|
11
|
+
frequency: Optional[StrictStr] = None
|
@@ -5,6 +5,6 @@ from clipped.config.schema import BaseAllowSchemaModel
|
|
5
5
|
|
6
6
|
|
7
7
|
class V1ArtifactTree(BaseAllowSchemaModel):
|
8
|
-
files: Optional[Dict[str, int]]
|
9
|
-
dirs: Optional[List[StrictStr]]
|
10
|
-
is_done: Optional[bool]
|
8
|
+
files: Optional[Dict[str, int]] = None
|
9
|
+
dirs: Optional[List[StrictStr]] = None
|
10
|
+
is_done: Optional[bool] = None
|
polyaxon/_sdk/schemas/v1_auth.py
CHANGED
@@ -8,6 +8,6 @@ from polyaxon._flow import V1CloningKind
|
|
8
8
|
|
9
9
|
|
10
10
|
class V1Cloning(BaseAllowSchemaModel):
|
11
|
-
uuid: Optional[UUIDStr]
|
12
|
-
name: Optional[StrictStr]
|
13
|
-
kind: Optional[V1CloningKind]
|
11
|
+
uuid: Optional[UUIDStr] = None
|
12
|
+
name: Optional[StrictStr] = None
|
13
|
+
kind: Optional[V1CloningKind] = None
|
@@ -9,12 +9,12 @@ from vents.providers.kinds import ProviderKind
|
|
9
9
|
|
10
10
|
|
11
11
|
class V1ConnectionResponse(BaseAllowSchemaModel):
|
12
|
-
uuid: Optional[UUIDStr]
|
13
|
-
name: Optional[StrictStr]
|
14
|
-
agent: Optional[StrictStr]
|
15
|
-
description: Optional[StrictStr]
|
16
|
-
tags: Optional[List[StrictStr]]
|
17
|
-
created_at: Optional[datetime.datetime]
|
18
|
-
updated_at: Optional[datetime.datetime]
|
19
|
-
live_state: Optional[int]
|
20
|
-
kind: Optional[ProviderKind]
|
12
|
+
uuid: Optional[UUIDStr] = None
|
13
|
+
name: Optional[StrictStr] = None
|
14
|
+
agent: Optional[StrictStr] = None
|
15
|
+
description: Optional[StrictStr] = None
|
16
|
+
tags: Optional[List[StrictStr]] = None
|
17
|
+
created_at: Optional[datetime.datetime] = None
|
18
|
+
updated_at: Optional[datetime.datetime] = None
|
19
|
+
live_state: Optional[int] = None
|
20
|
+
kind: Optional[ProviderKind] = None
|
@@ -10,12 +10,12 @@ from polyaxon._sdk.schemas.v1_dashboard_spec import V1DashboardSpec
|
|
10
10
|
|
11
11
|
|
12
12
|
class V1Dashboard(BaseAllowSchemaModel):
|
13
|
-
uuid: Optional[UUIDStr]
|
14
|
-
name: Optional[StrictStr]
|
15
|
-
description: Optional[StrictStr]
|
16
|
-
tags: Optional[List[StrictStr]]
|
17
|
-
live_state: Optional[int]
|
18
|
-
spec: Optional[V1DashboardSpec]
|
19
|
-
org_level: Optional[bool]
|
20
|
-
created_at: Optional[datetime.datetime]
|
21
|
-
updated_at: Optional[datetime.datetime]
|
13
|
+
uuid: Optional[UUIDStr] = None
|
14
|
+
name: Optional[StrictStr] = None
|
15
|
+
description: Optional[StrictStr] = None
|
16
|
+
tags: Optional[List[StrictStr]] = None
|
17
|
+
live_state: Optional[int] = None
|
18
|
+
spec: Optional[V1DashboardSpec] = None
|
19
|
+
org_level: Optional[bool] = None
|
20
|
+
created_at: Optional[datetime.datetime] = None
|
21
|
+
updated_at: Optional[datetime.datetime] = None
|
@@ -6,4 +6,8 @@ from polyaxon._sdk.schemas.v1_section_spec import V1SectionSpec
|
|
6
6
|
|
7
7
|
|
8
8
|
class V1DashboardSpec(BaseAllowSchemaModel):
|
9
|
-
|
9
|
+
xaxis: Optional[str] = None
|
10
|
+
smoothing: Optional[int] = None
|
11
|
+
ignore_outliers: Optional[bool] = None
|
12
|
+
sample_size: Optional[int] = None
|
13
|
+
sections: Optional[List[V1SectionSpec]] = None
|
@@ -8,10 +8,10 @@ from polyaxon._schemas.lifecycle import V1StatusCondition
|
|
8
8
|
|
9
9
|
|
10
10
|
class V1EntityNotificationBody(BaseAllowSchemaModel):
|
11
|
-
namespace: Optional[StrictStr]
|
12
|
-
owner: Optional[StrictStr]
|
13
|
-
project: Optional[StrictStr]
|
14
|
-
uuid: Optional[UUIDStr]
|
15
|
-
name: Optional[StrictStr]
|
16
|
-
condition: Optional[V1StatusCondition]
|
17
|
-
connections: Optional[List[StrictStr]]
|
11
|
+
namespace: Optional[StrictStr] = None
|
12
|
+
owner: Optional[StrictStr] = None
|
13
|
+
project: Optional[StrictStr] = None
|
14
|
+
uuid: Optional[UUIDStr] = None
|
15
|
+
name: Optional[StrictStr] = None
|
16
|
+
condition: Optional[V1StatusCondition] = None
|
17
|
+
connections: Optional[List[StrictStr]] = None
|
@@ -7,8 +7,8 @@ from polyaxon._schemas.lifecycle import V1StageCondition
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1EntityStageBodyRequest(BaseAllowSchemaModel):
|
10
|
-
owner: Optional[StrictStr]
|
11
|
-
entity: Optional[StrictStr]
|
12
|
-
kind: Optional[StrictStr]
|
13
|
-
name: Optional[StrictStr]
|
14
|
-
condition: Optional[V1StageCondition]
|
10
|
+
owner: Optional[StrictStr] = None
|
11
|
+
entity: Optional[StrictStr] = None
|
12
|
+
kind: Optional[StrictStr] = None
|
13
|
+
name: Optional[StrictStr] = None
|
14
|
+
condition: Optional[V1StageCondition] = None
|
@@ -8,8 +8,8 @@ from polyaxon._schemas.lifecycle import V1StatusCondition
|
|
8
8
|
|
9
9
|
|
10
10
|
class V1EntityStatusBodyRequest(BaseAllowSchemaModel):
|
11
|
-
owner: Optional[StrictStr]
|
12
|
-
project: Optional[StrictStr]
|
13
|
-
uuid: Optional[UUIDStr]
|
14
|
-
condition: Optional[V1StatusCondition]
|
15
|
-
force: Optional[bool]
|
11
|
+
owner: Optional[StrictStr] = None
|
12
|
+
project: Optional[StrictStr] = None
|
13
|
+
uuid: Optional[UUIDStr] = None
|
14
|
+
condition: Optional[V1StatusCondition] = None
|
15
|
+
force: Optional[bool] = None
|
@@ -4,8 +4,8 @@ from clipped.config.schema import BaseAllowSchemaModel
|
|
4
4
|
|
5
5
|
|
6
6
|
class V1EventsResponse(BaseAllowSchemaModel):
|
7
|
-
data: Optional[List[Dict[str, Any]]]
|
7
|
+
data: Optional[List[Dict[str, Any]]] = None
|
8
8
|
|
9
9
|
|
10
10
|
class V1MultiEventsResponse(BaseAllowSchemaModel):
|
11
|
-
data: Optional[Dict[str, Any]]
|
11
|
+
data: Optional[Dict[str, Any]] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_activity import V1Activity
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListActivitiesResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Activity]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Activity]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_agent import V1Agent
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListAgentsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Agent]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Agent]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -5,7 +5,7 @@ from clipped.config.schema import BaseAllowSchemaModel
|
|
5
5
|
|
6
6
|
|
7
7
|
class V1ListBookmarksResponse(BaseAllowSchemaModel):
|
8
|
-
count: Optional[int]
|
9
|
-
results: Optional[List[Dict[str, Any]]]
|
10
|
-
previous: Optional[StrictStr]
|
11
|
-
next: Optional[StrictStr]
|
8
|
+
count: Optional[int] = None
|
9
|
+
results: Optional[List[Dict[str, Any]]] = None
|
10
|
+
previous: Optional[StrictStr] = None
|
11
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_connection_response import V1ConnectionResponse
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListConnectionsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1ConnectionResponse]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1ConnectionResponse]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_dashboard import V1Dashboard
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListDashboardsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Dashboard]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Dashboard]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_organization_member import V1OrganizationMember
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListOrganizationMembersResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1OrganizationMember]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1OrganizationMember]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_organization import V1Organization
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListOrganizationsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Organization]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Organization]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_preset import V1Preset
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListPresetsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Preset]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Preset]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_project_version import V1ProjectVersion
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListProjectVersionsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1ProjectVersion]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1ProjectVersion]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_project import V1Project
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListProjectsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Project]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Project]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_queue import V1Queue
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListQueuesResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Queue]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Queue]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from traceml.artifacts import V1RunArtifact
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListRunArtifactsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1RunArtifact]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1RunArtifact]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_run_connection import V1RunConnection
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListRunConnectionsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1RunConnection]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1RunConnection]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_run_edge import V1RunEdge
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListRunEdgesResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1RunEdge]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1RunEdge]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_run import V1Run
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListRunsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Run]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Run]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_search import V1Search
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListSearchesResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Search]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Search]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_service_account import V1ServiceAccount
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListServiceAccountsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1ServiceAccount]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1ServiceAccount]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_tag import V1Tag
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListTagsResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1Tag]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1Tag]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|
@@ -7,7 +7,7 @@ from polyaxon._sdk.schemas.v1_team_member import V1TeamMember
|
|
7
7
|
|
8
8
|
|
9
9
|
class V1ListTeamMembersResponse(BaseAllowSchemaModel):
|
10
|
-
count: Optional[int]
|
11
|
-
results: Optional[List[V1TeamMember]]
|
12
|
-
previous: Optional[StrictStr]
|
13
|
-
next: Optional[StrictStr]
|
10
|
+
count: Optional[int] = None
|
11
|
+
results: Optional[List[V1TeamMember]] = None
|
12
|
+
previous: Optional[StrictStr] = None
|
13
|
+
next: Optional[StrictStr] = None
|