tencentcloud-sdk-python 3.0.1351__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.
Files changed (38) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cls/v20201016/cls_client.py +92 -0
  3. tencentcloud/cls/v20201016/models.py +908 -26
  4. tencentcloud/cvm/v20170312/cvm_client.py +1 -1
  5. tencentcloud/cvm/v20170312/models.py +2 -6
  6. tencentcloud/dbbrain/v20191016/models.py +228 -10
  7. tencentcloud/dbbrain/v20210527/models.py +228 -10
  8. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  9. tencentcloud/dlc/v20210125/errorcodes.py +3 -0
  10. tencentcloud/dlc/v20210125/models.py +284 -0
  11. tencentcloud/ess/v20201111/models.py +6 -6
  12. tencentcloud/essbasic/v20210526/models.py +2 -2
  13. tencentcloud/gs/v20191118/models.py +35 -0
  14. tencentcloud/hai/v20230812/models.py +2 -18
  15. tencentcloud/iotexplorer/v20190423/models.py +92 -8
  16. tencentcloud/live/v20180801/models.py +4 -6
  17. tencentcloud/mps/v20190612/models.py +8 -8
  18. tencentcloud/mqtt/v20240516/models.py +89 -12
  19. tencentcloud/ocr/v20181119/models.py +143 -0
  20. tencentcloud/partners/v20180321/models.py +15 -0
  21. tencentcloud/tdmq/v20200217/models.py +45 -0
  22. tencentcloud/teo/v20220901/models.py +85 -12
  23. tencentcloud/trro/v20220325/models.py +992 -44
  24. tencentcloud/trro/v20220325/trro_client.py +117 -0
  25. tencentcloud/vdb/v20230616/models.py +1438 -40
  26. tencentcloud/vdb/v20230616/vdb_client.py +184 -0
  27. tencentcloud/vod/v20180717/models.py +15 -0
  28. tencentcloud/vod/v20240718/errorcodes.py +33 -0
  29. tencentcloud/vod/v20240718/models.py +1841 -0
  30. tencentcloud/vod/v20240718/vod_client.py +146 -0
  31. tencentcloud/wedata/v20210820/models.py +791 -0
  32. tencentcloud/wedata/v20210820/wedata_client.py +46 -0
  33. tencentcloud/weilingwith/v20230427/weilingwith_client.py +3 -1
  34. {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/METADATA +1 -1
  35. {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/RECORD +38 -38
  36. {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/LICENSE +0 -0
  37. {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/WHEEL +0 -0
  38. {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1352.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1351'
17
+ __version__ = '3.0.1352'
@@ -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