tencentcloud-sdk-python 3.0.1350__py2.py3-none-any.whl → 3.0.1352__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/antiddos/v20200309/models.py +0 -2
- tencentcloud/batch/v20170312/models.py +0 -8
- tencentcloud/ccc/v20200210/ccc_client.py +92 -0
- tencentcloud/ccc/v20200210/errorcodes.py +6 -0
- tencentcloud/ccc/v20200210/models.py +676 -60
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +908 -26
- tencentcloud/cvm/v20170312/cvm_client.py +1 -1
- tencentcloud/cvm/v20170312/models.py +2 -6
- tencentcloud/cynosdb/v20190107/models.py +30 -76
- tencentcloud/dbbrain/v20191016/models.py +228 -10
- tencentcloud/dbbrain/v20210527/models.py +228 -10
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- tencentcloud/dlc/v20210125/models.py +284 -0
- tencentcloud/dnspod/v20210323/models.py +2 -48
- tencentcloud/dts/v20211206/models.py +2 -0
- tencentcloud/ess/v20201111/models.py +6 -6
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/gs/v20191118/gs_client.py +23 -0
- tencentcloud/gs/v20191118/models.py +119 -0
- tencentcloud/hai/v20230812/models.py +2 -18
- tencentcloud/iotexplorer/v20190423/models.py +92 -8
- tencentcloud/iss/v20230517/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/iss_client.py +46 -0
- tencentcloud/iss/v20230517/models.py +409 -0
- tencentcloud/lighthouse/v20200324/models.py +10 -4
- tencentcloud/live/v20180801/models.py +4 -6
- tencentcloud/lke/v20231130/models.py +51 -2
- tencentcloud/mps/v20190612/models.py +8 -8
- tencentcloud/mqtt/v20240516/models.py +89 -12
- tencentcloud/ocr/v20181119/models.py +143 -0
- tencentcloud/partners/v20180321/models.py +15 -0
- tencentcloud/rce/v20201103/models.py +0 -15
- tencentcloud/tdmq/v20200217/models.py +45 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +9 -3
- tencentcloud/teo/v20220901/models.py +85 -12
- tencentcloud/tione/v20211111/errorcodes.py +105 -0
- tencentcloud/tione/v20211111/models.py +666 -0
- tencentcloud/tione/v20211111/tione_client.py +92 -0
- tencentcloud/trro/v20220325/models.py +992 -44
- tencentcloud/trro/v20220325/trro_client.py +117 -0
- tencentcloud/trtc/v20190722/models.py +19 -64
- tencentcloud/vdb/v20230616/models.py +1438 -40
- tencentcloud/vdb/v20230616/vdb_client.py +184 -0
- tencentcloud/vod/v20180717/models.py +15 -2
- tencentcloud/vod/v20240718/errorcodes.py +33 -0
- tencentcloud/vod/v20240718/models.py +1841 -0
- tencentcloud/vod/v20240718/vod_client.py +146 -0
- tencentcloud/wedata/v20210820/models.py +791 -0
- tencentcloud/wedata/v20210820/wedata_client.py +46 -0
- tencentcloud/weilingwith/v20230427/weilingwith_client.py +3 -1
- {tencentcloud_sdk_python-3.0.1350.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1350.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/RECORD +58 -58
- {tencentcloud_sdk_python-3.0.1350.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1350.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1350.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/top_level.txt +0 -0
@@ -217,6 +217,29 @@ class ClsClient(AbstractClient):
|
|
217
217
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
218
218
|
|
219
219
|
|
220
|
+
def CreateCloudProductLogCollection(self, request):
|
221
|
+
"""内部云产品接入使用相关接口
|
222
|
+
|
223
|
+
:param request: Request instance for CreateCloudProductLogCollection.
|
224
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.CreateCloudProductLogCollectionRequest`
|
225
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.CreateCloudProductLogCollectionResponse`
|
226
|
+
|
227
|
+
"""
|
228
|
+
try:
|
229
|
+
params = request._serialize()
|
230
|
+
headers = request.headers
|
231
|
+
body = self.call("CreateCloudProductLogCollection", params, headers=headers)
|
232
|
+
response = json.loads(body)
|
233
|
+
model = models.CreateCloudProductLogCollectionResponse()
|
234
|
+
model._deserialize(response["Response"])
|
235
|
+
return model
|
236
|
+
except Exception as e:
|
237
|
+
if isinstance(e, TencentCloudSDKException):
|
238
|
+
raise
|
239
|
+
else:
|
240
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
241
|
+
|
242
|
+
|
220
243
|
def CreateConfig(self, request):
|
221
244
|
"""创建采集规则配置
|
222
245
|
|
@@ -700,6 +723,29 @@ class ClsClient(AbstractClient):
|
|
700
723
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
701
724
|
|
702
725
|
|
726
|
+
def DeleteCloudProductLogCollection(self, request):
|
727
|
+
"""内部云产品接入使用相关接口
|
728
|
+
|
729
|
+
:param request: Request instance for DeleteCloudProductLogCollection.
|
730
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.DeleteCloudProductLogCollectionRequest`
|
731
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.DeleteCloudProductLogCollectionResponse`
|
732
|
+
|
733
|
+
"""
|
734
|
+
try:
|
735
|
+
params = request._serialize()
|
736
|
+
headers = request.headers
|
737
|
+
body = self.call("DeleteCloudProductLogCollection", params, headers=headers)
|
738
|
+
response = json.loads(body)
|
739
|
+
model = models.DeleteCloudProductLogCollectionResponse()
|
740
|
+
model._deserialize(response["Response"])
|
741
|
+
return model
|
742
|
+
except Exception as e:
|
743
|
+
if isinstance(e, TencentCloudSDKException):
|
744
|
+
raise
|
745
|
+
else:
|
746
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
747
|
+
|
748
|
+
|
703
749
|
def DeleteConfig(self, request):
|
704
750
|
"""删除采集规则配置
|
705
751
|
|
@@ -1206,6 +1252,29 @@ class ClsClient(AbstractClient):
|
|
1206
1252
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1207
1253
|
|
1208
1254
|
|
1255
|
+
def DescribeCloudProductLogTasks(self, request):
|
1256
|
+
"""云产品接入使用相关接口
|
1257
|
+
|
1258
|
+
:param request: Request instance for DescribeCloudProductLogTasks.
|
1259
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.DescribeCloudProductLogTasksRequest`
|
1260
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.DescribeCloudProductLogTasksResponse`
|
1261
|
+
|
1262
|
+
"""
|
1263
|
+
try:
|
1264
|
+
params = request._serialize()
|
1265
|
+
headers = request.headers
|
1266
|
+
body = self.call("DescribeCloudProductLogTasks", params, headers=headers)
|
1267
|
+
response = json.loads(body)
|
1268
|
+
model = models.DescribeCloudProductLogTasksResponse()
|
1269
|
+
model._deserialize(response["Response"])
|
1270
|
+
return model
|
1271
|
+
except Exception as e:
|
1272
|
+
if isinstance(e, TencentCloudSDKException):
|
1273
|
+
raise
|
1274
|
+
else:
|
1275
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1276
|
+
|
1277
|
+
|
1209
1278
|
def DescribeConfigExtras(self, request):
|
1210
1279
|
"""本接口用于获取特殊采集配置,特殊采集配置应用于自建K8S环境的采集Agent
|
1211
1280
|
|
@@ -1920,6 +1989,29 @@ class ClsClient(AbstractClient):
|
|
1920
1989
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1921
1990
|
|
1922
1991
|
|
1992
|
+
def ModifyCloudProductLogCollection(self, request):
|
1993
|
+
"""内部云产品接入使用相关接口
|
1994
|
+
|
1995
|
+
:param request: Request instance for ModifyCloudProductLogCollection.
|
1996
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.ModifyCloudProductLogCollectionRequest`
|
1997
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.ModifyCloudProductLogCollectionResponse`
|
1998
|
+
|
1999
|
+
"""
|
2000
|
+
try:
|
2001
|
+
params = request._serialize()
|
2002
|
+
headers = request.headers
|
2003
|
+
body = self.call("ModifyCloudProductLogCollection", params, headers=headers)
|
2004
|
+
response = json.loads(body)
|
2005
|
+
model = models.ModifyCloudProductLogCollectionResponse()
|
2006
|
+
model._deserialize(response["Response"])
|
2007
|
+
return model
|
2008
|
+
except Exception as e:
|
2009
|
+
if isinstance(e, TencentCloudSDKException):
|
2010
|
+
raise
|
2011
|
+
else:
|
2012
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2013
|
+
|
2014
|
+
|
1923
2015
|
def ModifyConfig(self, request):
|
1924
2016
|
"""修改采集规则配置
|
1925
2017
|
|