tencentcloud-sdk-python-ckafka 3.0.1293__tar.gz → 3.0.1297__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-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/setup.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud/ckafka/v20190819/models.py +17 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud_sdk_python_ckafka.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ckafka-3.0.1297/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ckafka-3.0.1293/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/README.rst +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud/ckafka/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud/ckafka/v20190819/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud/ckafka/v20190819/ckafka_client.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud/ckafka/v20190819/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud_sdk_python_ckafka.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud_sdk_python_ckafka.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/tencentcloud_sdk_python_ckafka.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ckafka',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1297"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ckafka SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -22494,6 +22494,9 @@ class KafkaParam(AbstractModel):
|
|
|
22494
22494
|
:param _KeepPartition: 数据同步专用参数, 当通过时,希望下游的消息写入分区与上游的一致,则填true,但下游分区小于上游时,会报错; 不需要一致则为false, 默认为false
|
|
22495
22495
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
22496
22496
|
:type KeepPartition: bool
|
|
22497
|
+
:param _TopicRegularExpression: 正则匹配Topic列表
|
|
22498
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
22499
|
+
:type TopicRegularExpression: str
|
|
22497
22500
|
"""
|
|
22498
22501
|
self._SelfBuilt = None
|
|
22499
22502
|
self._Resource = None
|
|
@@ -22513,6 +22516,7 @@ class KafkaParam(AbstractModel):
|
|
|
22513
22516
|
self._MsgMultiple = None
|
|
22514
22517
|
self._ConnectorSyncType = None
|
|
22515
22518
|
self._KeepPartition = None
|
|
22519
|
+
self._TopicRegularExpression = None
|
|
22516
22520
|
|
|
22517
22521
|
@property
|
|
22518
22522
|
def SelfBuilt(self):
|
|
@@ -22727,6 +22731,18 @@ class KafkaParam(AbstractModel):
|
|
|
22727
22731
|
def KeepPartition(self, KeepPartition):
|
|
22728
22732
|
self._KeepPartition = KeepPartition
|
|
22729
22733
|
|
|
22734
|
+
@property
|
|
22735
|
+
def TopicRegularExpression(self):
|
|
22736
|
+
"""正则匹配Topic列表
|
|
22737
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
22738
|
+
:rtype: str
|
|
22739
|
+
"""
|
|
22740
|
+
return self._TopicRegularExpression
|
|
22741
|
+
|
|
22742
|
+
@TopicRegularExpression.setter
|
|
22743
|
+
def TopicRegularExpression(self, TopicRegularExpression):
|
|
22744
|
+
self._TopicRegularExpression = TopicRegularExpression
|
|
22745
|
+
|
|
22730
22746
|
|
|
22731
22747
|
def _deserialize(self, params):
|
|
22732
22748
|
self._SelfBuilt = params.get("SelfBuilt")
|
|
@@ -22752,6 +22768,7 @@ class KafkaParam(AbstractModel):
|
|
|
22752
22768
|
self._MsgMultiple = params.get("MsgMultiple")
|
|
22753
22769
|
self._ConnectorSyncType = params.get("ConnectorSyncType")
|
|
22754
22770
|
self._KeepPartition = params.get("KeepPartition")
|
|
22771
|
+
self._TopicRegularExpression = params.get("TopicRegularExpression")
|
|
22755
22772
|
memeber_set = set(params.keys())
|
|
22756
22773
|
for name, value in vars(self).items():
|
|
22757
22774
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1297
|
tencentcloud-sdk-python-ckafka-3.0.1293/tencentcloud_sdk_python_ckafka.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1293
|
{tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-ckafka-3.0.1293 → tencentcloud-sdk-python-ckafka-3.0.1297}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|