platform-api-python-client 4.10.0__py3-none-any.whl → 4.13.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.
- platform_api_python_client/__init__.py +2 -4
- platform_api_python_client/api/external_api.py +12 -793
- platform_api_python_client/api_client.py +1 -1
- platform_api_python_client/configuration.py +1 -1
- platform_api_python_client/models/__init__.py +1 -3
- platform_api_python_client/models/create_inference_v3_deployment_request.py +15 -2
- platform_api_python_client/models/create_job_deployment_request.py +10 -1
- platform_api_python_client/models/get_inference_v3_deployment_response.py +15 -2
- platform_api_python_client/models/get_job_deployment_response.py +10 -1
- platform_api_python_client/models/hardware_instance_response.py +1 -15
- platform_api_python_client/models/metric.py +1 -0
- platform_api_python_client/models/{api_key_request.py → metrics_config.py} +18 -8
- {platform_api_python_client-4.10.0.dist-info → platform_api_python_client-4.13.0.dist-info}/METADATA +1 -1
- {platform_api_python_client-4.10.0.dist-info → platform_api_python_client-4.13.0.dist-info}/RECORD +16 -18
- platform_api_python_client/models/api_key_response.py +0 -92
- platform_api_python_client/models/list_api_key_response.py +0 -95
- {platform_api_python_client-4.10.0.dist-info → platform_api_python_client-4.13.0.dist-info}/WHEEL +0 -0
- {platform_api_python_client-4.10.0.dist-info → platform_api_python_client-4.13.0.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "4.
|
|
17
|
+
__version__ = "4.13.0"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from platform_api_python_client.api.external_api import EXTERNALApi
|
|
@@ -31,8 +31,6 @@ from platform_api_python_client.exceptions import ApiAttributeError
|
|
|
31
31
|
from platform_api_python_client.exceptions import ApiException
|
|
32
32
|
|
|
33
33
|
# import models into sdk package
|
|
34
|
-
from platform_api_python_client.models.api_key_request import APIKeyRequest
|
|
35
|
-
from platform_api_python_client.models.api_key_response import APIKeyResponse
|
|
36
34
|
from platform_api_python_client.models.backend_protocol import BackendProtocol
|
|
37
35
|
from platform_api_python_client.models.c_serve_recipe_perf import CServeRecipePerf
|
|
38
36
|
from platform_api_python_client.models.c_serve_recipe_response import CServeRecipeResponse
|
|
@@ -80,7 +78,6 @@ from platform_api_python_client.models.http_validation_error import HTTPValidati
|
|
|
80
78
|
from platform_api_python_client.models.hardware_instance_response import HardwareInstanceResponse
|
|
81
79
|
from platform_api_python_client.models.image_pull_secret_credentials import ImagePullSecretCredentials
|
|
82
80
|
from platform_api_python_client.models.invite_user_request import InviteUserRequest
|
|
83
|
-
from platform_api_python_client.models.list_api_key_response import ListAPIKeyResponse
|
|
84
81
|
from platform_api_python_client.models.list_c_serve_recipe_response import ListCServeRecipeResponse
|
|
85
82
|
from platform_api_python_client.models.list_cluster_capacity_response import ListClusterCapacityResponse
|
|
86
83
|
from platform_api_python_client.models.list_daily_bill_response import ListDailyBillResponse
|
|
@@ -91,6 +88,7 @@ from platform_api_python_client.models.list_hardware_instance_response import Li
|
|
|
91
88
|
from platform_api_python_client.models.list_prebuilt_image_response import ListPrebuiltImageResponse
|
|
92
89
|
from platform_api_python_client.models.list_user_vault_items_response import ListUserVaultItemsResponse
|
|
93
90
|
from platform_api_python_client.models.metric import Metric
|
|
91
|
+
from platform_api_python_client.models.metrics_config import MetricsConfig
|
|
94
92
|
from platform_api_python_client.models.pod_details import PodDetails
|
|
95
93
|
from platform_api_python_client.models.pod_status import PodStatus
|
|
96
94
|
from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse
|