tencentcloud-sdk-python-ckafka 3.0.1470__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.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/setup.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/models.py +45 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → 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.1470/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/README.rst +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/ckafka_client.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud/ckafka/v20190819/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud_sdk_python_ckafka.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud_sdk_python_ckafka.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/tencentcloud_sdk_python_ckafka.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-ckafka-3.0.1470 → 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(),
|
|
@@ -25644,12 +25644,16 @@ class MqttConnectParam(AbstractModel):
|
|
|
25644
25644
|
|
|
25645
25645
|
def __init__(self):
|
|
25646
25646
|
r"""
|
|
25647
|
+
:param _Port: MQTT的连接port
|
|
25648
|
+
:type Port: int
|
|
25647
25649
|
:param _UserName: MQTT连接源的用户名
|
|
25648
25650
|
:type UserName: str
|
|
25649
25651
|
:param _Password: MQTT连接源的密码
|
|
25650
25652
|
:type Password: str
|
|
25651
25653
|
:param _Resource: MQTT连接源的实例资源
|
|
25652
25654
|
:type Resource: str
|
|
25655
|
+
:param _ServiceVip: MQTT的连接ip
|
|
25656
|
+
:type ServiceVip: str
|
|
25653
25657
|
:param _UniqVpcId: MQTT Instance vpc-id
|
|
25654
25658
|
:type UniqVpcId: str
|
|
25655
25659
|
:param _SelfBuilt: 是否为自建集群
|
|
@@ -25658,14 +25662,30 @@ class MqttConnectParam(AbstractModel):
|
|
|
25658
25662
|
:type IsUpdate: bool
|
|
25659
25663
|
:param _Region: MQTT连接源的实例资源地域, 跨地域时必填
|
|
25660
25664
|
:type Region: str
|
|
25665
|
+
:param _Ip: IP
|
|
25666
|
+
:type Ip: str
|
|
25661
25667
|
"""
|
|
25668
|
+
self._Port = None
|
|
25662
25669
|
self._UserName = None
|
|
25663
25670
|
self._Password = None
|
|
25664
25671
|
self._Resource = None
|
|
25672
|
+
self._ServiceVip = None
|
|
25665
25673
|
self._UniqVpcId = None
|
|
25666
25674
|
self._SelfBuilt = None
|
|
25667
25675
|
self._IsUpdate = None
|
|
25668
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
|
|
25669
25689
|
|
|
25670
25690
|
@property
|
|
25671
25691
|
def UserName(self):
|
|
@@ -25700,6 +25720,17 @@ class MqttConnectParam(AbstractModel):
|
|
|
25700
25720
|
def Resource(self, Resource):
|
|
25701
25721
|
self._Resource = Resource
|
|
25702
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
|
+
|
|
25703
25734
|
@property
|
|
25704
25735
|
def UniqVpcId(self):
|
|
25705
25736
|
r"""MQTT Instance vpc-id
|
|
@@ -25744,15 +25775,29 @@ class MqttConnectParam(AbstractModel):
|
|
|
25744
25775
|
def Region(self, Region):
|
|
25745
25776
|
self._Region = Region
|
|
25746
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
|
+
|
|
25747
25789
|
|
|
25748
25790
|
def _deserialize(self, params):
|
|
25791
|
+
self._Port = params.get("Port")
|
|
25749
25792
|
self._UserName = params.get("UserName")
|
|
25750
25793
|
self._Password = params.get("Password")
|
|
25751
25794
|
self._Resource = params.get("Resource")
|
|
25795
|
+
self._ServiceVip = params.get("ServiceVip")
|
|
25752
25796
|
self._UniqVpcId = params.get("UniqVpcId")
|
|
25753
25797
|
self._SelfBuilt = params.get("SelfBuilt")
|
|
25754
25798
|
self._IsUpdate = params.get("IsUpdate")
|
|
25755
25799
|
self._Region = params.get("Region")
|
|
25800
|
+
self._Ip = params.get("Ip")
|
|
25756
25801
|
memeber_set = set(params.keys())
|
|
25757
25802
|
for name, value in vars(self).items():
|
|
25758
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.1470/tencentcloud_sdk_python_ckafka.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1470
|
{tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud-sdk-python-ckafka-3.0.1475}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-ckafka-3.0.1470 → 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
|