tencentcloud-sdk-python-ckafka 3.0.1466__tar.gz → 3.0.1470__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.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/setup.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud/ckafka/v20190819/models.py +90 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud_sdk_python_ckafka.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ckafka-3.0.1470/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ckafka-3.0.1466/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/README.rst +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud/ckafka/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud/ckafka/v20190819/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud/ckafka/v20190819/ckafka_client.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud/ckafka/v20190819/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud_sdk_python_ckafka.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud_sdk_python_ckafka.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/tencentcloud_sdk_python_ckafka.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/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.1470,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ckafka SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -22098,12 +22098,30 @@ class KafkaConnectParam(AbstractModel):
|
|
|
22098
22098
|
:type BrokerAddress: str
|
|
22099
22099
|
:param _Region: CKafka连接源的实例资源地域, 跨地域时必填
|
|
22100
22100
|
:type Region: str
|
|
22101
|
+
:param _NetworkType: 网络类型:PUBLIC公网;VPC
|
|
22102
|
+
:type NetworkType: str
|
|
22103
|
+
:param _UniqVpcId: vpcId,NetworkType=VPC时必传
|
|
22104
|
+
:type UniqVpcId: str
|
|
22105
|
+
:param _ServiceVip: vip,NetworkType=VPC时必传
|
|
22106
|
+
:type ServiceVip: str
|
|
22107
|
+
:param _Port: 端口,NetworkType=VPC时必传
|
|
22108
|
+
:type Port: int
|
|
22109
|
+
:param _CrossNetResourceUniqueId: 跨云同步下需要客户传递唯一Id标志一组资源
|
|
22110
|
+
:type CrossNetResourceUniqueId: str
|
|
22111
|
+
:param _CrossNetVpcSubNetId: 跨云子网ID
|
|
22112
|
+
:type CrossNetVpcSubNetId: str
|
|
22101
22113
|
"""
|
|
22102
22114
|
self._Resource = None
|
|
22103
22115
|
self._SelfBuilt = None
|
|
22104
22116
|
self._IsUpdate = None
|
|
22105
22117
|
self._BrokerAddress = None
|
|
22106
22118
|
self._Region = None
|
|
22119
|
+
self._NetworkType = None
|
|
22120
|
+
self._UniqVpcId = None
|
|
22121
|
+
self._ServiceVip = None
|
|
22122
|
+
self._Port = None
|
|
22123
|
+
self._CrossNetResourceUniqueId = None
|
|
22124
|
+
self._CrossNetVpcSubNetId = None
|
|
22107
22125
|
|
|
22108
22126
|
@property
|
|
22109
22127
|
def Resource(self):
|
|
@@ -22161,6 +22179,72 @@ class KafkaConnectParam(AbstractModel):
|
|
|
22161
22179
|
def Region(self, Region):
|
|
22162
22180
|
self._Region = Region
|
|
22163
22181
|
|
|
22182
|
+
@property
|
|
22183
|
+
def NetworkType(self):
|
|
22184
|
+
r"""网络类型:PUBLIC公网;VPC
|
|
22185
|
+
:rtype: str
|
|
22186
|
+
"""
|
|
22187
|
+
return self._NetworkType
|
|
22188
|
+
|
|
22189
|
+
@NetworkType.setter
|
|
22190
|
+
def NetworkType(self, NetworkType):
|
|
22191
|
+
self._NetworkType = NetworkType
|
|
22192
|
+
|
|
22193
|
+
@property
|
|
22194
|
+
def UniqVpcId(self):
|
|
22195
|
+
r"""vpcId,NetworkType=VPC时必传
|
|
22196
|
+
:rtype: str
|
|
22197
|
+
"""
|
|
22198
|
+
return self._UniqVpcId
|
|
22199
|
+
|
|
22200
|
+
@UniqVpcId.setter
|
|
22201
|
+
def UniqVpcId(self, UniqVpcId):
|
|
22202
|
+
self._UniqVpcId = UniqVpcId
|
|
22203
|
+
|
|
22204
|
+
@property
|
|
22205
|
+
def ServiceVip(self):
|
|
22206
|
+
r"""vip,NetworkType=VPC时必传
|
|
22207
|
+
:rtype: str
|
|
22208
|
+
"""
|
|
22209
|
+
return self._ServiceVip
|
|
22210
|
+
|
|
22211
|
+
@ServiceVip.setter
|
|
22212
|
+
def ServiceVip(self, ServiceVip):
|
|
22213
|
+
self._ServiceVip = ServiceVip
|
|
22214
|
+
|
|
22215
|
+
@property
|
|
22216
|
+
def Port(self):
|
|
22217
|
+
r"""端口,NetworkType=VPC时必传
|
|
22218
|
+
:rtype: int
|
|
22219
|
+
"""
|
|
22220
|
+
return self._Port
|
|
22221
|
+
|
|
22222
|
+
@Port.setter
|
|
22223
|
+
def Port(self, Port):
|
|
22224
|
+
self._Port = Port
|
|
22225
|
+
|
|
22226
|
+
@property
|
|
22227
|
+
def CrossNetResourceUniqueId(self):
|
|
22228
|
+
r"""跨云同步下需要客户传递唯一Id标志一组资源
|
|
22229
|
+
:rtype: str
|
|
22230
|
+
"""
|
|
22231
|
+
return self._CrossNetResourceUniqueId
|
|
22232
|
+
|
|
22233
|
+
@CrossNetResourceUniqueId.setter
|
|
22234
|
+
def CrossNetResourceUniqueId(self, CrossNetResourceUniqueId):
|
|
22235
|
+
self._CrossNetResourceUniqueId = CrossNetResourceUniqueId
|
|
22236
|
+
|
|
22237
|
+
@property
|
|
22238
|
+
def CrossNetVpcSubNetId(self):
|
|
22239
|
+
r"""跨云子网ID
|
|
22240
|
+
:rtype: str
|
|
22241
|
+
"""
|
|
22242
|
+
return self._CrossNetVpcSubNetId
|
|
22243
|
+
|
|
22244
|
+
@CrossNetVpcSubNetId.setter
|
|
22245
|
+
def CrossNetVpcSubNetId(self, CrossNetVpcSubNetId):
|
|
22246
|
+
self._CrossNetVpcSubNetId = CrossNetVpcSubNetId
|
|
22247
|
+
|
|
22164
22248
|
|
|
22165
22249
|
def _deserialize(self, params):
|
|
22166
22250
|
self._Resource = params.get("Resource")
|
|
@@ -22168,6 +22252,12 @@ class KafkaConnectParam(AbstractModel):
|
|
|
22168
22252
|
self._IsUpdate = params.get("IsUpdate")
|
|
22169
22253
|
self._BrokerAddress = params.get("BrokerAddress")
|
|
22170
22254
|
self._Region = params.get("Region")
|
|
22255
|
+
self._NetworkType = params.get("NetworkType")
|
|
22256
|
+
self._UniqVpcId = params.get("UniqVpcId")
|
|
22257
|
+
self._ServiceVip = params.get("ServiceVip")
|
|
22258
|
+
self._Port = params.get("Port")
|
|
22259
|
+
self._CrossNetResourceUniqueId = params.get("CrossNetResourceUniqueId")
|
|
22260
|
+
self._CrossNetVpcSubNetId = params.get("CrossNetVpcSubNetId")
|
|
22171
22261
|
memeber_set = set(params.keys())
|
|
22172
22262
|
for name, value in vars(self).items():
|
|
22173
22263
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1470
|
tencentcloud-sdk-python-ckafka-3.0.1466/tencentcloud_sdk_python_ckafka.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1466
|
{tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1470}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|