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.
Files changed (48) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/models.py +234 -156
  3. tencentcloud/ccc/v20200210/models.py +148 -236
  4. tencentcloud/cdb/v20170320/cdb_client.py +40 -17
  5. tencentcloud/cdb/v20170320/models.py +215 -68
  6. tencentcloud/cdc/v20201214/models.py +20 -20
  7. tencentcloud/cls/v20201016/cls_client.py +92 -0
  8. tencentcloud/cls/v20201016/models.py +862 -12
  9. tencentcloud/cwp/v20180228/cwp_client.py +0 -25
  10. tencentcloud/cwp/v20180228/models.py +352 -1771
  11. tencentcloud/dasb/v20191018/models.py +0 -8
  12. tencentcloud/emr/v20190103/models.py +58 -2
  13. tencentcloud/ess/v20201111/models.py +10 -8
  14. tencentcloud/essbasic/v20210526/models.py +10 -12
  15. tencentcloud/hai/v20230812/errorcodes.py +18 -0
  16. tencentcloud/hai/v20230812/models.py +229 -4
  17. tencentcloud/hunyuan/v20230901/errorcodes.py +2 -2
  18. tencentcloud/hunyuan/v20230901/hunyuan_client.py +1 -1
  19. tencentcloud/hunyuan/v20230901/models.py +19 -4
  20. tencentcloud/iai/v20180301/models.py +4 -4
  21. tencentcloud/iai/v20200303/models.py +728 -528
  22. tencentcloud/ig/__init__.py +0 -0
  23. tencentcloud/ig/v20210518/__init__.py +0 -0
  24. tencentcloud/ig/v20210518/errorcodes.py +24 -0
  25. tencentcloud/ig/v20210518/ig_client.py +49 -0
  26. tencentcloud/ig/v20210518/models.py +142 -0
  27. tencentcloud/iss/v20230517/errorcodes.py +0 -9
  28. tencentcloud/iss/v20230517/iss_client.py +0 -23
  29. tencentcloud/iss/v20230517/models.py +0 -94
  30. tencentcloud/lke/v20231130/errorcodes.py +3 -0
  31. tencentcloud/lke/v20231130/models.py +16 -16
  32. tencentcloud/mrs/v20200910/models.py +30 -0
  33. tencentcloud/redis/v20180412/models.py +6 -10
  34. tencentcloud/redis/v20180412/redis_client.py +1 -1
  35. tencentcloud/soe/v20180724/models.py +2 -2
  36. tencentcloud/ssl/v20191205/models.py +148 -0
  37. tencentcloud/tat/v20201028/models.py +2 -20
  38. tencentcloud/vpc/v20170312/errorcodes.py +3 -0
  39. tencentcloud/vpc/v20170312/models.py +79 -0
  40. tencentcloud/vpc/v20170312/vpc_client.py +23 -0
  41. tencentcloud/wedata/v20210820/errorcodes.py +9 -0
  42. tencentcloud/wedata/v20210820/models.py +447 -0
  43. tencentcloud/wedata/v20210820/wedata_client.py +69 -0
  44. {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/METADATA +1 -1
  45. {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/RECORD +48 -43
  46. {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/LICENSE +0 -0
  47. {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/WHEEL +0 -0
  48. {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