tencentcloud-sdk-python-mqtt 3.0.1280__tar.gz → 3.0.1282__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.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/setup.py +1 -1
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud/mqtt/v20240516/models.py +34 -28
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud_sdk_python_mqtt.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-mqtt-3.0.1282/tencentcloud_sdk_python_mqtt.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-mqtt-3.0.1280/tencentcloud_sdk_python_mqtt.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/README.rst +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/setup.cfg +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud/mqtt/__init__.py +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud/mqtt/v20240516/__init__.py +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud/mqtt/v20240516/errorcodes.py +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud/mqtt/v20240516/mqtt_client.py +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud_sdk_python_mqtt.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud_sdk_python_mqtt.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-mqtt-3.0.1280 → tencentcloud-sdk-python-mqtt-3.0.1282}/tencentcloud_sdk_python_mqtt.egg-info/top_level.txt +0 -0
|
@@ -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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1282"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Mqtt SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -704,7 +704,9 @@ class CreateJWKSAuthenticatorRequest(AbstractModel):
|
|
|
704
704
|
:type Status: str
|
|
705
705
|
:param _Remark: 说明
|
|
706
706
|
:type Remark: str
|
|
707
|
-
:param _From: 设备连接时传递jwt的key;
|
|
707
|
+
:param _From: 设备连接时传递jwt的key;
|
|
708
|
+
username-使用用户名字段传递;
|
|
709
|
+
password-使用密码字段传递
|
|
708
710
|
:type From: str
|
|
709
711
|
"""
|
|
710
712
|
self._InstanceId = None
|
|
@@ -783,7 +785,9 @@ class CreateJWKSAuthenticatorRequest(AbstractModel):
|
|
|
783
785
|
|
|
784
786
|
@property
|
|
785
787
|
def From(self):
|
|
786
|
-
"""设备连接时传递jwt的key;
|
|
788
|
+
"""设备连接时传递jwt的key;
|
|
789
|
+
username-使用用户名字段传递;
|
|
790
|
+
password-使用密码字段传递
|
|
787
791
|
:rtype: str
|
|
788
792
|
"""
|
|
789
793
|
return self._From
|
|
@@ -1205,7 +1209,10 @@ class DeleteAuthenticatorRequest(AbstractModel):
|
|
|
1205
1209
|
r"""
|
|
1206
1210
|
:param _InstanceId: 实例ID
|
|
1207
1211
|
:type InstanceId: str
|
|
1208
|
-
:param _Type:
|
|
1212
|
+
:param _Type: 认证器类型:
|
|
1213
|
+
JWT:JWT认证器
|
|
1214
|
+
JWKS:JWKS认证器
|
|
1215
|
+
BYOC:一端一证认证器
|
|
1209
1216
|
:type Type: str
|
|
1210
1217
|
"""
|
|
1211
1218
|
self._InstanceId = None
|
|
@@ -1224,7 +1231,10 @@ class DeleteAuthenticatorRequest(AbstractModel):
|
|
|
1224
1231
|
|
|
1225
1232
|
@property
|
|
1226
1233
|
def Type(self):
|
|
1227
|
-
"""
|
|
1234
|
+
"""认证器类型:
|
|
1235
|
+
JWT:JWT认证器
|
|
1236
|
+
JWKS:JWKS认证器
|
|
1237
|
+
BYOC:一端一证认证器
|
|
1228
1238
|
:rtype: str
|
|
1229
1239
|
"""
|
|
1230
1240
|
return self._Type
|
|
@@ -1521,7 +1531,7 @@ class DescribeAuthenticatorRequest(AbstractModel):
|
|
|
1521
1531
|
r"""
|
|
1522
1532
|
:param _InstanceId: 实例ID
|
|
1523
1533
|
:type InstanceId: str
|
|
1524
|
-
:param _Type:
|
|
1534
|
+
:param _Type: 认证器类型: JWT:JWT认证器 JWKS:JWKS认证器 HTTP:HTTP认证器
|
|
1525
1535
|
:type Type: str
|
|
1526
1536
|
"""
|
|
1527
1537
|
self._InstanceId = None
|
|
@@ -1540,7 +1550,7 @@ class DescribeAuthenticatorRequest(AbstractModel):
|
|
|
1540
1550
|
|
|
1541
1551
|
@property
|
|
1542
1552
|
def Type(self):
|
|
1543
|
-
"""
|
|
1553
|
+
"""认证器类型: JWT:JWT认证器 JWKS:JWKS认证器 HTTP:HTTP认证器
|
|
1544
1554
|
:rtype: str
|
|
1545
1555
|
"""
|
|
1546
1556
|
return self._Type
|
|
@@ -1765,13 +1775,13 @@ class DescribeDeviceCertificateResponse(AbstractModel):
|
|
|
1765
1775
|
:type LastInactivationTime: int
|
|
1766
1776
|
:param _Status: 证书状态
|
|
1767
1777
|
:type Status: str
|
|
1768
|
-
:param _CaSn: 证书序列号
|
|
1778
|
+
:param _CaSn: Ca证书序列号
|
|
1769
1779
|
:type CaSn: str
|
|
1770
|
-
:param _DeviceCertificateSn:
|
|
1780
|
+
:param _DeviceCertificateSn: 设备证书序列号
|
|
1771
1781
|
:type DeviceCertificateSn: str
|
|
1772
|
-
:param _DeviceCertificate:
|
|
1782
|
+
:param _DeviceCertificate: 设备证书内容
|
|
1773
1783
|
:type DeviceCertificate: str
|
|
1774
|
-
:param _DeviceCertificateCn: 设备证书
|
|
1784
|
+
:param _DeviceCertificateCn: 设备证书common name
|
|
1775
1785
|
:type DeviceCertificateCn: str
|
|
1776
1786
|
:param _Format: 证书格式
|
|
1777
1787
|
:type Format: str
|
|
@@ -1870,7 +1880,7 @@ class DescribeDeviceCertificateResponse(AbstractModel):
|
|
|
1870
1880
|
|
|
1871
1881
|
@property
|
|
1872
1882
|
def CaSn(self):
|
|
1873
|
-
"""证书序列号
|
|
1883
|
+
"""Ca证书序列号
|
|
1874
1884
|
:rtype: str
|
|
1875
1885
|
"""
|
|
1876
1886
|
return self._CaSn
|
|
@@ -1881,7 +1891,7 @@ class DescribeDeviceCertificateResponse(AbstractModel):
|
|
|
1881
1891
|
|
|
1882
1892
|
@property
|
|
1883
1893
|
def DeviceCertificateSn(self):
|
|
1884
|
-
"""
|
|
1894
|
+
"""设备证书序列号
|
|
1885
1895
|
:rtype: str
|
|
1886
1896
|
"""
|
|
1887
1897
|
return self._DeviceCertificateSn
|
|
@@ -1892,7 +1902,7 @@ class DescribeDeviceCertificateResponse(AbstractModel):
|
|
|
1892
1902
|
|
|
1893
1903
|
@property
|
|
1894
1904
|
def DeviceCertificate(self):
|
|
1895
|
-
"""
|
|
1905
|
+
"""设备证书内容
|
|
1896
1906
|
:rtype: str
|
|
1897
1907
|
"""
|
|
1898
1908
|
return self._DeviceCertificate
|
|
@@ -1903,7 +1913,7 @@ class DescribeDeviceCertificateResponse(AbstractModel):
|
|
|
1903
1913
|
|
|
1904
1914
|
@property
|
|
1905
1915
|
def DeviceCertificateCn(self):
|
|
1906
|
-
"""设备证书
|
|
1916
|
+
"""设备证书common name
|
|
1907
1917
|
:rtype: str
|
|
1908
1918
|
"""
|
|
1909
1919
|
return self._DeviceCertificateCn
|
|
@@ -2363,11 +2373,9 @@ class DescribeInstanceResponse(AbstractModel):
|
|
|
2363
2373
|
|
|
2364
2374
|
def __init__(self):
|
|
2365
2375
|
r"""
|
|
2366
|
-
:param _InstanceType:
|
|
2367
|
-
EXPERIMENT 体验版
|
|
2376
|
+
:param _InstanceType: 实例类型
|
|
2368
2377
|
BASIC 基础版
|
|
2369
2378
|
PRO 专业版
|
|
2370
|
-
PLATINUM 铂金版
|
|
2371
2379
|
:type InstanceType: str
|
|
2372
2380
|
:param _InstanceId: 实例ID
|
|
2373
2381
|
:type InstanceId: str
|
|
@@ -2393,7 +2401,9 @@ PLATINUM 铂金版
|
|
|
2393
2401
|
:type AuthorizationPolicyLimit: int
|
|
2394
2402
|
:param _ClientNumLimit: 客户端数量上限
|
|
2395
2403
|
:type ClientNumLimit: int
|
|
2396
|
-
:param _DeviceCertificateProvisionType: 客户端证书注册方式:
|
|
2404
|
+
:param _DeviceCertificateProvisionType: 客户端证书注册方式:
|
|
2405
|
+
JITP:自动注册
|
|
2406
|
+
API:通过API手动注册
|
|
2397
2407
|
:type DeviceCertificateProvisionType: str
|
|
2398
2408
|
:param _AutomaticActivation: 自动注册设备证书时是否自动激活
|
|
2399
2409
|
:type AutomaticActivation: bool
|
|
@@ -2405,9 +2415,7 @@ PLATINUM 铂金版
|
|
|
2405
2415
|
:type ExpiryTime: int
|
|
2406
2416
|
:param _DestroyTime: 预销毁时间
|
|
2407
2417
|
:type DestroyTime: int
|
|
2408
|
-
:param _X509Mode:
|
|
2409
|
-
mTLS,双向认证
|
|
2410
|
-
BYOC;一机一证
|
|
2418
|
+
:param _X509Mode: TLS,单向认证 mTLS,双向认证 BYOC;一机一证
|
|
2411
2419
|
:type X509Mode: str
|
|
2412
2420
|
:param _MaxCaNum: 最大Ca配额
|
|
2413
2421
|
:type MaxCaNum: int
|
|
@@ -2445,11 +2453,9 @@ PLATINUM 铂金版
|
|
|
2445
2453
|
|
|
2446
2454
|
@property
|
|
2447
2455
|
def InstanceType(self):
|
|
2448
|
-
"""
|
|
2449
|
-
EXPERIMENT 体验版
|
|
2456
|
+
"""实例类型
|
|
2450
2457
|
BASIC 基础版
|
|
2451
2458
|
PRO 专业版
|
|
2452
|
-
PLATINUM 铂金版
|
|
2453
2459
|
:rtype: str
|
|
2454
2460
|
"""
|
|
2455
2461
|
return self._InstanceType
|
|
@@ -2592,7 +2598,9 @@ PLATINUM 铂金版
|
|
|
2592
2598
|
|
|
2593
2599
|
@property
|
|
2594
2600
|
def DeviceCertificateProvisionType(self):
|
|
2595
|
-
"""客户端证书注册方式:
|
|
2601
|
+
"""客户端证书注册方式:
|
|
2602
|
+
JITP:自动注册
|
|
2603
|
+
API:通过API手动注册
|
|
2596
2604
|
:rtype: str
|
|
2597
2605
|
"""
|
|
2598
2606
|
return self._DeviceCertificateProvisionType
|
|
@@ -2658,9 +2666,7 @@ PLATINUM 铂金版
|
|
|
2658
2666
|
|
|
2659
2667
|
@property
|
|
2660
2668
|
def X509Mode(self):
|
|
2661
|
-
"""
|
|
2662
|
-
mTLS,双向认证
|
|
2663
|
-
BYOC;一机一证
|
|
2669
|
+
"""TLS,单向认证 mTLS,双向认证 BYOC;一机一证
|
|
2664
2670
|
:rtype: str
|
|
2665
2671
|
"""
|
|
2666
2672
|
return self._X509Mode
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1282
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1280
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|