platform-api-python-client 0.1.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.
Files changed (59) hide show
  1. platform_api_python_client/__init__.py +78 -0
  2. platform_api_python_client/api/__init__.py +5 -0
  3. platform_api_python_client/api/external_api.py +7341 -0
  4. platform_api_python_client/api_client.py +797 -0
  5. platform_api_python_client/api_response.py +21 -0
  6. platform_api_python_client/configuration.py +458 -0
  7. platform_api_python_client/exceptions.py +199 -0
  8. platform_api_python_client/models/__init__.py +61 -0
  9. platform_api_python_client/models/add_hardware_request.py +87 -0
  10. platform_api_python_client/models/api_key_request.py +87 -0
  11. platform_api_python_client/models/api_key_response.py +92 -0
  12. platform_api_python_client/models/c_serve_recipe_input.py +166 -0
  13. platform_api_python_client/models/c_serve_recipe_output.py +166 -0
  14. platform_api_python_client/models/c_serve_recipe_perf.py +98 -0
  15. platform_api_python_client/models/c_serve_recipe_response.py +105 -0
  16. platform_api_python_client/models/client_secret_response.py +87 -0
  17. platform_api_python_client/models/create_c_serve_deployment_request.py +117 -0
  18. platform_api_python_client/models/create_c_serve_deployment_response.py +92 -0
  19. platform_api_python_client/models/create_compute_deployment_response.py +94 -0
  20. platform_api_python_client/models/create_compute_deployment_v2_request.py +107 -0
  21. platform_api_python_client/models/create_inference_deployment_response.py +92 -0
  22. platform_api_python_client/models/create_inference_deployment_v2_request.py +141 -0
  23. platform_api_python_client/models/create_payment_request.py +89 -0
  24. platform_api_python_client/models/credits_response.py +87 -0
  25. platform_api_python_client/models/daily_bill_response.py +90 -0
  26. platform_api_python_client/models/deployment_status.py +38 -0
  27. platform_api_python_client/models/deployment_status_request.py +88 -0
  28. platform_api_python_client/models/deployment_status_response_v2.py +115 -0
  29. platform_api_python_client/models/deployment_type.py +43 -0
  30. platform_api_python_client/models/deployment_usage_value.py +89 -0
  31. platform_api_python_client/models/feedback_request.py +91 -0
  32. platform_api_python_client/models/get_c_serve_deployment_response.py +210 -0
  33. platform_api_python_client/models/get_cluster_response.py +89 -0
  34. platform_api_python_client/models/get_compute_v2_deployment_response.py +134 -0
  35. platform_api_python_client/models/get_deployment_log_response.py +94 -0
  36. platform_api_python_client/models/get_deployment_usage_response.py +95 -0
  37. platform_api_python_client/models/get_deployment_v2_response.py +111 -0
  38. platform_api_python_client/models/get_inference_v2_deployment_response.py +145 -0
  39. platform_api_python_client/models/hardware_instance_response.py +99 -0
  40. platform_api_python_client/models/health_status.py +40 -0
  41. platform_api_python_client/models/http_validation_error.py +95 -0
  42. platform_api_python_client/models/list_api_key_response.py +95 -0
  43. platform_api_python_client/models/list_c_serve_recipe_response.py +95 -0
  44. platform_api_python_client/models/list_daily_bill_response.py +95 -0
  45. platform_api_python_client/models/list_get_cluster_response.py +95 -0
  46. platform_api_python_client/models/list_get_deployment_v2_response.py +95 -0
  47. platform_api_python_client/models/list_hardware_instance_response.py +95 -0
  48. platform_api_python_client/models/list_payment_method_response.py +87 -0
  49. platform_api_python_client/models/list_prebuilt_image_response.py +95 -0
  50. platform_api_python_client/models/metric.py +38 -0
  51. platform_api_python_client/models/prebuilt_image_response.py +94 -0
  52. platform_api_python_client/models/validation_error.py +99 -0
  53. platform_api_python_client/models/validation_error_loc_inner.py +138 -0
  54. platform_api_python_client/py.typed +0 -0
  55. platform_api_python_client/rest.py +257 -0
  56. platform_api_python_client-0.1.0.dist-info/METADATA +16 -0
  57. platform_api_python_client-0.1.0.dist-info/RECORD +59 -0
  58. platform_api_python_client-0.1.0.dist-info/WHEEL +5 -0
  59. platform_api_python_client-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,138 @@
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
+ from inspect import getfullargspec
17
+ import json
18
+ import pprint
19
+ import re # noqa: F401
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, ValidationError, field_validator
21
+ from typing import Optional
22
+ from typing import Union, Any, List, Set, TYPE_CHECKING, Optional, Dict
23
+ from typing_extensions import Literal, Self
24
+ from pydantic import Field
25
+
26
+ VALIDATIONERRORLOCINNER_ANY_OF_SCHEMAS = ["int", "str"]
27
+
28
+ class ValidationErrorLocInner(BaseModel):
29
+ """
30
+ ValidationErrorLocInner
31
+ """
32
+
33
+ # data type: str
34
+ anyof_schema_1_validator: Optional[StrictStr] = None
35
+ # data type: int
36
+ anyof_schema_2_validator: Optional[StrictInt] = None
37
+ if TYPE_CHECKING:
38
+ actual_instance: Optional[Union[int, str]] = None
39
+ else:
40
+ actual_instance: Any = None
41
+ any_of_schemas: Set[str] = { "int", "str" }
42
+
43
+ model_config = {
44
+ "validate_assignment": True,
45
+ "protected_namespaces": (),
46
+ }
47
+
48
+ def __init__(self, *args, **kwargs) -> None:
49
+ if args:
50
+ if len(args) > 1:
51
+ raise ValueError("If a position argument is used, only 1 is allowed to set `actual_instance`")
52
+ if kwargs:
53
+ raise ValueError("If a position argument is used, keyword arguments cannot be used.")
54
+ super().__init__(actual_instance=args[0])
55
+ else:
56
+ super().__init__(**kwargs)
57
+
58
+ @field_validator('actual_instance')
59
+ def actual_instance_must_validate_anyof(cls, v):
60
+ instance = ValidationErrorLocInner.model_construct()
61
+ error_messages = []
62
+ # validate data type: str
63
+ try:
64
+ instance.anyof_schema_1_validator = v
65
+ return v
66
+ except (ValidationError, ValueError) as e:
67
+ error_messages.append(str(e))
68
+ # validate data type: int
69
+ try:
70
+ instance.anyof_schema_2_validator = v
71
+ return v
72
+ except (ValidationError, ValueError) as e:
73
+ error_messages.append(str(e))
74
+ if error_messages:
75
+ # no match
76
+ raise ValueError("No match found when setting the actual_instance in ValidationErrorLocInner with anyOf schemas: int, str. Details: " + ", ".join(error_messages))
77
+ else:
78
+ return v
79
+
80
+ @classmethod
81
+ def from_dict(cls, obj: Dict[str, Any]) -> Self:
82
+ return cls.from_json(json.dumps(obj))
83
+
84
+ @classmethod
85
+ def from_json(cls, json_str: str) -> Self:
86
+ """Returns the object represented by the json string"""
87
+ instance = cls.model_construct()
88
+ error_messages = []
89
+ # deserialize data into str
90
+ try:
91
+ # validation
92
+ instance.anyof_schema_1_validator = json.loads(json_str)
93
+ # assign value to actual_instance
94
+ instance.actual_instance = instance.anyof_schema_1_validator
95
+ return instance
96
+ except (ValidationError, ValueError) as e:
97
+ error_messages.append(str(e))
98
+ # deserialize data into int
99
+ try:
100
+ # validation
101
+ instance.anyof_schema_2_validator = json.loads(json_str)
102
+ # assign value to actual_instance
103
+ instance.actual_instance = instance.anyof_schema_2_validator
104
+ return instance
105
+ except (ValidationError, ValueError) as e:
106
+ error_messages.append(str(e))
107
+
108
+ if error_messages:
109
+ # no match
110
+ raise ValueError("No match found when deserializing the JSON string into ValidationErrorLocInner with anyOf schemas: int, str. Details: " + ", ".join(error_messages))
111
+ else:
112
+ return instance
113
+
114
+ def to_json(self) -> str:
115
+ """Returns the JSON representation of the actual instance"""
116
+ if self.actual_instance is None:
117
+ return "null"
118
+
119
+ if hasattr(self.actual_instance, "to_json") and callable(self.actual_instance.to_json):
120
+ return self.actual_instance.to_json()
121
+ else:
122
+ return json.dumps(self.actual_instance)
123
+
124
+ def to_dict(self) -> Optional[Union[Dict[str, Any], int, str]]:
125
+ """Returns the dict representation of the actual instance"""
126
+ if self.actual_instance is None:
127
+ return None
128
+
129
+ if hasattr(self.actual_instance, "to_dict") and callable(self.actual_instance.to_dict):
130
+ return self.actual_instance.to_dict()
131
+ else:
132
+ return self.actual_instance
133
+
134
+ def to_str(self) -> str:
135
+ """Returns the string representation of the actual instance"""
136
+ return pprint.pformat(self.model_dump())
137
+
138
+
File without changes
@@ -0,0 +1,257 @@
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
+ import io
16
+ import json
17
+ import re
18
+ import ssl
19
+
20
+ import urllib3
21
+
22
+ from platform_api_python_client.exceptions import ApiException, ApiValueError
23
+
24
+ SUPPORTED_SOCKS_PROXIES = {"socks5", "socks5h", "socks4", "socks4a"}
25
+ RESTResponseType = urllib3.HTTPResponse
26
+
27
+
28
+ def is_socks_proxy_url(url):
29
+ if url is None:
30
+ return False
31
+ split_section = url.split("://")
32
+ if len(split_section) < 2:
33
+ return False
34
+ else:
35
+ return split_section[0].lower() in SUPPORTED_SOCKS_PROXIES
36
+
37
+
38
+ class RESTResponse(io.IOBase):
39
+
40
+ def __init__(self, resp) -> None:
41
+ self.response = resp
42
+ self.status = resp.status
43
+ self.reason = resp.reason
44
+ self.data = None
45
+
46
+ def read(self):
47
+ if self.data is None:
48
+ self.data = self.response.data
49
+ return self.data
50
+
51
+ def getheaders(self):
52
+ """Returns a dictionary of the response headers."""
53
+ return self.response.headers
54
+
55
+ def getheader(self, name, default=None):
56
+ """Returns a given response header."""
57
+ return self.response.headers.get(name, default)
58
+
59
+
60
+ class RESTClientObject:
61
+
62
+ def __init__(self, configuration) -> None:
63
+ # urllib3.PoolManager will pass all kw parameters to connectionpool
64
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
65
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/connectionpool.py#L680 # noqa: E501
66
+ # Custom SSL certificates and client certificates: http://urllib3.readthedocs.io/en/latest/advanced-usage.html # noqa: E501
67
+
68
+ # cert_reqs
69
+ if configuration.verify_ssl:
70
+ cert_reqs = ssl.CERT_REQUIRED
71
+ else:
72
+ cert_reqs = ssl.CERT_NONE
73
+
74
+ pool_args = {
75
+ "cert_reqs": cert_reqs,
76
+ "ca_certs": configuration.ssl_ca_cert,
77
+ "cert_file": configuration.cert_file,
78
+ "key_file": configuration.key_file,
79
+ }
80
+ if configuration.assert_hostname is not None:
81
+ pool_args['assert_hostname'] = (
82
+ configuration.assert_hostname
83
+ )
84
+
85
+ if configuration.retries is not None:
86
+ pool_args['retries'] = configuration.retries
87
+
88
+ if configuration.tls_server_name:
89
+ pool_args['server_hostname'] = configuration.tls_server_name
90
+
91
+
92
+ if configuration.socket_options is not None:
93
+ pool_args['socket_options'] = configuration.socket_options
94
+
95
+ if configuration.connection_pool_maxsize is not None:
96
+ pool_args['maxsize'] = configuration.connection_pool_maxsize
97
+
98
+ # https pool manager
99
+ self.pool_manager: urllib3.PoolManager
100
+
101
+ if configuration.proxy:
102
+ if is_socks_proxy_url(configuration.proxy):
103
+ from urllib3.contrib.socks import SOCKSProxyManager
104
+ pool_args["proxy_url"] = configuration.proxy
105
+ pool_args["headers"] = configuration.proxy_headers
106
+ self.pool_manager = SOCKSProxyManager(**pool_args)
107
+ else:
108
+ pool_args["proxy_url"] = configuration.proxy
109
+ pool_args["proxy_headers"] = configuration.proxy_headers
110
+ self.pool_manager = urllib3.ProxyManager(**pool_args)
111
+ else:
112
+ self.pool_manager = urllib3.PoolManager(**pool_args)
113
+
114
+ def request(
115
+ self,
116
+ method,
117
+ url,
118
+ headers=None,
119
+ body=None,
120
+ post_params=None,
121
+ _request_timeout=None
122
+ ):
123
+ """Perform requests.
124
+
125
+ :param method: http request method
126
+ :param url: http request url
127
+ :param headers: http request headers
128
+ :param body: request json body, for `application/json`
129
+ :param post_params: request post parameters,
130
+ `application/x-www-form-urlencoded`
131
+ and `multipart/form-data`
132
+ :param _request_timeout: timeout setting for this request. If one
133
+ number provided, it will be total request
134
+ timeout. It can also be a pair (tuple) of
135
+ (connection, read) timeouts.
136
+ """
137
+ method = method.upper()
138
+ assert method in [
139
+ 'GET',
140
+ 'HEAD',
141
+ 'DELETE',
142
+ 'POST',
143
+ 'PUT',
144
+ 'PATCH',
145
+ 'OPTIONS'
146
+ ]
147
+
148
+ if post_params and body:
149
+ raise ApiValueError(
150
+ "body parameter cannot be used with post_params parameter."
151
+ )
152
+
153
+ post_params = post_params or {}
154
+ headers = headers or {}
155
+
156
+ timeout = None
157
+ if _request_timeout:
158
+ if isinstance(_request_timeout, (int, float)):
159
+ timeout = urllib3.Timeout(total=_request_timeout)
160
+ elif (
161
+ isinstance(_request_timeout, tuple)
162
+ and len(_request_timeout) == 2
163
+ ):
164
+ timeout = urllib3.Timeout(
165
+ connect=_request_timeout[0],
166
+ read=_request_timeout[1]
167
+ )
168
+
169
+ try:
170
+ # For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
171
+ if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
172
+
173
+ # no content type provided or payload is json
174
+ content_type = headers.get('Content-Type')
175
+ if (
176
+ not content_type
177
+ or re.search('json', content_type, re.IGNORECASE)
178
+ ):
179
+ request_body = None
180
+ if body is not None:
181
+ request_body = json.dumps(body)
182
+ r = self.pool_manager.request(
183
+ method,
184
+ url,
185
+ body=request_body,
186
+ timeout=timeout,
187
+ headers=headers,
188
+ preload_content=False
189
+ )
190
+ elif content_type == 'application/x-www-form-urlencoded':
191
+ r = self.pool_manager.request(
192
+ method,
193
+ url,
194
+ fields=post_params,
195
+ encode_multipart=False,
196
+ timeout=timeout,
197
+ headers=headers,
198
+ preload_content=False
199
+ )
200
+ elif content_type == 'multipart/form-data':
201
+ # must del headers['Content-Type'], or the correct
202
+ # Content-Type which generated by urllib3 will be
203
+ # overwritten.
204
+ del headers['Content-Type']
205
+ # Ensures that dict objects are serialized
206
+ post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a,b) for a, b in post_params]
207
+ r = self.pool_manager.request(
208
+ method,
209
+ url,
210
+ fields=post_params,
211
+ encode_multipart=True,
212
+ timeout=timeout,
213
+ headers=headers,
214
+ preload_content=False
215
+ )
216
+ # Pass a `string` parameter directly in the body to support
217
+ # other content types than JSON when `body` argument is
218
+ # provided in serialized form.
219
+ elif isinstance(body, str) or isinstance(body, bytes):
220
+ r = self.pool_manager.request(
221
+ method,
222
+ url,
223
+ body=body,
224
+ timeout=timeout,
225
+ headers=headers,
226
+ preload_content=False
227
+ )
228
+ elif headers['Content-Type'].startswith('text/') and isinstance(body, bool):
229
+ request_body = "true" if body else "false"
230
+ r = self.pool_manager.request(
231
+ method,
232
+ url,
233
+ body=request_body,
234
+ preload_content=False,
235
+ timeout=timeout,
236
+ headers=headers)
237
+ else:
238
+ # Cannot generate the request from given parameters
239
+ msg = """Cannot prepare a request message for provided
240
+ arguments. Please check that your arguments match
241
+ declared content type."""
242
+ raise ApiException(status=0, reason=msg)
243
+ # For `GET`, `HEAD`
244
+ else:
245
+ r = self.pool_manager.request(
246
+ method,
247
+ url,
248
+ fields={},
249
+ timeout=timeout,
250
+ headers=headers,
251
+ preload_content=False
252
+ )
253
+ except urllib3.exceptions.SSLError as e:
254
+ msg = "\n".join([type(e).__name__, str(e)])
255
+ raise ApiException(status=0, reason=msg)
256
+
257
+ return RESTResponse(r)
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: platform-api-python-client
3
+ Version: 0.1.0
4
+ Summary: Platform External API
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: team@openapitools.org
8
+ Keywords: OpenAPI,OpenAPI-Generator,Platform External API
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: urllib3 <3.0.0,>=1.25.3
11
+ Requires-Dist: python-dateutil >=2.8.2
12
+ Requires-Dist: pydantic >=2
13
+ Requires-Dist: typing-extensions >=4.7.1
14
+
15
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
16
+
@@ -0,0 +1,59 @@
1
+ platform_api_python_client/__init__.py,sha256=5OOPGtk77pb40dA0jb8TuhICTlLBdMXHS-V50GFKXjo,5341
2
+ platform_api_python_client/api_client.py,sha256=DLQu-cWeAsBJ_n8WSiqaEqNsa5_TcH_OPtUro4nFHd0,27553
3
+ platform_api_python_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ platform_api_python_client/configuration.py,sha256=Yzr0MHorJUxFfYuUHenyUyArIzDfijdVWZ6L6qVDRZM,15335
5
+ platform_api_python_client/exceptions.py,sha256=SgBMBmRBD5JyEJj5ZiSQRbiOs4IVPOFZMGKX_fhPd58,5986
6
+ platform_api_python_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ platform_api_python_client/rest.py,sha256=U514C8b2RXn4u0w7VpOFXeSaArP6_wuMCf8-G5xCbyk,9438
8
+ platform_api_python_client/api/__init__.py,sha256=8FSPlQzadbgpFR5KYbpbN0DgPRWqOZkfooMstj2XcHg,116
9
+ platform_api_python_client/api/external_api.py,sha256=GuHIEJSItd4Y400XhnnFiZfLcEI6rpmWQMy3iWFWjOA,286024
10
+ platform_api_python_client/models/__init__.py,sha256=96yoAisViVCxsOuzDrRLbw-BZARmuGPrggIGaIfcQow,4621
11
+ platform_api_python_client/models/add_hardware_request.py,sha256=X8G_tWNG1uwfN8io96VUMLis53PvHa8oYT_I6rqGjVE,2514
12
+ platform_api_python_client/models/api_key_request.py,sha256=p4bkyCVMkcyyx72ZQnfRMC65wwb2DT4qT6QKYaaO7rA,2482
13
+ platform_api_python_client/models/api_key_response.py,sha256=7yr2p-Y_KAMZ9RomPR7AlOJK20RlZz4IZJHBKyrI3ww,2661
14
+ platform_api_python_client/models/c_serve_recipe_input.py,sha256=1J7nCDiH45uP_s2PAAh-mPbz9iU27V1w4r-_8QGlUaI,7488
15
+ platform_api_python_client/models/c_serve_recipe_output.py,sha256=JLl4MC2Us0B9_se1gYytVfB-Tnm_-ykr8wbAz2Hn11c,7290
16
+ platform_api_python_client/models/c_serve_recipe_perf.py,sha256=EtJI1PDDsWUTP_qKvYIJQe1Ohotx7yyIuW7Rhjii1R4,3278
17
+ platform_api_python_client/models/c_serve_recipe_response.py,sha256=aNqQWveVpGQG0NDGxJ1bbMYtT3kY0AiyN0PfurpSjAw,3684
18
+ platform_api_python_client/models/client_secret_response.py,sha256=ZfcQyfOlDKvDd_kU3d-3cVGtTkuayIHytsIWyfyEfZA,2546
19
+ platform_api_python_client/models/create_c_serve_deployment_request.py,sha256=Mf8Nv4WsCoYgAViYmQzi5MFnL1GIKhYxBwrZBJuOb5U,4257
20
+ platform_api_python_client/models/create_c_serve_deployment_response.py,sha256=0Fs9SH_oU-m64WdXuP0IzZ5GiahglWDdB85Avy42cA0,2768
21
+ platform_api_python_client/models/create_compute_deployment_response.py,sha256=sMwHYBojt3m0U91iiGOyTj9ucejajfdwuzsTuE3F0bQ,2837
22
+ platform_api_python_client/models/create_compute_deployment_v2_request.py,sha256=hfxIP_eEkUUpOXFsUrFP11hzCa2np6h1PfwvAIKdFto,3588
23
+ platform_api_python_client/models/create_inference_deployment_response.py,sha256=iYHJMG7ke5DJqvmaBsrPDYa1CwBNBnACwYEo2-0wVyE,2780
24
+ platform_api_python_client/models/create_inference_deployment_v2_request.py,sha256=dcWEvM-ZTe1Z2bTrKuPyO4sjoLVcCeeQhbbuJvxLK8g,5274
25
+ platform_api_python_client/models/create_payment_request.py,sha256=J2as5rYym8cZ5_K3OFYRNQpaQH0pG-eC_P0BEnjfYDQ,2634
26
+ platform_api_python_client/models/credits_response.py,sha256=EsKLn7mpob-xjaE4P-rUXwW7Ocax4M56x_Y10-srEkk,2502
27
+ platform_api_python_client/models/daily_bill_response.py,sha256=av84ee5LrKVICa1EfpmhVPWUGBRz8HUZ4h1y0vGEC8E,2629
28
+ platform_api_python_client/models/deployment_status.py,sha256=y4ffT58ckTFmEeg1qF8eTzJWeRNZisTteySfy5irllQ,799
29
+ platform_api_python_client/models/deployment_status_request.py,sha256=Is7Z-UWvRbW2y5wy1e5_IewU5MFrUR2tqrKbwlVoT3o,2607
30
+ platform_api_python_client/models/deployment_status_response_v2.py,sha256=1nsYisINJQUOWrJizkc9dr1VeFAfHA21w7nT1Vsvgkc,3969
31
+ platform_api_python_client/models/deployment_type.py,sha256=6_7LYDq_luSfSySrcFmyc2QJ-zanJtrxAsyhQQMa8tM,951
32
+ platform_api_python_client/models/deployment_usage_value.py,sha256=-_2hhTFc3mVf4sCgoEND5COVch3XcVWRyrsPVgoRXj8,2639
33
+ platform_api_python_client/models/feedback_request.py,sha256=gOHMjsysbbscq90ZtLQ5vhm2G45ZGn9_wZA2MC6HZVc,2684
34
+ platform_api_python_client/models/get_c_serve_deployment_response.py,sha256=W2Wakvt70w5L31BqajKSdgEo5GVv2DlD0EwVPFSPxJg,9470
35
+ platform_api_python_client/models/get_cluster_response.py,sha256=mb-bbc1KxEq654UFVrwaiNfhQF7HTKWWhVsTml8-TiE,2602
36
+ platform_api_python_client/models/get_compute_v2_deployment_response.py,sha256=R17JKtf_SE5Bp4os7pfapijB5wD00C3j-w4wBsq2XTU,4789
37
+ platform_api_python_client/models/get_deployment_log_response.py,sha256=m6q6j0wwWuJ5g1vpaw0fN8EJBtFvm3ai9NWOsaD9qHk,2917
38
+ platform_api_python_client/models/get_deployment_usage_response.py,sha256=J-31IqWmzvzSFR5ya0v_DK9wEAWKGYYqSry_dt-bUP4,3052
39
+ platform_api_python_client/models/get_deployment_v2_response.py,sha256=2263JldMPl2TKbhwQtUKffOLhJFLaOUpoJPWC8RSxvY,3655
40
+ platform_api_python_client/models/get_inference_v2_deployment_response.py,sha256=2FtGS8Ap_VEItg2q0Bmwm6A9oKhXYXYRzdBYUvqvlQI,5425
41
+ platform_api_python_client/models/hardware_instance_response.py,sha256=Ctsj5Hf0239EeETZP43aX07DsMJqJwhxxjFHNHJNxBs,2979
42
+ platform_api_python_client/models/health_status.py,sha256=U2hA5brITaTh81L3eE2vVePCLVRNFQmHwi6di8DkjCs,849
43
+ platform_api_python_client/models/http_validation_error.py,sha256=LCSb4Ct_DLOMGFoHLmzwRqUE0jeprHfuTeFgIEF0guk,3030
44
+ platform_api_python_client/models/list_api_key_response.py,sha256=tXUlTP-SBqJS41nbpOELwhO3klgCZTe3NIB2Gw0sK5g,3008
45
+ platform_api_python_client/models/list_c_serve_recipe_response.py,sha256=nqObDS3naOIcLZCBtD4Ff2nm94S-iwoLulySmWx1zRw,3057
46
+ platform_api_python_client/models/list_daily_bill_response.py,sha256=52uvjXcTVt3wV9pptL2dAs7RsgmAlZTFj6GZ0YKcw8I,3032
47
+ platform_api_python_client/models/list_get_cluster_response.py,sha256=uIRdtmVm3U3ANtFOiKGQn9BgZgmrVOVcjXlZbI9sMGg,3040
48
+ platform_api_python_client/models/list_get_deployment_v2_response.py,sha256=4eW7XI0YEGLBV1yncxPcRmn10y6EI-4EefsEh9W-wNI,3081
49
+ platform_api_python_client/models/list_hardware_instance_response.py,sha256=26BbCJvHhzX-YY1PDfk7vNVaWTladJ_F7xnhSfHuobY,3088
50
+ platform_api_python_client/models/list_payment_method_response.py,sha256=rGBbduRgDEm3Wa7a9vYUBhW8dWc7mGhtBUmDHnXXOek,2542
51
+ platform_api_python_client/models/list_prebuilt_image_response.py,sha256=o7W89S1KPn74b4Hbeo6eRmQBqMqSMfytwOpogZ7o3Iw,3064
52
+ platform_api_python_client/models/metric.py,sha256=KpCH04PS3zvk6q3s9I8Qo5Ri291jaK67jw5E3vp-810,755
53
+ platform_api_python_client/models/prebuilt_image_response.py,sha256=UuLKM9vW73gO12BehAZe0O2BVL5pfIUrW870Aecszms,2825
54
+ platform_api_python_client/models/validation_error.py,sha256=bAAvyr7kxTVi7Xo-A-7sY64959W_7PISLgJjWBc_Q3k,3122
55
+ platform_api_python_client/models/validation_error_loc_inner.py,sha256=_ossVs2HphEeptkKNGz_38WRQBvVHRPg00bhnE6imfs,4899
56
+ platform_api_python_client-0.1.0.dist-info/METADATA,sha256=nLCYg513MiWMowe2QG4xKguFiSM3seaQQZMxNd5pihY,547
57
+ platform_api_python_client-0.1.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
58
+ platform_api_python_client-0.1.0.dist-info/top_level.txt,sha256=yy_3qpZ0HjJKg8tednSa1a2fNj8p5CIw_sAR71ZZz2Q,27
59
+ platform_api_python_client-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.1.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ platform_api_python_client