platform-api-python-client 4.8.4__py3-none-any.whl → 4.9.7__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 +5 -4
- platform_api_python_client/api/external_api.py +129 -420
- platform_api_python_client/api_client.py +1 -1
- platform_api_python_client/configuration.py +1 -1
- platform_api_python_client/models/__init__.py +4 -3
- platform_api_python_client/models/config_file_mount.py +99 -0
- platform_api_python_client/models/create_c_serve_v3_deployment_request.py +13 -2
- platform_api_python_client/models/create_inference_v3_deployment_request.py +29 -2
- platform_api_python_client/models/{create_rag_deployment_request.py → create_job_deployment_request.py} +32 -57
- platform_api_python_client/models/{create_rag_deployment_response.py → create_job_deployment_response.py} +4 -4
- platform_api_python_client/models/deployment_type.py +1 -0
- platform_api_python_client/models/get_c_serve_v3_deployment_response.py +9 -3
- platform_api_python_client/models/get_inference_v3_deployment_response.py +18 -3
- platform_api_python_client/models/{get_rag_deployment_response.py → get_job_deployment_response.py} +35 -48
- platform_api_python_client/models/pod_status.py +2 -0
- platform_api_python_client/models/service_status.py +4 -0
- {platform_api_python_client-4.8.4.dist-info → platform_api_python_client-4.9.7.dist-info}/METADATA +1 -1
- {platform_api_python_client-4.8.4.dist-info → platform_api_python_client-4.9.7.dist-info}/RECORD +20 -19
- {platform_api_python_client-4.8.4.dist-info → platform_api_python_client-4.9.7.dist-info}/WHEEL +0 -0
- {platform_api_python_client-4.8.4.dist-info → platform_api_python_client-4.9.7.dist-info}/top_level.txt +0 -0
platform_api_python_client/models/{get_rag_deployment_response.py → get_job_deployment_response.py}
RENAMED
|
@@ -18,17 +18,17 @@ import re # noqa: F401
|
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
-
from platform_api_python_client.models.c_serve_v2_recipe import CServeV2Recipe
|
|
24
23
|
from platform_api_python_client.models.deployment_status import DeploymentStatus
|
|
25
24
|
from platform_api_python_client.models.deployment_type import DeploymentType
|
|
25
|
+
from platform_api_python_client.models.image_pull_secret_credentials import ImagePullSecretCredentials
|
|
26
26
|
from typing import Optional, Set
|
|
27
27
|
from typing_extensions import Self
|
|
28
28
|
|
|
29
|
-
class
|
|
29
|
+
class GetJobDeploymentResponse(BaseModel):
|
|
30
30
|
"""
|
|
31
|
-
|
|
31
|
+
GetJobDeploymentResponse
|
|
32
32
|
""" # noqa: E501
|
|
33
33
|
creator_email: StrictStr
|
|
34
34
|
cluster_id: StrictInt
|
|
@@ -42,18 +42,14 @@ class GetRagDeploymentResponse(BaseModel):
|
|
|
42
42
|
hardware_instance_id: StrictInt
|
|
43
43
|
revision_number: StrictInt
|
|
44
44
|
user_annotations: Optional[Dict[str, StrictStr]] = None
|
|
45
|
-
recipe: CServeV2Recipe
|
|
46
|
-
cserve_version: Optional[StrictStr] = None
|
|
47
|
-
llm_model: StrictStr
|
|
48
|
-
centml_api_key: StrictStr
|
|
49
|
-
min_scale: Optional[StrictInt] = 1
|
|
50
|
-
max_scale: Optional[StrictInt] = 1
|
|
51
|
-
initial_scale: Optional[StrictInt] = None
|
|
52
|
-
endpoint_certificate_authority: Optional[StrictStr] = None
|
|
53
|
-
endpoint_bearer_token: Optional[StrictStr] = None
|
|
54
|
-
concurrency: Optional[StrictInt] = None
|
|
55
45
|
env_vars: Optional[Dict[str, StrictStr]] = None
|
|
56
|
-
|
|
46
|
+
command: Optional[List[StrictStr]] = None
|
|
47
|
+
args: Optional[List[StrictStr]] = None
|
|
48
|
+
completions: Optional[StrictInt] = 1
|
|
49
|
+
parallelism: Optional[StrictInt] = 1
|
|
50
|
+
image_pull_secret_credentials: Optional[ImagePullSecretCredentials] = None
|
|
51
|
+
enable_logging: Optional[StrictBool] = True
|
|
52
|
+
__properties: ClassVar[List[str]] = ["creator_email", "cluster_id", "id", "name", "endpoint_url", "image_url", "type", "status", "created_at", "hardware_instance_id", "revision_number", "user_annotations", "env_vars", "command", "args", "completions", "parallelism", "image_pull_secret_credentials", "enable_logging"]
|
|
57
53
|
|
|
58
54
|
model_config = ConfigDict(
|
|
59
55
|
populate_by_name=True,
|
|
@@ -73,7 +69,7 @@ class GetRagDeploymentResponse(BaseModel):
|
|
|
73
69
|
|
|
74
70
|
@classmethod
|
|
75
71
|
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
76
|
-
"""Create an instance of
|
|
72
|
+
"""Create an instance of GetJobDeploymentResponse from a JSON string"""
|
|
77
73
|
return cls.from_dict(json.loads(json_str))
|
|
78
74
|
|
|
79
75
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -94,9 +90,9 @@ class GetRagDeploymentResponse(BaseModel):
|
|
|
94
90
|
exclude=excluded_fields,
|
|
95
91
|
exclude_none=True,
|
|
96
92
|
)
|
|
97
|
-
# override the default output from pydantic by calling `to_dict()` of
|
|
98
|
-
if self.
|
|
99
|
-
_dict['
|
|
93
|
+
# override the default output from pydantic by calling `to_dict()` of image_pull_secret_credentials
|
|
94
|
+
if self.image_pull_secret_credentials:
|
|
95
|
+
_dict['image_pull_secret_credentials'] = self.image_pull_secret_credentials.to_dict()
|
|
100
96
|
# set to None if image_url (nullable) is None
|
|
101
97
|
# and model_fields_set contains the field
|
|
102
98
|
if self.image_url is None and "image_url" in self.model_fields_set:
|
|
@@ -107,36 +103,31 @@ class GetRagDeploymentResponse(BaseModel):
|
|
|
107
103
|
if self.user_annotations is None and "user_annotations" in self.model_fields_set:
|
|
108
104
|
_dict['user_annotations'] = None
|
|
109
105
|
|
|
110
|
-
# set to None if
|
|
106
|
+
# set to None if env_vars (nullable) is None
|
|
111
107
|
# and model_fields_set contains the field
|
|
112
|
-
if self.
|
|
113
|
-
_dict['
|
|
108
|
+
if self.env_vars is None and "env_vars" in self.model_fields_set:
|
|
109
|
+
_dict['env_vars'] = None
|
|
114
110
|
|
|
115
|
-
# set to None if
|
|
111
|
+
# set to None if command (nullable) is None
|
|
116
112
|
# and model_fields_set contains the field
|
|
117
|
-
if self.
|
|
118
|
-
_dict['
|
|
113
|
+
if self.command is None and "command" in self.model_fields_set:
|
|
114
|
+
_dict['command'] = None
|
|
119
115
|
|
|
120
|
-
# set to None if
|
|
116
|
+
# set to None if args (nullable) is None
|
|
121
117
|
# and model_fields_set contains the field
|
|
122
|
-
if self.
|
|
123
|
-
_dict['
|
|
118
|
+
if self.args is None and "args" in self.model_fields_set:
|
|
119
|
+
_dict['args'] = None
|
|
124
120
|
|
|
125
|
-
# set to None if
|
|
121
|
+
# set to None if image_pull_secret_credentials (nullable) is None
|
|
126
122
|
# and model_fields_set contains the field
|
|
127
|
-
if self.
|
|
128
|
-
_dict['
|
|
129
|
-
|
|
130
|
-
# set to None if concurrency (nullable) is None
|
|
131
|
-
# and model_fields_set contains the field
|
|
132
|
-
if self.concurrency is None and "concurrency" in self.model_fields_set:
|
|
133
|
-
_dict['concurrency'] = None
|
|
123
|
+
if self.image_pull_secret_credentials is None and "image_pull_secret_credentials" in self.model_fields_set:
|
|
124
|
+
_dict['image_pull_secret_credentials'] = None
|
|
134
125
|
|
|
135
126
|
return _dict
|
|
136
127
|
|
|
137
128
|
@classmethod
|
|
138
129
|
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
139
|
-
"""Create an instance of
|
|
130
|
+
"""Create an instance of GetJobDeploymentResponse from a dict"""
|
|
140
131
|
if obj is None:
|
|
141
132
|
return None
|
|
142
133
|
|
|
@@ -156,17 +147,13 @@ class GetRagDeploymentResponse(BaseModel):
|
|
|
156
147
|
"hardware_instance_id": obj.get("hardware_instance_id"),
|
|
157
148
|
"revision_number": obj.get("revision_number"),
|
|
158
149
|
"user_annotations": obj.get("user_annotations"),
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"endpoint_certificate_authority": obj.get("endpoint_certificate_authority"),
|
|
167
|
-
"endpoint_bearer_token": obj.get("endpoint_bearer_token"),
|
|
168
|
-
"concurrency": obj.get("concurrency"),
|
|
169
|
-
"env_vars": obj.get("env_vars")
|
|
150
|
+
"env_vars": obj.get("env_vars"),
|
|
151
|
+
"command": obj.get("command"),
|
|
152
|
+
"args": obj.get("args"),
|
|
153
|
+
"completions": obj.get("completions") if obj.get("completions") is not None else 1,
|
|
154
|
+
"parallelism": obj.get("parallelism") if obj.get("parallelism") is not None else 1,
|
|
155
|
+
"image_pull_secret_credentials": ImagePullSecretCredentials.from_dict(obj["image_pull_secret_credentials"]) if obj.get("image_pull_secret_credentials") is not None else None,
|
|
156
|
+
"enable_logging": obj.get("enable_logging") if obj.get("enable_logging") is not None else True
|
|
170
157
|
})
|
|
171
158
|
return _obj
|
|
172
159
|
|
|
@@ -31,12 +31,16 @@ class ServiceStatus(str, Enum):
|
|
|
31
31
|
SCALINGUP = 'ScalingUp'
|
|
32
32
|
PULLING = 'Pulling'
|
|
33
33
|
INITIALIZING = 'Initializing'
|
|
34
|
+
CLEANEDUP = 'CleanedUp'
|
|
34
35
|
ERROR = 'Error'
|
|
35
36
|
CREATECONTAINERCONFIGERROR = 'CreateContainerConfigError'
|
|
36
37
|
CRASHLOOPBACKOFF = 'CrashLoopBackOff'
|
|
37
38
|
IMAGEPULLBACKOFF = 'ImagePullBackOff'
|
|
38
39
|
PROGRESSDEADLINEEXCEEDED = 'ProgressDeadlineExceeded'
|
|
39
40
|
NOTREADY = 'NotReady'
|
|
41
|
+
COMPLETED = 'Completed'
|
|
42
|
+
FAILED = 'Failed'
|
|
43
|
+
SCALEDTOZERO = 'ScaledToZero'
|
|
40
44
|
UNKNOWN = 'Unknown'
|
|
41
45
|
|
|
42
46
|
@classmethod
|
{platform_api_python_client-4.8.4.dist-info → platform_api_python_client-4.9.7.dist-info}/RECORD
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
platform_api_python_client/__init__.py,sha256=
|
|
2
|
-
platform_api_python_client/api_client.py,sha256=
|
|
1
|
+
platform_api_python_client/__init__.py,sha256=uajg21IusG6sQrdRU_ES3-VRxCn4IwgbzFd9RxzrmIM,8080
|
|
2
|
+
platform_api_python_client/api_client.py,sha256=n-mlNjX_ckv2RFk6r0gnSfED_6kGbPG-d0dEDfxw09k,27553
|
|
3
3
|
platform_api_python_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
platform_api_python_client/configuration.py,sha256=
|
|
4
|
+
platform_api_python_client/configuration.py,sha256=03YocFdOW2P7Q2uJTTVW4PcHZPmIbJZlgpjgAIELcXI,15335
|
|
5
5
|
platform_api_python_client/exceptions.py,sha256=SgBMBmRBD5JyEJj5ZiSQRbiOs4IVPOFZMGKX_fhPd58,5986
|
|
6
6
|
platform_api_python_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
platform_api_python_client/rest.py,sha256=U514C8b2RXn4u0w7VpOFXeSaArP6_wuMCf8-G5xCbyk,9438
|
|
8
8
|
platform_api_python_client/api/__init__.py,sha256=8FSPlQzadbgpFR5KYbpbN0DgPRWqOZkfooMstj2XcHg,116
|
|
9
|
-
platform_api_python_client/api/external_api.py,sha256=
|
|
10
|
-
platform_api_python_client/models/__init__.py,sha256
|
|
9
|
+
platform_api_python_client/api/external_api.py,sha256=0TRHSgW4ky6ZytkCTWCkqVwKOLNWvIfvhROdsMCQ6qo,508649
|
|
10
|
+
platform_api_python_client/models/__init__.py,sha256=-X99VH0or9CNJny0BmSx4yLyZzi-37G72Dsq1POWuuI,7360
|
|
11
11
|
platform_api_python_client/models/api_key_request.py,sha256=p4bkyCVMkcyyx72ZQnfRMC65wwb2DT4qT6QKYaaO7rA,2482
|
|
12
12
|
platform_api_python_client/models/api_key_response.py,sha256=7yr2p-Y_KAMZ9RomPR7AlOJK20RlZz4IZJHBKyrI3ww,2661
|
|
13
13
|
platform_api_python_client/models/backend_protocol.py,sha256=o0t9wUHBBCBHB_Dvqcossc9X9gT_7yjikvAA6NBHnjs,764
|
|
@@ -15,19 +15,20 @@ platform_api_python_client/models/c_serve_recipe_perf.py,sha256=x23e783A-Pj-2soc
|
|
|
15
15
|
platform_api_python_client/models/c_serve_recipe_response.py,sha256=NUAnNbshCSnpru8e7AzSAGOQhJpj4BXSNT964oDBYa0,3584
|
|
16
16
|
platform_api_python_client/models/c_serve_v2_recipe.py,sha256=HO6Jr0muyuCp9nU2ZxbrCk53-D12hq5Lv_yJr26f63U,3628
|
|
17
17
|
platform_api_python_client/models/cluster_capacity_response.py,sha256=NVW8msPdsm_M6cpALTRqoB3GLQKVzzq33IHnqRImnNI,3310
|
|
18
|
+
platform_api_python_client/models/config_file_mount.py,sha256=Mf_i6z78Bg_aHY3Yjcg1KBZ3fPTcfDHliHr92uv9lOQ,3162
|
|
18
19
|
platform_api_python_client/models/create_c_serve_v2_deployment_request.py,sha256=EE55KUq1qDhMehRteSDmaaD-YzLo5lKTDEyMUsxE70o,6527
|
|
19
20
|
platform_api_python_client/models/create_c_serve_v2_deployment_response.py,sha256=Yffp1OzV_Vk8IMkvgAiU3FCZl9i9BA5PvBHIhCz4Q5E,2776
|
|
20
|
-
platform_api_python_client/models/create_c_serve_v3_deployment_request.py,sha256=
|
|
21
|
+
platform_api_python_client/models/create_c_serve_v3_deployment_request.py,sha256=V--8fTgKaLjOfipE-PdviCbqiKcSdfVxj2w2IQK9pcA,8657
|
|
21
22
|
platform_api_python_client/models/create_c_serve_v3_deployment_response.py,sha256=rlm7SL0bUaxeNhKKl6g--muIch4Z288-xAYGOENx0PM,2776
|
|
22
23
|
platform_api_python_client/models/create_compute_deployment_request.py,sha256=yOjalch4ZE-8GZLvBR-vZtOO5C23VA_YgpBMUlBWIBU,4145
|
|
23
24
|
platform_api_python_client/models/create_compute_deployment_response.py,sha256=RZLbCr7WpiMufWX7xmka1HNjBXnOi2GUE4gPuc5zpak,3200
|
|
24
25
|
platform_api_python_client/models/create_inference_deployment_request.py,sha256=YNPRKEeYOiXdZdwR7AAu7ZAnw8DypiqOTtdu9OaLrqE,6481
|
|
25
26
|
platform_api_python_client/models/create_inference_deployment_response.py,sha256=iYHJMG7ke5DJqvmaBsrPDYa1CwBNBnACwYEo2-0wVyE,2780
|
|
26
|
-
platform_api_python_client/models/create_inference_v3_deployment_request.py,sha256=
|
|
27
|
+
platform_api_python_client/models/create_inference_v3_deployment_request.py,sha256=dJHVJaKOcv3_s_obGWh4SgAFBZxl568elqGlW8yioLg,10557
|
|
28
|
+
platform_api_python_client/models/create_job_deployment_request.py,sha256=z4HfQkdWSEX39tGeZMqfuewg6gdk4fWnAsFKa4lg6Lc,5733
|
|
29
|
+
platform_api_python_client/models/create_job_deployment_response.py,sha256=1ObJIUdA4IR2ztQws8NMF3T9G8BfTEvqj7t9abtmIro,2756
|
|
27
30
|
platform_api_python_client/models/create_organization_request.py,sha256=2p0TnpMk_mOfMkhUL-k6ShZMoC146QFBdY8l47bx4i8,2530
|
|
28
31
|
platform_api_python_client/models/create_organization_response.py,sha256=a0jU9v0OiuB2oWbS9eTRFOtXtIxNLHDIcaLY88GNEb8,2591
|
|
29
|
-
platform_api_python_client/models/create_rag_deployment_request.py,sha256=_SOJ6-Tm5MQovdZzhPmPSvaUfSeqxtg5rDWB3l8cUUM,6811
|
|
30
|
-
platform_api_python_client/models/create_rag_deployment_response.py,sha256=er4HEZMfGTLJyAePcssohGtF30NYeP0tvMxmSP02axk,2756
|
|
31
32
|
platform_api_python_client/models/create_url_request.py,sha256=Fo0iR28WqpiKmKjvNfvjTsmcJtQHlILo38tKgGYBjE8,2595
|
|
32
33
|
platform_api_python_client/models/create_url_response.py,sha256=B6znzBU-OlEDfUjJnF1_lb33wMiCvCDSG7n8fKHprMg,2569
|
|
33
34
|
platform_api_python_client/models/credits_response.py,sha256=A7hbY92nGYnYf1vAF0lfww9EROKNWiYkhQ5VyXpxyUE,2542
|
|
@@ -37,11 +38,11 @@ platform_api_python_client/models/deployment_status.py,sha256=y4ffT58ckTFmEeg1qF
|
|
|
37
38
|
platform_api_python_client/models/deployment_status_request.py,sha256=Is7Z-UWvRbW2y5wy1e5_IewU5MFrUR2tqrKbwlVoT3o,2607
|
|
38
39
|
platform_api_python_client/models/deployment_status_response.py,sha256=zYoXBTC0bq4LUzSChVe2J1y_ioXApNUZfap4Jeno5JI,4413
|
|
39
40
|
platform_api_python_client/models/deployment_status_v3_response.py,sha256=QnofPuSO2CdkIKyiKa8F0m9cKI6QOIOGTmbPKqSSm5Y,4754
|
|
40
|
-
platform_api_python_client/models/deployment_type.py,sha256=
|
|
41
|
+
platform_api_python_client/models/deployment_type.py,sha256=zpqoO6vFXJ3xSlw5Sz6EFLe31ovKHxhonAvgfwRwqqk,1073
|
|
41
42
|
platform_api_python_client/models/deployment_usage.py,sha256=EaFCsDd8UMPpYILnDvdXH7jWulAEb1Cxwt93KEtgqE0,3103
|
|
42
43
|
platform_api_python_client/models/deployment_usage_value.py,sha256=-_2hhTFc3mVf4sCgoEND5COVch3XcVWRyrsPVgoRXj8,2639
|
|
43
44
|
platform_api_python_client/models/get_c_serve_v2_deployment_response.py,sha256=df0qyvJF-kPeKoNc1g0NJw12QrtGky-3Xw9q1OU8lDY,6903
|
|
44
|
-
platform_api_python_client/models/get_c_serve_v3_deployment_response.py,sha256=
|
|
45
|
+
platform_api_python_client/models/get_c_serve_v3_deployment_response.py,sha256=vEeMFxDFwxYQE8ZNKsRaIPTlbwrWY9biw7ZXYgtGH8o,8159
|
|
45
46
|
platform_api_python_client/models/get_cluster_response.py,sha256=bwPFhPGmHvf2onk7kiU5U7cJb9adbeCPfrKb6yvOqFA,3006
|
|
46
47
|
platform_api_python_client/models/get_compute_deployment_response.py,sha256=Ui5qW7hMaksj3eVX-3ITNc-SNCtw0yJ_UCitkEZVdac,5593
|
|
47
48
|
platform_api_python_client/models/get_deployment_log_response.py,sha256=FZ0mdef4fPyvb0wviSnSesFOJqnhKRATLVRT7E_K_Ag,2924
|
|
@@ -49,8 +50,8 @@ platform_api_python_client/models/get_deployment_response.py,sha256=ubyD-CAgKZk4
|
|
|
49
50
|
platform_api_python_client/models/get_deployment_revision_response.py,sha256=jTx_G8JCeKbgwmbylM3uiPNtGoCPpwjN5KMkFuC9BS8,3778
|
|
50
51
|
platform_api_python_client/models/get_deployment_usage_response.py,sha256=RnEJqDaIFVjuHVU26EScvLICK9tDVFj6hQh_U0yMBdg,3031
|
|
51
52
|
platform_api_python_client/models/get_inference_deployment_response.py,sha256=_Lz_hJS8Cw_NDeR5KD_o3nBcUG4X3_OiXGiT9cn0tJ0,7482
|
|
52
|
-
platform_api_python_client/models/get_inference_v3_deployment_response.py,sha256=
|
|
53
|
-
platform_api_python_client/models/
|
|
53
|
+
platform_api_python_client/models/get_inference_v3_deployment_response.py,sha256=9foxK5nYW54mj64rHpcHXqQyongYFWMBKFyCyoCHIYQ,10746
|
|
54
|
+
platform_api_python_client/models/get_job_deployment_response.py,sha256=3ggV_AtQ6hL3t66kF4gtPXIF28C6U8rrdVftm-Egg9o,6630
|
|
54
55
|
platform_api_python_client/models/gpu_type_capacity.py,sha256=KdNy4RJB8JIstVTiB4qsY-MAK7nHsKVTGe-kTMwz_XA,3101
|
|
55
56
|
platform_api_python_client/models/hardware_instance_response.py,sha256=89qNY1wVusuUYSymYFJxo-64cCwtkaHcBYZzL4JeyLo,4161
|
|
56
57
|
platform_api_python_client/models/http_validation_error.py,sha256=LCSb4Ct_DLOMGFoHLmzwRqUE0jeprHfuTeFgIEF0guk,3030
|
|
@@ -68,12 +69,12 @@ platform_api_python_client/models/list_prebuilt_image_response.py,sha256=o7W89S1
|
|
|
68
69
|
platform_api_python_client/models/list_user_vault_items_response.py,sha256=7lQ1fBnERqv4mI_RcIBe42MDvYwon_LjRRFTzD-HsMQ,3036
|
|
69
70
|
platform_api_python_client/models/metric.py,sha256=KPW0qVKNxddN6NQIs2870AxgnS1g99mlJvMAXHkMDKQ,1225
|
|
70
71
|
platform_api_python_client/models/pod_details.py,sha256=JRNnE3fpCdmrMfbsFxEYtYo17McX040hNU99EZ2f90o,3569
|
|
71
|
-
platform_api_python_client/models/pod_status.py,sha256=
|
|
72
|
+
platform_api_python_client/models/pod_status.py,sha256=KKYclyyn66pHrk56D8JD698qqM_j7V6SVPcuTSIfS88,1120
|
|
72
73
|
platform_api_python_client/models/prebuilt_image_response.py,sha256=dnvVsxrLNOpQhQgT8YePMwXmMx-8lEpImVK2oU4dsUk,3248
|
|
73
74
|
platform_api_python_client/models/revision_pod_details.py,sha256=CkCp152wpJlyhxatorzc4THeu2OHaCDPedJgLr5UM_s,4305
|
|
74
75
|
platform_api_python_client/models/rollout_status.py,sha256=JSJwzB1Ibrs0FEmQXrJNyafVryPyW2soStJLtPS910A,850
|
|
75
76
|
platform_api_python_client/models/rollout_strategy_params.py,sha256=jMB-GQ5mQojajgJZBOlX6IanDSc_pSTIb5-bzgFoRms,3149
|
|
76
|
-
platform_api_python_client/models/service_status.py,sha256=
|
|
77
|
+
platform_api_python_client/models/service_status.py,sha256=HMV8MtG-KQZvUmg4dgwMG_h-JmBr24_QRq8u9aGKKJA,1242
|
|
77
78
|
platform_api_python_client/models/update_deployment_response.py,sha256=qRFg5IxpaIJrXA9bA2eG0zChgz_aYtTEZRm-D7K5Vw0,2744
|
|
78
79
|
platform_api_python_client/models/update_deployment_status_v3_request.py,sha256=0YMSsju0qlQ8XKCvGh5AUQjlEoWPjhrIn_KlRzpJ594,3313
|
|
79
80
|
platform_api_python_client/models/user_vault_item.py,sha256=Vwwv7BrSvoEkYyxdeAnFTwyHAr0umdnumSHoOYt9Qf8,3098
|
|
@@ -81,7 +82,7 @@ platform_api_python_client/models/user_vault_type.py,sha256=omgXu7ipt_j_0IK1mCIb
|
|
|
81
82
|
platform_api_python_client/models/validation_error.py,sha256=bAAvyr7kxTVi7Xo-A-7sY64959W_7PISLgJjWBc_Q3k,3122
|
|
82
83
|
platform_api_python_client/models/validation_error_loc_inner.py,sha256=_ossVs2HphEeptkKNGz_38WRQBvVHRPg00bhnE6imfs,4899
|
|
83
84
|
platform_api_python_client/models/vault_scope.py,sha256=n_B1F_wYcabdVaW35o-kF8evyzEqMMMD3nWxRArYGAM,747
|
|
84
|
-
platform_api_python_client-4.
|
|
85
|
-
platform_api_python_client-4.
|
|
86
|
-
platform_api_python_client-4.
|
|
87
|
-
platform_api_python_client-4.
|
|
85
|
+
platform_api_python_client-4.9.7.dist-info/METADATA,sha256=4zY4nAFxTGmd3GTlVvuVkj-D8I2gg8jo8_StAg68TnA,694
|
|
86
|
+
platform_api_python_client-4.9.7.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
87
|
+
platform_api_python_client-4.9.7.dist-info/top_level.txt,sha256=yy_3qpZ0HjJKg8tednSa1a2fNj8p5CIw_sAR71ZZz2Q,27
|
|
88
|
+
platform_api_python_client-4.9.7.dist-info/RECORD,,
|
{platform_api_python_client-4.8.4.dist-info → platform_api_python_client-4.9.7.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|