tencentcloud-sdk-python-cls 3.0.1196__tar.gz → 3.0.1198__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.1196 → tencentcloud-sdk-python-cls-3.0.1198}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud/cls/v20201016/cls_client.py +0 -12
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud/cls/v20201016/models.py +5 -1
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1198/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1196/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1196 → tencentcloud-sdk-python-cls-3.0.1198}/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.1198"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2250,18 +2250,6 @@ class ClsClient(AbstractClient):
|
|
|
2250
2250
|
|
|
2251
2251
|
本接口用于将日志写入到指定的日志主题。
|
|
2252
2252
|
|
|
2253
|
-
日志服务提供以下两种模式:
|
|
2254
|
-
|
|
2255
|
-
#### 负载均衡模式
|
|
2256
|
-
|
|
2257
|
-
系统根据当前日志主题下所有可读写的分区,遵循负载均衡原则自动分配写入的目标分区。该模式适合消费不保序的场景。
|
|
2258
|
-
|
|
2259
|
-
#### 哈希路由模式
|
|
2260
|
-
|
|
2261
|
-
系统根据携带的哈希值(X-CLS-HashKey)将数据写入到符合范围要求的目标分区。例如,可以将某个日志源端通过 hashkey 与某个主题分区强绑定,这样可以保证数据在该分区上写入和消费是严格保序的。
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
2253
|
#### 输入参数(pb二进制流,位于body中)
|
|
2266
2254
|
|
|
2267
2255
|
| 字段名 | 类型 | 位置 | 必须 | 含义 |
|
|
@@ -21544,7 +21544,7 @@ class UploadLogRequest(AbstractModel):
|
|
|
21544
21544
|
r"""
|
|
21545
21545
|
:param _TopicId: 主题id
|
|
21546
21546
|
:type TopicId: str
|
|
21547
|
-
:param _HashKey:
|
|
21547
|
+
:param _HashKey: 该参数已废弃,请勿使用
|
|
21548
21548
|
:type HashKey: str
|
|
21549
21549
|
:param _CompressType: 压缩方法
|
|
21550
21550
|
:type CompressType: str
|
|
@@ -21563,10 +21563,14 @@ class UploadLogRequest(AbstractModel):
|
|
|
21563
21563
|
|
|
21564
21564
|
@property
|
|
21565
21565
|
def HashKey(self):
|
|
21566
|
+
warnings.warn("parameter `HashKey` is deprecated", DeprecationWarning)
|
|
21567
|
+
|
|
21566
21568
|
return self._HashKey
|
|
21567
21569
|
|
|
21568
21570
|
@HashKey.setter
|
|
21569
21571
|
def HashKey(self, HashKey):
|
|
21572
|
+
warnings.warn("parameter `HashKey` is deprecated", DeprecationWarning)
|
|
21573
|
+
|
|
21570
21574
|
self._HashKey = HashKey
|
|
21571
21575
|
|
|
21572
21576
|
@property
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1198
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1196
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|