tencentcloud-sdk-python 3.0.1263__py2.py3-none-any.whl → 3.0.1265__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +234 -156
- tencentcloud/ccc/v20200210/models.py +148 -236
- tencentcloud/cdb/v20170320/cdb_client.py +40 -17
- tencentcloud/cdb/v20170320/models.py +215 -68
- tencentcloud/cdc/v20201214/models.py +20 -20
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +862 -12
- tencentcloud/cwp/v20180228/cwp_client.py +0 -25
- tencentcloud/cwp/v20180228/models.py +352 -1771
- tencentcloud/dasb/v20191018/models.py +0 -8
- tencentcloud/emr/v20190103/models.py +58 -2
- tencentcloud/ess/v20201111/models.py +10 -8
- tencentcloud/essbasic/v20210526/models.py +10 -12
- tencentcloud/hai/v20230812/errorcodes.py +18 -0
- tencentcloud/hai/v20230812/models.py +229 -4
- tencentcloud/hunyuan/v20230901/errorcodes.py +2 -2
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +19 -4
- tencentcloud/iai/v20180301/models.py +4 -4
- tencentcloud/iai/v20200303/models.py +728 -528
- tencentcloud/ig/__init__.py +0 -0
- tencentcloud/ig/v20210518/__init__.py +0 -0
- tencentcloud/ig/v20210518/errorcodes.py +24 -0
- tencentcloud/ig/v20210518/ig_client.py +49 -0
- tencentcloud/ig/v20210518/models.py +142 -0
- tencentcloud/iss/v20230517/errorcodes.py +0 -9
- tencentcloud/iss/v20230517/iss_client.py +0 -23
- tencentcloud/iss/v20230517/models.py +0 -94
- tencentcloud/lke/v20231130/errorcodes.py +3 -0
- tencentcloud/lke/v20231130/models.py +16 -16
- tencentcloud/mrs/v20200910/models.py +30 -0
- tencentcloud/redis/v20180412/models.py +6 -10
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/soe/v20180724/models.py +2 -2
- tencentcloud/ssl/v20191205/models.py +148 -0
- tencentcloud/tat/v20201028/models.py +2 -20
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +79 -0
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- tencentcloud/wedata/v20210820/errorcodes.py +9 -0
- tencentcloud/wedata/v20210820/models.py +447 -0
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/RECORD +48 -43
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/top_level.txt +0 -0
@@ -325,31 +325,6 @@ class CwpClient(AbstractClient):
|
|
325
325
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
326
326
|
|
327
327
|
|
328
|
-
def CreateCloudProtectServiceOrderRecord(self, request):
|
329
|
-
"""云护航计费产品已下线
|
330
|
-
|
331
|
-
云护航服务使用完成后,该接口可以确认收货
|
332
|
-
|
333
|
-
:param request: Request instance for CreateCloudProtectServiceOrderRecord.
|
334
|
-
:type request: :class:`tencentcloud.cwp.v20180228.models.CreateCloudProtectServiceOrderRecordRequest`
|
335
|
-
:rtype: :class:`tencentcloud.cwp.v20180228.models.CreateCloudProtectServiceOrderRecordResponse`
|
336
|
-
|
337
|
-
"""
|
338
|
-
try:
|
339
|
-
params = request._serialize()
|
340
|
-
headers = request.headers
|
341
|
-
body = self.call("CreateCloudProtectServiceOrderRecord", params, headers=headers)
|
342
|
-
response = json.loads(body)
|
343
|
-
model = models.CreateCloudProtectServiceOrderRecordResponse()
|
344
|
-
model._deserialize(response["Response"])
|
345
|
-
return model
|
346
|
-
except Exception as e:
|
347
|
-
if isinstance(e, TencentCloudSDKException):
|
348
|
-
raise
|
349
|
-
else:
|
350
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
351
|
-
|
352
|
-
|
353
328
|
def CreateEmergencyVulScan(self, request):
|
354
329
|
"""创建应急漏洞扫描任务
|
355
330
|
|