tencentcloud-sdk-python-cls 3.0.1342__tar.gz → 3.0.1353__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.
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud/cls/v20201016/cls_client.py +18 -18
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud/cls/v20201016/models.py +101 -600
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1353/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1342/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1342 → tencentcloud-sdk-python-cls-3.0.1353}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1353"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -217,20 +217,20 @@ class ClsClient(AbstractClient):
|
|
|
217
217
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
218
218
|
|
|
219
219
|
|
|
220
|
-
def
|
|
220
|
+
def CreateCloudProductLogCollection(self, request):
|
|
221
221
|
"""内部云产品接入使用相关接口
|
|
222
222
|
|
|
223
|
-
:param request: Request instance for
|
|
224
|
-
:type request: :class:`tencentcloud.cls.v20201016.models.
|
|
225
|
-
:rtype: :class:`tencentcloud.cls.v20201016.models.
|
|
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
226
|
|
|
227
227
|
"""
|
|
228
228
|
try:
|
|
229
229
|
params = request._serialize()
|
|
230
230
|
headers = request.headers
|
|
231
|
-
body = self.call("
|
|
231
|
+
body = self.call("CreateCloudProductLogCollection", params, headers=headers)
|
|
232
232
|
response = json.loads(body)
|
|
233
|
-
model = models.
|
|
233
|
+
model = models.CreateCloudProductLogCollectionResponse()
|
|
234
234
|
model._deserialize(response["Response"])
|
|
235
235
|
return model
|
|
236
236
|
except Exception as e:
|
|
@@ -723,20 +723,20 @@ class ClsClient(AbstractClient):
|
|
|
723
723
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
724
724
|
|
|
725
725
|
|
|
726
|
-
def
|
|
726
|
+
def DeleteCloudProductLogCollection(self, request):
|
|
727
727
|
"""内部云产品接入使用相关接口
|
|
728
728
|
|
|
729
|
-
:param request: Request instance for
|
|
730
|
-
:type request: :class:`tencentcloud.cls.v20201016.models.
|
|
731
|
-
:rtype: :class:`tencentcloud.cls.v20201016.models.
|
|
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
732
|
|
|
733
733
|
"""
|
|
734
734
|
try:
|
|
735
735
|
params = request._serialize()
|
|
736
736
|
headers = request.headers
|
|
737
|
-
body = self.call("
|
|
737
|
+
body = self.call("DeleteCloudProductLogCollection", params, headers=headers)
|
|
738
738
|
response = json.loads(body)
|
|
739
|
-
model = models.
|
|
739
|
+
model = models.DeleteCloudProductLogCollectionResponse()
|
|
740
740
|
model._deserialize(response["Response"])
|
|
741
741
|
return model
|
|
742
742
|
except Exception as e:
|
|
@@ -1989,20 +1989,20 @@ class ClsClient(AbstractClient):
|
|
|
1989
1989
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1990
1990
|
|
|
1991
1991
|
|
|
1992
|
-
def
|
|
1992
|
+
def ModifyCloudProductLogCollection(self, request):
|
|
1993
1993
|
"""内部云产品接入使用相关接口
|
|
1994
1994
|
|
|
1995
|
-
:param request: Request instance for
|
|
1996
|
-
:type request: :class:`tencentcloud.cls.v20201016.models.
|
|
1997
|
-
:rtype: :class:`tencentcloud.cls.v20201016.models.
|
|
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
1998
|
|
|
1999
1999
|
"""
|
|
2000
2000
|
try:
|
|
2001
2001
|
params = request._serialize()
|
|
2002
2002
|
headers = request.headers
|
|
2003
|
-
body = self.call("
|
|
2003
|
+
body = self.call("ModifyCloudProductLogCollection", params, headers=headers)
|
|
2004
2004
|
response = json.loads(body)
|
|
2005
|
-
model = models.
|
|
2005
|
+
model = models.ModifyCloudProductLogCollectionResponse()
|
|
2006
2006
|
model._deserialize(response["Response"])
|
|
2007
2007
|
return model
|
|
2008
2008
|
except Exception as e:
|