tencentcloud-sdk-python-cls 3.0.1439__tar.gz → 3.0.1443__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.1439 → tencentcloud-sdk-python-cls-3.0.1443}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud/cls/v20201016/cls_client.py +3 -3
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud/cls/v20201016/errorcodes.py +3 -0
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud/cls/v20201016/models.py +1063 -246
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1443/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1439/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1439 → tencentcloud-sdk-python-cls-3.0.1443}/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.1443,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -425,7 +425,7 @@ class ClsClient(AbstractClient):
|
|
|
425
425
|
|
|
426
426
|
|
|
427
427
|
def CreateExport(self, request):
|
|
428
|
-
"""
|
|
428
|
+
"""本接口仅创建下载任务。任务返回的下载地址,请用户调用[DescribeExports](https://cloud.tencent.com/document/product/614/56449)查看任务列表,其中有下载地址CosPath参数。
|
|
429
429
|
|
|
430
430
|
:param request: Request instance for CreateExport.
|
|
431
431
|
:type request: :class:`tencentcloud.cls.v20201016.models.CreateExportRequest`
|
|
@@ -701,7 +701,7 @@ class ClsClient(AbstractClient):
|
|
|
701
701
|
|
|
702
702
|
|
|
703
703
|
def DeleteAlarmShield(self, request):
|
|
704
|
-
"""
|
|
704
|
+
"""该接口用于删除告警屏蔽规则。当告警屏蔽规则在生效中或者是在失效中,无法被删除
|
|
705
705
|
|
|
706
706
|
:param request: Request instance for DeleteAlarmShield.
|
|
707
707
|
:type request: :class:`tencentcloud.cls.v20201016.models.DeleteAlarmShieldRequest`
|
|
@@ -839,7 +839,7 @@ class ClsClient(AbstractClient):
|
|
|
839
839
|
|
|
840
840
|
|
|
841
841
|
def DeleteConsumer(self, request):
|
|
842
|
-
"""
|
|
842
|
+
"""删除投递Ckafka任务
|
|
843
843
|
|
|
844
844
|
:param request: Request instance for DeleteConsumer.
|
|
845
845
|
:type request: :class:`tencentcloud.cls.v20201016.models.DeleteConsumerRequest`
|
|
@@ -29,6 +29,9 @@ FAILEDOPERATION_BINDEDALARM = 'FailedOperation.BindedAlarm'
|
|
|
29
29
|
# 桶内无相应前缀文件,请使用正确的桶、文件前缀和压缩方式。
|
|
30
30
|
FAILEDOPERATION_BUCKETNOFILE = 'FailedOperation.BucketNoFile'
|
|
31
31
|
|
|
32
|
+
# 调用云产品接口异常
|
|
33
|
+
FAILEDOPERATION_CLOUDPRODUCTINVOCATIONERROR = 'FailedOperation.CloudProductInvocationError'
|
|
34
|
+
|
|
32
35
|
# 文件解压缩失败,请选择正确的压缩方式。
|
|
33
36
|
FAILEDOPERATION_DECOMPRESSFILE = 'FailedOperation.DecompressFile'
|
|
34
37
|
|