kingsoftcloud-sdk-python 1.5.8.40__py2.py3-none-any.whl → 1.5.8.43__py2.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.
- {kingsoftcloud_sdk_python-1.5.8.40.dist-info → kingsoftcloud_sdk_python-1.5.8.43.dist-info}/METADATA +1 -1
- {kingsoftcloud_sdk_python-1.5.8.40.dist-info → kingsoftcloud_sdk_python-1.5.8.43.dist-info}/RECORD +11 -11
- ksyun/__init__.py +1 -1
- ksyun/client/aicp/v20240612/client.py +621 -0
- ksyun/client/aicp/v20240612/models.py +703 -5
- ksyun/client/epc/v20151101/client.py +23 -0
- ksyun/client/epc/v20151101/models.py +16 -0
- ksyun/common/abstract_client.py +5 -0
- {kingsoftcloud_sdk_python-1.5.8.40.dist-info → kingsoftcloud_sdk_python-1.5.8.43.dist-info}/WHEEL +0 -0
- {kingsoftcloud_sdk_python-1.5.8.40.dist-info → kingsoftcloud_sdk_python-1.5.8.43.dist-info}/licenses/LICENSE +0 -0
- {kingsoftcloud_sdk_python-1.5.8.40.dist-info → kingsoftcloud_sdk_python-1.5.8.43.dist-info}/top_level.txt +0 -0
|
@@ -2377,3 +2377,26 @@ class EpcClient(AbstractClient):
|
|
|
2377
2377
|
raise KsyunSDKException(e.message, e.message)
|
|
2378
2378
|
|
|
2379
2379
|
|
|
2380
|
+
def DescribeUserData(self, request):
|
|
2381
|
+
"""查询自定义脚本
|
|
2382
|
+
:param request: Request instance for DescribeUserData.
|
|
2383
|
+
:type request: :class:`ksyun.client.epc.v20151101.models.DescribeUserDataRequest`
|
|
2384
|
+
"""
|
|
2385
|
+
try:
|
|
2386
|
+
params = request._serialize()
|
|
2387
|
+
body = self.call_judge("DescribeUserData", params, "application/x-www-form-urlencoded")
|
|
2388
|
+
response = json.loads(body)
|
|
2389
|
+
if "Error" not in response:
|
|
2390
|
+
return body
|
|
2391
|
+
else:
|
|
2392
|
+
code = response["Error"]["Code"]
|
|
2393
|
+
message = response["Error"]["Message"]
|
|
2394
|
+
req_id = response["RequestId"]
|
|
2395
|
+
raise KsyunSDKException(code, message, req_id)
|
|
2396
|
+
except Exception as e:
|
|
2397
|
+
if isinstance(e, KsyunSDKException):
|
|
2398
|
+
raise
|
|
2399
|
+
else:
|
|
2400
|
+
raise KsyunSDKException(e.message, e.message)
|
|
2401
|
+
|
|
2402
|
+
|
|
@@ -4198,3 +4198,19 @@ class DescribeSoUserDataRequest(AbstractModel):
|
|
|
4198
4198
|
self.InstanceId = params.get("InstanceId")
|
|
4199
4199
|
|
|
4200
4200
|
|
|
4201
|
+
class DescribeUserDataRequest(AbstractModel):
|
|
4202
|
+
"""DescribeUserData请求参数结构体
|
|
4203
|
+
"""
|
|
4204
|
+
|
|
4205
|
+
def __init__(self):
|
|
4206
|
+
r"""查询自定义脚本
|
|
4207
|
+
:param HostId: 实例ID
|
|
4208
|
+
:type PathPrefix: String
|
|
4209
|
+
"""
|
|
4210
|
+
self.HostId = None
|
|
4211
|
+
|
|
4212
|
+
def _deserialize(self, params):
|
|
4213
|
+
if params.get("HostId"):
|
|
4214
|
+
self.HostId = params.get("HostId")
|
|
4215
|
+
|
|
4216
|
+
|
ksyun/common/abstract_client.py
CHANGED
|
@@ -163,6 +163,11 @@ class AbstractClient(object):
|
|
|
163
163
|
content_type = _x_protobuf
|
|
164
164
|
req.header["Content-Type"] = content_type
|
|
165
165
|
|
|
166
|
+
# 支持自定义 header
|
|
167
|
+
if options.get("CustomHeaders"):
|
|
168
|
+
for key, value in options["CustomHeaders"].items():
|
|
169
|
+
req.header[key] = value
|
|
170
|
+
|
|
166
171
|
# GET上传文件报错
|
|
167
172
|
if req.method == "GET" and content_type == _multipart_content:
|
|
168
173
|
raise SDKError("ClientError", "Invalid request method GET for multipart.")
|
{kingsoftcloud_sdk_python-1.5.8.40.dist-info → kingsoftcloud_sdk_python-1.5.8.43.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|