tencentcloud-sdk-python-mqtt 3.1.126__tar.gz → 3.1.127__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_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/setup.py +1 -1
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud/mqtt/v20240516/models.py +15 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud_sdk_python_mqtt.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_mqtt-3.1.127/tencentcloud_sdk_python_mqtt.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_mqtt-3.1.126/tencentcloud_sdk_python_mqtt.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/README.rst +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/setup.cfg +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud/mqtt/__init__.py +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud/mqtt/v20240516/__init__.py +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud/mqtt/v20240516/errorcodes.py +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud/mqtt/v20240516/mqtt_client.py +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud/mqtt/v20240516/mqtt_client_async.py +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud_sdk_python_mqtt.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud_sdk_python_mqtt.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_mqtt-3.1.126 → tencentcloud_sdk_python_mqtt-3.1.127}/tencentcloud_sdk_python_mqtt.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-mqtt
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.127
|
|
4
4
|
Summary: Tencent Cloud Mqtt SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.127
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-mqtt',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.127,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Mqtt SDK for Python',
|
|
@@ -10997,6 +10997,8 @@ class ModifyHttpAuthenticatorRequest(AbstractModel):
|
|
|
10997
10997
|
:type Header: list of HeaderItem
|
|
10998
10998
|
:param _Body: 请求body
|
|
10999
10999
|
:type Body: list of BodyItem
|
|
11000
|
+
:param _IncludingUserProperties: 连接UserProperty作为Header转发,默认false
|
|
11001
|
+
:type IncludingUserProperties: bool
|
|
11000
11002
|
"""
|
|
11001
11003
|
self._InstanceId = None
|
|
11002
11004
|
self._Endpoint = None
|
|
@@ -11008,6 +11010,7 @@ class ModifyHttpAuthenticatorRequest(AbstractModel):
|
|
|
11008
11010
|
self._Method = None
|
|
11009
11011
|
self._Header = None
|
|
11010
11012
|
self._Body = None
|
|
11013
|
+
self._IncludingUserProperties = None
|
|
11011
11014
|
|
|
11012
11015
|
@property
|
|
11013
11016
|
def InstanceId(self):
|
|
@@ -11119,6 +11122,17 @@ class ModifyHttpAuthenticatorRequest(AbstractModel):
|
|
|
11119
11122
|
def Body(self, Body):
|
|
11120
11123
|
self._Body = Body
|
|
11121
11124
|
|
|
11125
|
+
@property
|
|
11126
|
+
def IncludingUserProperties(self):
|
|
11127
|
+
r"""连接UserProperty作为Header转发,默认false
|
|
11128
|
+
:rtype: bool
|
|
11129
|
+
"""
|
|
11130
|
+
return self._IncludingUserProperties
|
|
11131
|
+
|
|
11132
|
+
@IncludingUserProperties.setter
|
|
11133
|
+
def IncludingUserProperties(self, IncludingUserProperties):
|
|
11134
|
+
self._IncludingUserProperties = IncludingUserProperties
|
|
11135
|
+
|
|
11122
11136
|
|
|
11123
11137
|
def _deserialize(self, params):
|
|
11124
11138
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -11141,6 +11155,7 @@ class ModifyHttpAuthenticatorRequest(AbstractModel):
|
|
|
11141
11155
|
obj = BodyItem()
|
|
11142
11156
|
obj._deserialize(item)
|
|
11143
11157
|
self._Body.append(obj)
|
|
11158
|
+
self._IncludingUserProperties = params.get("IncludingUserProperties")
|
|
11144
11159
|
memeber_set = set(params.keys())
|
|
11145
11160
|
for name, value in vars(self).items():
|
|
11146
11161
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-mqtt
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.127
|
|
4
4
|
Summary: Tencent Cloud Mqtt SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.127
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.127
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.126
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|