tencentcloud-sdk-python-ckafka 3.0.1287__tar.gz → 3.0.1304__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.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/setup.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud/ckafka/v20190819/models.py +62 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud_sdk_python_ckafka.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ckafka-3.0.1304/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ckafka-3.0.1287/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/README.rst +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud/ckafka/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud/ckafka/v20190819/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud/ckafka/v20190819/ckafka_client.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud/ckafka/v20190819/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud_sdk_python_ckafka.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud_sdk_python_ckafka.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/tencentcloud_sdk_python_ckafka.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/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.1304"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ckafka SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -13216,10 +13216,19 @@ class DescribeDatahubTopicsRequest(AbstractModel):
|
|
|
13216
13216
|
:type Offset: int
|
|
13217
13217
|
:param _Limit: 本次返回结果的最大个数,默认为50,最大值为50
|
|
13218
13218
|
:type Limit: int
|
|
13219
|
+
:param _QueryFromConnectResource: 是否从连接查询topic列表
|
|
13220
|
+
:type QueryFromConnectResource: bool
|
|
13221
|
+
:param _ConnectResourceId: 连接的ID
|
|
13222
|
+
:type ConnectResourceId: str
|
|
13223
|
+
:param _TopicRegularExpression: topic资源表达式
|
|
13224
|
+
:type TopicRegularExpression: str
|
|
13219
13225
|
"""
|
|
13220
13226
|
self._SearchWord = None
|
|
13221
13227
|
self._Offset = None
|
|
13222
13228
|
self._Limit = None
|
|
13229
|
+
self._QueryFromConnectResource = None
|
|
13230
|
+
self._ConnectResourceId = None
|
|
13231
|
+
self._TopicRegularExpression = None
|
|
13223
13232
|
|
|
13224
13233
|
@property
|
|
13225
13234
|
def SearchWord(self):
|
|
@@ -13254,11 +13263,47 @@ class DescribeDatahubTopicsRequest(AbstractModel):
|
|
|
13254
13263
|
def Limit(self, Limit):
|
|
13255
13264
|
self._Limit = Limit
|
|
13256
13265
|
|
|
13266
|
+
@property
|
|
13267
|
+
def QueryFromConnectResource(self):
|
|
13268
|
+
"""是否从连接查询topic列表
|
|
13269
|
+
:rtype: bool
|
|
13270
|
+
"""
|
|
13271
|
+
return self._QueryFromConnectResource
|
|
13272
|
+
|
|
13273
|
+
@QueryFromConnectResource.setter
|
|
13274
|
+
def QueryFromConnectResource(self, QueryFromConnectResource):
|
|
13275
|
+
self._QueryFromConnectResource = QueryFromConnectResource
|
|
13276
|
+
|
|
13277
|
+
@property
|
|
13278
|
+
def ConnectResourceId(self):
|
|
13279
|
+
"""连接的ID
|
|
13280
|
+
:rtype: str
|
|
13281
|
+
"""
|
|
13282
|
+
return self._ConnectResourceId
|
|
13283
|
+
|
|
13284
|
+
@ConnectResourceId.setter
|
|
13285
|
+
def ConnectResourceId(self, ConnectResourceId):
|
|
13286
|
+
self._ConnectResourceId = ConnectResourceId
|
|
13287
|
+
|
|
13288
|
+
@property
|
|
13289
|
+
def TopicRegularExpression(self):
|
|
13290
|
+
"""topic资源表达式
|
|
13291
|
+
:rtype: str
|
|
13292
|
+
"""
|
|
13293
|
+
return self._TopicRegularExpression
|
|
13294
|
+
|
|
13295
|
+
@TopicRegularExpression.setter
|
|
13296
|
+
def TopicRegularExpression(self, TopicRegularExpression):
|
|
13297
|
+
self._TopicRegularExpression = TopicRegularExpression
|
|
13298
|
+
|
|
13257
13299
|
|
|
13258
13300
|
def _deserialize(self, params):
|
|
13259
13301
|
self._SearchWord = params.get("SearchWord")
|
|
13260
13302
|
self._Offset = params.get("Offset")
|
|
13261
13303
|
self._Limit = params.get("Limit")
|
|
13304
|
+
self._QueryFromConnectResource = params.get("QueryFromConnectResource")
|
|
13305
|
+
self._ConnectResourceId = params.get("ConnectResourceId")
|
|
13306
|
+
self._TopicRegularExpression = params.get("TopicRegularExpression")
|
|
13262
13307
|
memeber_set = set(params.keys())
|
|
13263
13308
|
for name, value in vars(self).items():
|
|
13264
13309
|
property_name = name[1:]
|
|
@@ -22449,6 +22494,9 @@ class KafkaParam(AbstractModel):
|
|
|
22449
22494
|
:param _KeepPartition: 数据同步专用参数, 当通过时,希望下游的消息写入分区与上游的一致,则填true,但下游分区小于上游时,会报错; 不需要一致则为false, 默认为false
|
|
22450
22495
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
22451
22496
|
:type KeepPartition: bool
|
|
22497
|
+
:param _TopicRegularExpression: 正则匹配Topic列表
|
|
22498
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
22499
|
+
:type TopicRegularExpression: str
|
|
22452
22500
|
"""
|
|
22453
22501
|
self._SelfBuilt = None
|
|
22454
22502
|
self._Resource = None
|
|
@@ -22468,6 +22516,7 @@ class KafkaParam(AbstractModel):
|
|
|
22468
22516
|
self._MsgMultiple = None
|
|
22469
22517
|
self._ConnectorSyncType = None
|
|
22470
22518
|
self._KeepPartition = None
|
|
22519
|
+
self._TopicRegularExpression = None
|
|
22471
22520
|
|
|
22472
22521
|
@property
|
|
22473
22522
|
def SelfBuilt(self):
|
|
@@ -22682,6 +22731,18 @@ class KafkaParam(AbstractModel):
|
|
|
22682
22731
|
def KeepPartition(self, KeepPartition):
|
|
22683
22732
|
self._KeepPartition = KeepPartition
|
|
22684
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
|
+
|
|
22685
22746
|
|
|
22686
22747
|
def _deserialize(self, params):
|
|
22687
22748
|
self._SelfBuilt = params.get("SelfBuilt")
|
|
@@ -22707,6 +22768,7 @@ class KafkaParam(AbstractModel):
|
|
|
22707
22768
|
self._MsgMultiple = params.get("MsgMultiple")
|
|
22708
22769
|
self._ConnectorSyncType = params.get("ConnectorSyncType")
|
|
22709
22770
|
self._KeepPartition = params.get("KeepPartition")
|
|
22771
|
+
self._TopicRegularExpression = params.get("TopicRegularExpression")
|
|
22710
22772
|
memeber_set = set(params.keys())
|
|
22711
22773
|
for name, value in vars(self).items():
|
|
22712
22774
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1304
|
tencentcloud-sdk-python-ckafka-3.0.1287/tencentcloud_sdk_python_ckafka.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1287
|
{tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-ckafka-3.0.1287 → tencentcloud-sdk-python-ckafka-3.0.1304}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|