tencentcloud-sdk-python 3.0.1314__py2.py3-none-any.whl → 3.0.1316__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/aiart/v20221229/models.py +4 -4
- tencentcloud/batch/v20170312/models.py +4 -4
- tencentcloud/bh/v20230418/models.py +783 -2
- tencentcloud/cbs/v20170312/models.py +21 -4
- tencentcloud/cfw/v20190904/cfw_client.py +0 -25
- tencentcloud/cfw/v20190904/models.py +0 -374
- tencentcloud/chdfs/v20201112/models.py +0 -6
- tencentcloud/ckafka/v20190819/models.py +17 -2
- tencentcloud/cls/v20201016/models.py +25 -4
- tencentcloud/cvm/v20170312/models.py +4 -4
- tencentcloud/cwp/v20180228/cwp_client.py +0 -50
- tencentcloud/cwp/v20180228/models.py +83 -747
- tencentcloud/dsgc/v20190723/models.py +15 -0
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/facefusion/v20220927/models.py +4 -4
- tencentcloud/lighthouse/v20200324/models.py +180 -6
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/lkeap/v20240522/lkeap_client.py +2 -1
- tencentcloud/lkeap/v20240522/models.py +12 -2
- tencentcloud/mna/v20210119/models.py +0 -36
- tencentcloud/mongodb/v20190725/models.py +26 -14
- tencentcloud/monitor/v20180724/models.py +8 -0
- tencentcloud/mps/v20190612/models.py +136 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +6 -0
- tencentcloud/mqtt/v20240516/models.py +2003 -195
- tencentcloud/mqtt/v20240516/mqtt_client.py +255 -0
- tencentcloud/ocr/v20181119/models.py +45 -0
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/models.py +758 -0
- tencentcloud/ssl/v20191205/ssl_client.py +46 -0
- tencentcloud/tccatalog/v20241024/models.py +30 -0
- tencentcloud/tcr/v20190924/models.py +4 -0
- tencentcloud/tmt/v20180321/models.py +4 -0
- tencentcloud/trtc/v20190722/models.py +0 -4
- {tencentcloud_sdk_python-3.0.1314.dist-info → tencentcloud_sdk_python-3.0.1316.dist-info}/METADATA +3 -1
- {tencentcloud_sdk_python-3.0.1314.dist-info → tencentcloud_sdk_python-3.0.1316.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1314.dist-info → tencentcloud_sdk_python-3.0.1316.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1314.dist-info → tencentcloud_sdk_python-3.0.1316.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1314.dist-info → tencentcloud_sdk_python-3.0.1316.dist-info}/top_level.txt +0 -0
@@ -3751,7 +3751,7 @@ class DataDisk(AbstractModel):
|
|
3751
3751
|
:type DiskSize: int
|
3752
3752
|
:param _DiskType: 数据盘类型。数据盘类型限制详见[存储概述](https://cloud.tencent.com/document/product/213/4952)。取值范围:<br /><li>LOCAL_BASIC:本地硬盘<br /> <li>LOCAL_SSD:本地SSD硬盘<br /><li>LOCAL_NVME:本地NVME硬盘,与InstanceType强相关,不支持指定<br /><li>LOCAL_PRO:本地HDD硬盘,与InstanceType强相关,不支持指定<br /><li>CLOUD_BASIC:普通云硬盘<br /><li> CLOUD_PREMIUM:高性能云硬盘<br /><li>CLOUD_SSD:SSD云硬盘<br /><li> CLOUD_HSSD:增强型SSD云硬盘<br /> <li>CLOUD_TSSD:极速型SSD云硬盘<br /><li>CLOUD_BSSD:通用型SSD云硬盘<br /><br />默认取值:LOCAL_BASIC。<br /><br />该参数对`ResizeInstanceDisk`接口无效。</li></li></li> </li> </li></li></li></li></li></li>
|
3753
3753
|
:type DiskType: str
|
3754
|
-
:param _DiskId: 数据盘ID。
|
3754
|
+
:param _DiskId: 数据盘ID。
|
3755
3755
|
该参数目前仅用于`DescribeInstances`等查询类接口的返回参数,不可用于`RunInstances`等写接口的入参。
|
3756
3756
|
:type DiskId: str
|
3757
3757
|
:param _DeleteWithInstance: 数据盘是否随子机销毁。取值范围:
|
@@ -3832,7 +3832,7 @@ class DataDisk(AbstractModel):
|
|
3832
3832
|
|
3833
3833
|
@property
|
3834
3834
|
def DiskId(self):
|
3835
|
-
"""数据盘ID。
|
3835
|
+
"""数据盘ID。
|
3836
3836
|
该参数目前仅用于`DescribeInstances`等查询类接口的返回参数,不可用于`RunInstances`等写接口的入参。
|
3837
3837
|
:rtype: str
|
3838
3838
|
"""
|
@@ -20706,7 +20706,7 @@ class SystemDisk(AbstractModel):
|
|
20706
20706
|
<li>CLOUD_TSSD:极速型SSD云硬盘</li><br>
|
20707
20707
|
默认取值:当前有库存的硬盘类型。
|
20708
20708
|
:type DiskType: str
|
20709
|
-
:param _DiskId: 系统盘ID。
|
20709
|
+
:param _DiskId: 系统盘ID。
|
20710
20710
|
该参数目前仅用于`DescribeInstances`等查询类接口的返回参数,不可用于`RunInstances`等写接口的入参。
|
20711
20711
|
:type DiskId: str
|
20712
20712
|
:param _DiskSize: 系统盘大小,单位:GB。默认值为 50
|
@@ -20748,7 +20748,7 @@ class SystemDisk(AbstractModel):
|
|
20748
20748
|
|
20749
20749
|
@property
|
20750
20750
|
def DiskId(self):
|
20751
|
-
"""系统盘ID。
|
20751
|
+
"""系统盘ID。
|
20752
20752
|
该参数目前仅用于`DescribeInstances`等查询类接口的返回参数,不可用于`RunInstances`等写接口的入参。
|
20753
20753
|
:rtype: str
|
20754
20754
|
"""
|
@@ -2812,31 +2812,6 @@ class CwpClient(AbstractClient):
|
|
2812
2812
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2813
2813
|
|
2814
2814
|
|
2815
|
-
def DescribeAttackLogs(self, request):
|
2816
|
-
"""DescribeAttackEvents 代替
|
2817
|
-
|
2818
|
-
按分页形式展示网络攻击日志列表
|
2819
|
-
|
2820
|
-
:param request: Request instance for DescribeAttackLogs.
|
2821
|
-
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackLogsRequest`
|
2822
|
-
:rtype: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackLogsResponse`
|
2823
|
-
|
2824
|
-
"""
|
2825
|
-
try:
|
2826
|
-
params = request._serialize()
|
2827
|
-
headers = request.headers
|
2828
|
-
body = self.call("DescribeAttackLogs", params, headers=headers)
|
2829
|
-
response = json.loads(body)
|
2830
|
-
model = models.DescribeAttackLogsResponse()
|
2831
|
-
model._deserialize(response["Response"])
|
2832
|
-
return model
|
2833
|
-
except Exception as e:
|
2834
|
-
if isinstance(e, TencentCloudSDKException):
|
2835
|
-
raise
|
2836
|
-
else:
|
2837
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2838
|
-
|
2839
|
-
|
2840
2815
|
def DescribeAttackStatistics(self, request):
|
2841
2816
|
"""网络攻击数据统计
|
2842
2817
|
|
@@ -3987,31 +3962,6 @@ class CwpClient(AbstractClient):
|
|
3987
3962
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3988
3963
|
|
3989
3964
|
|
3990
|
-
def DescribeComponentStatistics(self, request):
|
3991
|
-
"""接口已无效
|
3992
|
-
|
3993
|
-
本接口 (DescribeComponentStatistics) 用于获取组件统计列表数据。
|
3994
|
-
|
3995
|
-
:param request: Request instance for DescribeComponentStatistics.
|
3996
|
-
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeComponentStatisticsRequest`
|
3997
|
-
:rtype: :class:`tencentcloud.cwp.v20180228.models.DescribeComponentStatisticsResponse`
|
3998
|
-
|
3999
|
-
"""
|
4000
|
-
try:
|
4001
|
-
params = request._serialize()
|
4002
|
-
headers = request.headers
|
4003
|
-
body = self.call("DescribeComponentStatistics", params, headers=headers)
|
4004
|
-
response = json.loads(body)
|
4005
|
-
model = models.DescribeComponentStatisticsResponse()
|
4006
|
-
model._deserialize(response["Response"])
|
4007
|
-
return model
|
4008
|
-
except Exception as e:
|
4009
|
-
if isinstance(e, TencentCloudSDKException):
|
4010
|
-
raise
|
4011
|
-
else:
|
4012
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4013
|
-
|
4014
|
-
|
4015
3965
|
def DescribeDefenceEventDetail(self, request):
|
4016
3966
|
"""获取漏洞防御事件详情
|
4017
3967
|
|