tencentcloud-sdk-python-cls 3.0.1343__tar.gz → 3.0.1345__tar.gz

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 (16) hide show
  1. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud/cls/v20201016/cls_client.py +0 -92
  5. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud/cls/v20201016/models.py +74 -1145
  6. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-cls-3.0.1345/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-cls-3.0.1343/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/README.rst +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud/cls/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud/cls/v20201016/__init__.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1343 → tencentcloud-sdk-python-cls-3.0.1345}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1343
3
+ Version: 3.0.1345
4
4
  Summary: Tencent Cloud Cls SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cls',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1343"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1345"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cls SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1343'
17
+ __version__ = '3.0.1345'
@@ -217,29 +217,6 @@ class ClsClient(AbstractClient):
217
217
  raise TencentCloudSDKException(type(e).__name__, str(e))
218
218
 
219
219
 
220
- def CreateCloudProductLogTask(self, request):
221
- """内部云产品接入使用相关接口
222
-
223
- :param request: Request instance for CreateCloudProductLogTask.
224
- :type request: :class:`tencentcloud.cls.v20201016.models.CreateCloudProductLogTaskRequest`
225
- :rtype: :class:`tencentcloud.cls.v20201016.models.CreateCloudProductLogTaskResponse`
226
-
227
- """
228
- try:
229
- params = request._serialize()
230
- headers = request.headers
231
- body = self.call("CreateCloudProductLogTask", params, headers=headers)
232
- response = json.loads(body)
233
- model = models.CreateCloudProductLogTaskResponse()
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
-
243
220
  def CreateConfig(self, request):
244
221
  """创建采集规则配置
245
222
 
@@ -723,29 +700,6 @@ class ClsClient(AbstractClient):
723
700
  raise TencentCloudSDKException(type(e).__name__, str(e))
724
701
 
725
702
 
726
- def DeleteCloudProductLogTask(self, request):
727
- """内部云产品接入使用相关接口
728
-
729
- :param request: Request instance for DeleteCloudProductLogTask.
730
- :type request: :class:`tencentcloud.cls.v20201016.models.DeleteCloudProductLogTaskRequest`
731
- :rtype: :class:`tencentcloud.cls.v20201016.models.DeleteCloudProductLogTaskResponse`
732
-
733
- """
734
- try:
735
- params = request._serialize()
736
- headers = request.headers
737
- body = self.call("DeleteCloudProductLogTask", params, headers=headers)
738
- response = json.loads(body)
739
- model = models.DeleteCloudProductLogTaskResponse()
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
-
749
703
  def DeleteConfig(self, request):
750
704
  """删除采集规则配置
751
705
 
@@ -1252,29 +1206,6 @@ class ClsClient(AbstractClient):
1252
1206
  raise TencentCloudSDKException(type(e).__name__, str(e))
1253
1207
 
1254
1208
 
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
-
1278
1209
  def DescribeConfigExtras(self, request):
1279
1210
  """本接口用于获取特殊采集配置,特殊采集配置应用于自建K8S环境的采集Agent
1280
1211
 
@@ -1989,29 +1920,6 @@ class ClsClient(AbstractClient):
1989
1920
  raise TencentCloudSDKException(type(e).__name__, str(e))
1990
1921
 
1991
1922
 
1992
- def ModifyCloudProductLogTask(self, request):
1993
- """内部云产品接入使用相关接口
1994
-
1995
- :param request: Request instance for ModifyCloudProductLogTask.
1996
- :type request: :class:`tencentcloud.cls.v20201016.models.ModifyCloudProductLogTaskRequest`
1997
- :rtype: :class:`tencentcloud.cls.v20201016.models.ModifyCloudProductLogTaskResponse`
1998
-
1999
- """
2000
- try:
2001
- params = request._serialize()
2002
- headers = request.headers
2003
- body = self.call("ModifyCloudProductLogTask", params, headers=headers)
2004
- response = json.loads(body)
2005
- model = models.ModifyCloudProductLogTaskResponse()
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
-
2015
1923
  def ModifyConfig(self, request):
2016
1924
  """修改采集规则配置
2017
1925