tencentcloud-sdk-python-ckafka 3.0.1470__tar.gz → 3.0.1481__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.1481/PKG-INFO +46 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/setup.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud/ckafka/v20190819/models.py +47 -0
- tencentcloud_sdk_python_ckafka-3.0.1481/tencentcloud_sdk_python_ckafka.egg-info/PKG-INFO +46 -0
- tencentcloud_sdk_python_ckafka-3.0.1481/tencentcloud_sdk_python_ckafka.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ckafka-3.0.1470/PKG-INFO +0 -45
- tencentcloud-sdk-python-ckafka-3.0.1470/tencentcloud_sdk_python_ckafka.egg-info/PKG-INFO +0 -45
- 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.1481}/README.rst +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud/ckafka/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud/ckafka/v20190819/__init__.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud/ckafka/v20190819/ckafka_client.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud/ckafka/v20190819/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud_sdk_python_ckafka.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud_sdk_python_ckafka.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/tencentcloud_sdk_python_ckafka.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tencentcloud-sdk-python-ckafka
|
|
3
|
+
Version: 3.0.1481
|
|
4
|
+
Summary: Tencent Cloud Ckafka SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1481
|
|
19
|
+
|
|
20
|
+
============================
|
|
21
|
+
Tencent Cloud SDK for Python
|
|
22
|
+
============================
|
|
23
|
+
|
|
24
|
+
Tencent Cloud Python Ckafka SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
25
|
+
The SDK works on Python versions:
|
|
26
|
+
|
|
27
|
+
* 2.7 and greater, including 3.x
|
|
28
|
+
|
|
29
|
+
Quick Start
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
First, install the library:
|
|
33
|
+
|
|
34
|
+
.. code-block:: sh
|
|
35
|
+
|
|
36
|
+
$ pip install tencentcloud-sdk-python-common
|
|
37
|
+
$ pip install tencentcloud-sdk-python-ckafka
|
|
38
|
+
|
|
39
|
+
or download source code from github and install:
|
|
40
|
+
|
|
41
|
+
.. code-block:: sh
|
|
42
|
+
|
|
43
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
44
|
+
$ cd tencentcloud-sdk-python
|
|
45
|
+
$ python package.py --components common ckafka
|
|
46
|
+
|
{tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/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.1481,<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,28 +25644,49 @@ 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: 是否为自建集群
|
|
25656
25660
|
:type SelfBuilt: bool
|
|
25657
25661
|
:param _IsUpdate: 是否更新到关联的Dip任务
|
|
25662
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25658
25663
|
:type IsUpdate: bool
|
|
25659
25664
|
:param _Region: MQTT连接源的实例资源地域, 跨地域时必填
|
|
25660
25665
|
:type Region: str
|
|
25666
|
+
:param _Ip: IP
|
|
25667
|
+
:type Ip: str
|
|
25661
25668
|
"""
|
|
25669
|
+
self._Port = None
|
|
25662
25670
|
self._UserName = None
|
|
25663
25671
|
self._Password = None
|
|
25664
25672
|
self._Resource = None
|
|
25673
|
+
self._ServiceVip = None
|
|
25665
25674
|
self._UniqVpcId = None
|
|
25666
25675
|
self._SelfBuilt = None
|
|
25667
25676
|
self._IsUpdate = None
|
|
25668
25677
|
self._Region = None
|
|
25678
|
+
self._Ip = None
|
|
25679
|
+
|
|
25680
|
+
@property
|
|
25681
|
+
def Port(self):
|
|
25682
|
+
r"""MQTT的连接port
|
|
25683
|
+
:rtype: int
|
|
25684
|
+
"""
|
|
25685
|
+
return self._Port
|
|
25686
|
+
|
|
25687
|
+
@Port.setter
|
|
25688
|
+
def Port(self, Port):
|
|
25689
|
+
self._Port = Port
|
|
25669
25690
|
|
|
25670
25691
|
@property
|
|
25671
25692
|
def UserName(self):
|
|
@@ -25700,6 +25721,17 @@ class MqttConnectParam(AbstractModel):
|
|
|
25700
25721
|
def Resource(self, Resource):
|
|
25701
25722
|
self._Resource = Resource
|
|
25702
25723
|
|
|
25724
|
+
@property
|
|
25725
|
+
def ServiceVip(self):
|
|
25726
|
+
r"""MQTT的连接ip
|
|
25727
|
+
:rtype: str
|
|
25728
|
+
"""
|
|
25729
|
+
return self._ServiceVip
|
|
25730
|
+
|
|
25731
|
+
@ServiceVip.setter
|
|
25732
|
+
def ServiceVip(self, ServiceVip):
|
|
25733
|
+
self._ServiceVip = ServiceVip
|
|
25734
|
+
|
|
25703
25735
|
@property
|
|
25704
25736
|
def UniqVpcId(self):
|
|
25705
25737
|
r"""MQTT Instance vpc-id
|
|
@@ -25725,6 +25757,7 @@ class MqttConnectParam(AbstractModel):
|
|
|
25725
25757
|
@property
|
|
25726
25758
|
def IsUpdate(self):
|
|
25727
25759
|
r"""是否更新到关联的Dip任务
|
|
25760
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25728
25761
|
:rtype: bool
|
|
25729
25762
|
"""
|
|
25730
25763
|
return self._IsUpdate
|
|
@@ -25744,15 +25777,29 @@ class MqttConnectParam(AbstractModel):
|
|
|
25744
25777
|
def Region(self, Region):
|
|
25745
25778
|
self._Region = Region
|
|
25746
25779
|
|
|
25780
|
+
@property
|
|
25781
|
+
def Ip(self):
|
|
25782
|
+
r"""IP
|
|
25783
|
+
:rtype: str
|
|
25784
|
+
"""
|
|
25785
|
+
return self._Ip
|
|
25786
|
+
|
|
25787
|
+
@Ip.setter
|
|
25788
|
+
def Ip(self, Ip):
|
|
25789
|
+
self._Ip = Ip
|
|
25790
|
+
|
|
25747
25791
|
|
|
25748
25792
|
def _deserialize(self, params):
|
|
25793
|
+
self._Port = params.get("Port")
|
|
25749
25794
|
self._UserName = params.get("UserName")
|
|
25750
25795
|
self._Password = params.get("Password")
|
|
25751
25796
|
self._Resource = params.get("Resource")
|
|
25797
|
+
self._ServiceVip = params.get("ServiceVip")
|
|
25752
25798
|
self._UniqVpcId = params.get("UniqVpcId")
|
|
25753
25799
|
self._SelfBuilt = params.get("SelfBuilt")
|
|
25754
25800
|
self._IsUpdate = params.get("IsUpdate")
|
|
25755
25801
|
self._Region = params.get("Region")
|
|
25802
|
+
self._Ip = params.get("Ip")
|
|
25756
25803
|
memeber_set = set(params.keys())
|
|
25757
25804
|
for name, value in vars(self).items():
|
|
25758
25805
|
property_name = name[1:]
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tencentcloud-sdk-python-ckafka
|
|
3
|
+
Version: 3.0.1481
|
|
4
|
+
Summary: Tencent Cloud Ckafka SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1481
|
|
19
|
+
|
|
20
|
+
============================
|
|
21
|
+
Tencent Cloud SDK for Python
|
|
22
|
+
============================
|
|
23
|
+
|
|
24
|
+
Tencent Cloud Python Ckafka SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
25
|
+
The SDK works on Python versions:
|
|
26
|
+
|
|
27
|
+
* 2.7 and greater, including 3.x
|
|
28
|
+
|
|
29
|
+
Quick Start
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
First, install the library:
|
|
33
|
+
|
|
34
|
+
.. code-block:: sh
|
|
35
|
+
|
|
36
|
+
$ pip install tencentcloud-sdk-python-common
|
|
37
|
+
$ pip install tencentcloud-sdk-python-ckafka
|
|
38
|
+
|
|
39
|
+
or download source code from github and install:
|
|
40
|
+
|
|
41
|
+
.. code-block:: sh
|
|
42
|
+
|
|
43
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
44
|
+
$ cd tencentcloud-sdk-python
|
|
45
|
+
$ python package.py --components common ckafka
|
|
46
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1481
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.2
|
|
2
|
-
Name: tencentcloud-sdk-python-ckafka
|
|
3
|
-
Version: 3.0.1470
|
|
4
|
-
Summary: Tencent Cloud Ckafka SDK for Python
|
|
5
|
-
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
-
Author: Tencent Cloud
|
|
7
|
-
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Description: ============================
|
|
10
|
-
Tencent Cloud SDK for Python
|
|
11
|
-
============================
|
|
12
|
-
|
|
13
|
-
Tencent Cloud Python Ckafka SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
14
|
-
The SDK works on Python versions:
|
|
15
|
-
|
|
16
|
-
* 2.7 and greater, including 3.x
|
|
17
|
-
|
|
18
|
-
Quick Start
|
|
19
|
-
-----------
|
|
20
|
-
|
|
21
|
-
First, install the library:
|
|
22
|
-
|
|
23
|
-
.. code-block:: sh
|
|
24
|
-
|
|
25
|
-
$ pip install tencentcloud-sdk-python-common
|
|
26
|
-
$ pip install tencentcloud-sdk-python-ckafka
|
|
27
|
-
|
|
28
|
-
or download source code from github and install:
|
|
29
|
-
|
|
30
|
-
.. code-block:: sh
|
|
31
|
-
|
|
32
|
-
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
33
|
-
$ cd tencentcloud-sdk-python
|
|
34
|
-
$ python package.py --components common ckafka
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Platform: any
|
|
38
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
-
Classifier: Intended Audience :: Developers
|
|
40
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
41
|
-
Classifier: Programming Language :: Python
|
|
42
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
43
|
-
Classifier: Programming Language :: Python :: 3
|
|
44
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
45
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.2
|
|
2
|
-
Name: tencentcloud-sdk-python-ckafka
|
|
3
|
-
Version: 3.0.1470
|
|
4
|
-
Summary: Tencent Cloud Ckafka SDK for Python
|
|
5
|
-
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
-
Author: Tencent Cloud
|
|
7
|
-
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Description: ============================
|
|
10
|
-
Tencent Cloud SDK for Python
|
|
11
|
-
============================
|
|
12
|
-
|
|
13
|
-
Tencent Cloud Python Ckafka SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
14
|
-
The SDK works on Python versions:
|
|
15
|
-
|
|
16
|
-
* 2.7 and greater, including 3.x
|
|
17
|
-
|
|
18
|
-
Quick Start
|
|
19
|
-
-----------
|
|
20
|
-
|
|
21
|
-
First, install the library:
|
|
22
|
-
|
|
23
|
-
.. code-block:: sh
|
|
24
|
-
|
|
25
|
-
$ pip install tencentcloud-sdk-python-common
|
|
26
|
-
$ pip install tencentcloud-sdk-python-ckafka
|
|
27
|
-
|
|
28
|
-
or download source code from github and install:
|
|
29
|
-
|
|
30
|
-
.. code-block:: sh
|
|
31
|
-
|
|
32
|
-
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
33
|
-
$ cd tencentcloud-sdk-python
|
|
34
|
-
$ python package.py --components common ckafka
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Platform: any
|
|
38
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
-
Classifier: Intended Audience :: Developers
|
|
40
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
41
|
-
Classifier: Programming Language :: Python
|
|
42
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
43
|
-
Classifier: Programming Language :: Python :: 3
|
|
44
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
45
|
-
Classifier: Programming Language :: Python :: 3.7
|
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.1481}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-ckafka-3.0.1470 → tencentcloud_sdk_python_ckafka-3.0.1481}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|