tencentcloud-sdk-python-ckafka 3.0.1466__tar.gz → 3.0.1475__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.1475}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/setup.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/models.py +135 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud_sdk_python_ckafka.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ckafka-3.0.1475/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.1475}/README.rst +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/ckafka_client.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud_sdk_python_ckafka.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud_sdk_python_ckafka.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud_sdk_python_ckafka.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/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.1475,<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:]
|
|
@@ -25554,12 +25644,16 @@ class MqttConnectParam(AbstractModel):
|
|
|
25554
25644
|
|
|
25555
25645
|
def __init__(self):
|
|
25556
25646
|
r"""
|
|
25647
|
+
:param _Port: MQTT的连接port
|
|
25648
|
+
:type Port: int
|
|
25557
25649
|
:param _UserName: MQTT连接源的用户名
|
|
25558
25650
|
:type UserName: str
|
|
25559
25651
|
:param _Password: MQTT连接源的密码
|
|
25560
25652
|
:type Password: str
|
|
25561
25653
|
:param _Resource: MQTT连接源的实例资源
|
|
25562
25654
|
:type Resource: str
|
|
25655
|
+
:param _ServiceVip: MQTT的连接ip
|
|
25656
|
+
:type ServiceVip: str
|
|
25563
25657
|
:param _UniqVpcId: MQTT Instance vpc-id
|
|
25564
25658
|
:type UniqVpcId: str
|
|
25565
25659
|
:param _SelfBuilt: 是否为自建集群
|
|
@@ -25568,14 +25662,30 @@ class MqttConnectParam(AbstractModel):
|
|
|
25568
25662
|
:type IsUpdate: bool
|
|
25569
25663
|
:param _Region: MQTT连接源的实例资源地域, 跨地域时必填
|
|
25570
25664
|
:type Region: str
|
|
25665
|
+
:param _Ip: IP
|
|
25666
|
+
:type Ip: str
|
|
25571
25667
|
"""
|
|
25668
|
+
self._Port = None
|
|
25572
25669
|
self._UserName = None
|
|
25573
25670
|
self._Password = None
|
|
25574
25671
|
self._Resource = None
|
|
25672
|
+
self._ServiceVip = None
|
|
25575
25673
|
self._UniqVpcId = None
|
|
25576
25674
|
self._SelfBuilt = None
|
|
25577
25675
|
self._IsUpdate = None
|
|
25578
25676
|
self._Region = None
|
|
25677
|
+
self._Ip = None
|
|
25678
|
+
|
|
25679
|
+
@property
|
|
25680
|
+
def Port(self):
|
|
25681
|
+
r"""MQTT的连接port
|
|
25682
|
+
:rtype: int
|
|
25683
|
+
"""
|
|
25684
|
+
return self._Port
|
|
25685
|
+
|
|
25686
|
+
@Port.setter
|
|
25687
|
+
def Port(self, Port):
|
|
25688
|
+
self._Port = Port
|
|
25579
25689
|
|
|
25580
25690
|
@property
|
|
25581
25691
|
def UserName(self):
|
|
@@ -25610,6 +25720,17 @@ class MqttConnectParam(AbstractModel):
|
|
|
25610
25720
|
def Resource(self, Resource):
|
|
25611
25721
|
self._Resource = Resource
|
|
25612
25722
|
|
|
25723
|
+
@property
|
|
25724
|
+
def ServiceVip(self):
|
|
25725
|
+
r"""MQTT的连接ip
|
|
25726
|
+
:rtype: str
|
|
25727
|
+
"""
|
|
25728
|
+
return self._ServiceVip
|
|
25729
|
+
|
|
25730
|
+
@ServiceVip.setter
|
|
25731
|
+
def ServiceVip(self, ServiceVip):
|
|
25732
|
+
self._ServiceVip = ServiceVip
|
|
25733
|
+
|
|
25613
25734
|
@property
|
|
25614
25735
|
def UniqVpcId(self):
|
|
25615
25736
|
r"""MQTT Instance vpc-id
|
|
@@ -25654,15 +25775,29 @@ class MqttConnectParam(AbstractModel):
|
|
|
25654
25775
|
def Region(self, Region):
|
|
25655
25776
|
self._Region = Region
|
|
25656
25777
|
|
|
25778
|
+
@property
|
|
25779
|
+
def Ip(self):
|
|
25780
|
+
r"""IP
|
|
25781
|
+
:rtype: str
|
|
25782
|
+
"""
|
|
25783
|
+
return self._Ip
|
|
25784
|
+
|
|
25785
|
+
@Ip.setter
|
|
25786
|
+
def Ip(self, Ip):
|
|
25787
|
+
self._Ip = Ip
|
|
25788
|
+
|
|
25657
25789
|
|
|
25658
25790
|
def _deserialize(self, params):
|
|
25791
|
+
self._Port = params.get("Port")
|
|
25659
25792
|
self._UserName = params.get("UserName")
|
|
25660
25793
|
self._Password = params.get("Password")
|
|
25661
25794
|
self._Resource = params.get("Resource")
|
|
25795
|
+
self._ServiceVip = params.get("ServiceVip")
|
|
25662
25796
|
self._UniqVpcId = params.get("UniqVpcId")
|
|
25663
25797
|
self._SelfBuilt = params.get("SelfBuilt")
|
|
25664
25798
|
self._IsUpdate = params.get("IsUpdate")
|
|
25665
25799
|
self._Region = params.get("Region")
|
|
25800
|
+
self._Ip = params.get("Ip")
|
|
25666
25801
|
memeber_set = set(params.keys())
|
|
25667
25802
|
for name, value in vars(self).items():
|
|
25668
25803
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1475
|
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.1475}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-ckafka-3.0.1466 → tencentcloud-sdk-python-ckafka-3.0.1475}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|