platform-api-python-client 4.9.0__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.
@@ -0,0 +1,160 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Platform External API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from datetime import datetime
21
+ from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from platform_api_python_client.models.deployment_status import DeploymentStatus
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
+ from typing import Optional, Set
27
+ from typing_extensions import Self
28
+
29
+ class GetJobDeploymentResponse(BaseModel):
30
+ """
31
+ GetJobDeploymentResponse
32
+ """ # noqa: E501
33
+ creator_email: StrictStr
34
+ cluster_id: StrictInt
35
+ id: StrictInt
36
+ name: StrictStr
37
+ endpoint_url: StrictStr
38
+ image_url: Optional[StrictStr] = None
39
+ type: DeploymentType
40
+ status: DeploymentStatus
41
+ created_at: datetime
42
+ hardware_instance_id: StrictInt
43
+ revision_number: StrictInt
44
+ user_annotations: Optional[Dict[str, StrictStr]] = None
45
+ env_vars: Optional[Dict[str, StrictStr]] = None
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"]
53
+
54
+ model_config = ConfigDict(
55
+ populate_by_name=True,
56
+ validate_assignment=True,
57
+ protected_namespaces=(),
58
+ )
59
+
60
+
61
+ def to_str(self) -> str:
62
+ """Returns the string representation of the model using alias"""
63
+ return pprint.pformat(self.model_dump(by_alias=True))
64
+
65
+ def to_json(self) -> str:
66
+ """Returns the JSON representation of the model using alias"""
67
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
68
+ return json.dumps(self.to_dict())
69
+
70
+ @classmethod
71
+ def from_json(cls, json_str: str) -> Optional[Self]:
72
+ """Create an instance of GetJobDeploymentResponse from a JSON string"""
73
+ return cls.from_dict(json.loads(json_str))
74
+
75
+ def to_dict(self) -> Dict[str, Any]:
76
+ """Return the dictionary representation of the model using alias.
77
+
78
+ This has the following differences from calling pydantic's
79
+ `self.model_dump(by_alias=True)`:
80
+
81
+ * `None` is only added to the output dict for nullable fields that
82
+ were set at model initialization. Other fields with value `None`
83
+ are ignored.
84
+ """
85
+ excluded_fields: Set[str] = set([
86
+ ])
87
+
88
+ _dict = self.model_dump(
89
+ by_alias=True,
90
+ exclude=excluded_fields,
91
+ exclude_none=True,
92
+ )
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()
96
+ # set to None if image_url (nullable) is None
97
+ # and model_fields_set contains the field
98
+ if self.image_url is None and "image_url" in self.model_fields_set:
99
+ _dict['image_url'] = None
100
+
101
+ # set to None if user_annotations (nullable) is None
102
+ # and model_fields_set contains the field
103
+ if self.user_annotations is None and "user_annotations" in self.model_fields_set:
104
+ _dict['user_annotations'] = None
105
+
106
+ # set to None if env_vars (nullable) is None
107
+ # and model_fields_set contains the field
108
+ if self.env_vars is None and "env_vars" in self.model_fields_set:
109
+ _dict['env_vars'] = None
110
+
111
+ # set to None if command (nullable) is None
112
+ # and model_fields_set contains the field
113
+ if self.command is None and "command" in self.model_fields_set:
114
+ _dict['command'] = None
115
+
116
+ # set to None if args (nullable) is None
117
+ # and model_fields_set contains the field
118
+ if self.args is None and "args" in self.model_fields_set:
119
+ _dict['args'] = None
120
+
121
+ # set to None if image_pull_secret_credentials (nullable) is None
122
+ # and model_fields_set contains the field
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
125
+
126
+ return _dict
127
+
128
+ @classmethod
129
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
130
+ """Create an instance of GetJobDeploymentResponse from a dict"""
131
+ if obj is None:
132
+ return None
133
+
134
+ if not isinstance(obj, dict):
135
+ return cls.model_validate(obj)
136
+
137
+ _obj = cls.model_validate({
138
+ "creator_email": obj.get("creator_email"),
139
+ "cluster_id": obj.get("cluster_id"),
140
+ "id": obj.get("id"),
141
+ "name": obj.get("name"),
142
+ "endpoint_url": obj.get("endpoint_url"),
143
+ "image_url": obj.get("image_url"),
144
+ "type": obj.get("type"),
145
+ "status": obj.get("status"),
146
+ "created_at": obj.get("created_at"),
147
+ "hardware_instance_id": obj.get("hardware_instance_id"),
148
+ "revision_number": obj.get("revision_number"),
149
+ "user_annotations": obj.get("user_annotations"),
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
157
+ })
158
+ return _obj
159
+
160
+
@@ -36,6 +36,8 @@ class PodStatus(str, Enum):
36
36
  PROGRESSDEADLINEEXCEEDED = 'ProgressDeadlineExceeded'
37
37
  RUNNING = 'Running'
38
38
  NOTREADY = 'NotReady'
39
+ COMPLETED = 'Completed'
40
+ FAILED = 'Failed'
39
41
 
40
42
  @classmethod
41
43
  def from_json(cls, json_str: str) -> Self:
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: platform-api-python-client
3
- Version: 4.9.0
3
+ Version: 4.9.7
4
4
  Summary: Platform External API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -1,13 +1,13 @@
1
- platform_api_python_client/__init__.py,sha256=EhKuAMHvvbEI6UE_UrANK1QZtADCtx8TEYpz8EN7hlI,7693
2
- platform_api_python_client/api_client.py,sha256=Tswo4CvlXexbtSSdCbJDWxaVy2kWAge9BVUtP73AH3o,27553
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=EBc7VlBSF5pBMJLtwfOQF4-D7sZY_3d-T1JYoGyjbMo,15335
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=HFwzKDOk4TsLXC9DUZxp3WtUfwKEOCdP5Ep6bnQIqj4,487184
10
- platform_api_python_client/models/__init__.py,sha256=gNgDk_y4iQocORLd0-uZSzbgz27DERAC9oZ7f5eNmCE,6973
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,15 +15,18 @@ 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=YliQ-J1TihnjQItx-EMxHJEm6lYVec9_Bw9tlAcnckA,7672
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=uAm-K8mWzX7BPlSulWdutcrDYEqaoOz9y4j39OzOnLs,8584
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
32
  platform_api_python_client/models/create_url_request.py,sha256=Fo0iR28WqpiKmKjvNfvjTsmcJtQHlILo38tKgGYBjE8,2595
@@ -35,11 +38,11 @@ platform_api_python_client/models/deployment_status.py,sha256=y4ffT58ckTFmEeg1qF
35
38
  platform_api_python_client/models/deployment_status_request.py,sha256=Is7Z-UWvRbW2y5wy1e5_IewU5MFrUR2tqrKbwlVoT3o,2607
36
39
  platform_api_python_client/models/deployment_status_response.py,sha256=zYoXBTC0bq4LUzSChVe2J1y_ioXApNUZfap4Jeno5JI,4413
37
40
  platform_api_python_client/models/deployment_status_v3_response.py,sha256=QnofPuSO2CdkIKyiKa8F0m9cKI6QOIOGTmbPKqSSm5Y,4754
38
- platform_api_python_client/models/deployment_type.py,sha256=zD9oWofifFRk9UbXQZmb1LAqKwFWhEbp3sFhPgD0MMQ,1057
41
+ platform_api_python_client/models/deployment_type.py,sha256=zpqoO6vFXJ3xSlw5Sz6EFLe31ovKHxhonAvgfwRwqqk,1073
39
42
  platform_api_python_client/models/deployment_usage.py,sha256=EaFCsDd8UMPpYILnDvdXH7jWulAEb1Cxwt93KEtgqE0,3103
40
43
  platform_api_python_client/models/deployment_usage_value.py,sha256=-_2hhTFc3mVf4sCgoEND5COVch3XcVWRyrsPVgoRXj8,2639
41
44
  platform_api_python_client/models/get_c_serve_v2_deployment_response.py,sha256=df0qyvJF-kPeKoNc1g0NJw12QrtGky-3Xw9q1OU8lDY,6903
42
- platform_api_python_client/models/get_c_serve_v3_deployment_response.py,sha256=B_npJH2uzwG-hUHvClzPuo7ogyB6w2pUNJ7_cnKSbIY,7358
45
+ platform_api_python_client/models/get_c_serve_v3_deployment_response.py,sha256=vEeMFxDFwxYQE8ZNKsRaIPTlbwrWY9biw7ZXYgtGH8o,8159
43
46
  platform_api_python_client/models/get_cluster_response.py,sha256=bwPFhPGmHvf2onk7kiU5U7cJb9adbeCPfrKb6yvOqFA,3006
44
47
  platform_api_python_client/models/get_compute_deployment_response.py,sha256=Ui5qW7hMaksj3eVX-3ITNc-SNCtw0yJ_UCitkEZVdac,5593
45
48
  platform_api_python_client/models/get_deployment_log_response.py,sha256=FZ0mdef4fPyvb0wviSnSesFOJqnhKRATLVRT7E_K_Ag,2924
@@ -47,7 +50,8 @@ platform_api_python_client/models/get_deployment_response.py,sha256=ubyD-CAgKZk4
47
50
  platform_api_python_client/models/get_deployment_revision_response.py,sha256=jTx_G8JCeKbgwmbylM3uiPNtGoCPpwjN5KMkFuC9BS8,3778
48
51
  platform_api_python_client/models/get_deployment_usage_response.py,sha256=RnEJqDaIFVjuHVU26EScvLICK9tDVFj6hQh_U0yMBdg,3031
49
52
  platform_api_python_client/models/get_inference_deployment_response.py,sha256=_Lz_hJS8Cw_NDeR5KD_o3nBcUG4X3_OiXGiT9cn0tJ0,7482
50
- platform_api_python_client/models/get_inference_v3_deployment_response.py,sha256=pqOpKCG_ShMIQ7Au9H6RIx1-vBcdkbt1acxuZNBv_jE,9270
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
51
55
  platform_api_python_client/models/gpu_type_capacity.py,sha256=KdNy4RJB8JIstVTiB4qsY-MAK7nHsKVTGe-kTMwz_XA,3101
52
56
  platform_api_python_client/models/hardware_instance_response.py,sha256=89qNY1wVusuUYSymYFJxo-64cCwtkaHcBYZzL4JeyLo,4161
53
57
  platform_api_python_client/models/http_validation_error.py,sha256=LCSb4Ct_DLOMGFoHLmzwRqUE0jeprHfuTeFgIEF0guk,3030
@@ -65,12 +69,12 @@ platform_api_python_client/models/list_prebuilt_image_response.py,sha256=o7W89S1
65
69
  platform_api_python_client/models/list_user_vault_items_response.py,sha256=7lQ1fBnERqv4mI_RcIBe42MDvYwon_LjRRFTzD-HsMQ,3036
66
70
  platform_api_python_client/models/metric.py,sha256=KPW0qVKNxddN6NQIs2870AxgnS1g99mlJvMAXHkMDKQ,1225
67
71
  platform_api_python_client/models/pod_details.py,sha256=JRNnE3fpCdmrMfbsFxEYtYo17McX040hNU99EZ2f90o,3569
68
- platform_api_python_client/models/pod_status.py,sha256=ClaV7H1anoN4_q3jLGFk64O0bQW6LMbpwnpW0q0PSPE,1070
72
+ platform_api_python_client/models/pod_status.py,sha256=KKYclyyn66pHrk56D8JD698qqM_j7V6SVPcuTSIfS88,1120
69
73
  platform_api_python_client/models/prebuilt_image_response.py,sha256=dnvVsxrLNOpQhQgT8YePMwXmMx-8lEpImVK2oU4dsUk,3248
70
74
  platform_api_python_client/models/revision_pod_details.py,sha256=CkCp152wpJlyhxatorzc4THeu2OHaCDPedJgLr5UM_s,4305
71
75
  platform_api_python_client/models/rollout_status.py,sha256=JSJwzB1Ibrs0FEmQXrJNyafVryPyW2soStJLtPS910A,850
72
76
  platform_api_python_client/models/rollout_strategy_params.py,sha256=jMB-GQ5mQojajgJZBOlX6IanDSc_pSTIb5-bzgFoRms,3149
73
- platform_api_python_client/models/service_status.py,sha256=fyOw-Z-J5AS7hkss77Dl653JlqfEjfJUpvnjfhGPnrI,1130
77
+ platform_api_python_client/models/service_status.py,sha256=HMV8MtG-KQZvUmg4dgwMG_h-JmBr24_QRq8u9aGKKJA,1242
74
78
  platform_api_python_client/models/update_deployment_response.py,sha256=qRFg5IxpaIJrXA9bA2eG0zChgz_aYtTEZRm-D7K5Vw0,2744
75
79
  platform_api_python_client/models/update_deployment_status_v3_request.py,sha256=0YMSsju0qlQ8XKCvGh5AUQjlEoWPjhrIn_KlRzpJ594,3313
76
80
  platform_api_python_client/models/user_vault_item.py,sha256=Vwwv7BrSvoEkYyxdeAnFTwyHAr0umdnumSHoOYt9Qf8,3098
@@ -78,7 +82,7 @@ platform_api_python_client/models/user_vault_type.py,sha256=omgXu7ipt_j_0IK1mCIb
78
82
  platform_api_python_client/models/validation_error.py,sha256=bAAvyr7kxTVi7Xo-A-7sY64959W_7PISLgJjWBc_Q3k,3122
79
83
  platform_api_python_client/models/validation_error_loc_inner.py,sha256=_ossVs2HphEeptkKNGz_38WRQBvVHRPg00bhnE6imfs,4899
80
84
  platform_api_python_client/models/vault_scope.py,sha256=n_B1F_wYcabdVaW35o-kF8evyzEqMMMD3nWxRArYGAM,747
81
- platform_api_python_client-4.9.0.dist-info/METADATA,sha256=ZxfpaF9aFHH5SYCHDWflEqz1u1hAp78NJR0oPsvB2o4,694
82
- platform_api_python_client-4.9.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
83
- platform_api_python_client-4.9.0.dist-info/top_level.txt,sha256=yy_3qpZ0HjJKg8tednSa1a2fNj8p5CIw_sAR71ZZz2Q,27
84
- platform_api_python_client-4.9.0.dist-info/RECORD,,
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,,