tencentcloud-sdk-python-mqtt 3.1.93__tar.gz → 3.1.103__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/setup.py +1 -1
  3. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud/mqtt/v20240516/models.py +289 -8
  5. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud/mqtt/v20240516/mqtt_client.py +46 -0
  6. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud/mqtt/v20240516/mqtt_client_async.py +36 -0
  7. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud_sdk_python_mqtt.egg-info/PKG-INFO +2 -2
  8. tencentcloud_sdk_python_mqtt-3.1.103/tencentcloud_sdk_python_mqtt.egg-info/requires.txt +1 -0
  9. tencentcloud_sdk_python_mqtt-3.1.93/tencentcloud_sdk_python_mqtt.egg-info/requires.txt +0 -1
  10. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/README.rst +0 -0
  11. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/setup.cfg +0 -0
  12. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud/mqtt/__init__.py +0 -0
  13. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud/mqtt/v20240516/__init__.py +0 -0
  14. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud/mqtt/v20240516/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud_sdk_python_mqtt.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/tencentcloud_sdk_python_mqtt.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_mqtt-3.1.93 → tencentcloud_sdk_python_mqtt-3.1.103}/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.93
3
+ Version: 3.1.103
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.93
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.103
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.93,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.103,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Mqtt SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.93'
17
+ __version__ = '3.1.103'
@@ -7318,6 +7318,105 @@ class DescribeSharedSubscriptionGroupsResponse(AbstractModel):
7318
7318
  self._RequestId = params.get("RequestId")
7319
7319
 
7320
7320
 
7321
+ class DescribeSharedSubscriptionGroupsWithSubscriptionsRequest(AbstractModel):
7322
+ r"""DescribeSharedSubscriptionGroupsWithSubscriptions请求参数结构体
7323
+
7324
+ """
7325
+
7326
+ def __init__(self):
7327
+ r"""
7328
+ :param _InstanceId: <p>腾讯云MQTT实例ID,从 <a href="https://cloud.tencent.com/document/api/1778/111029">DescribeInstanceList</a>接口或控制台获得。</p>
7329
+ :type InstanceId: str
7330
+ """
7331
+ self._InstanceId = None
7332
+
7333
+ @property
7334
+ def InstanceId(self):
7335
+ r"""<p>腾讯云MQTT实例ID,从 <a href="https://cloud.tencent.com/document/api/1778/111029">DescribeInstanceList</a>接口或控制台获得。</p>
7336
+ :rtype: str
7337
+ """
7338
+ return self._InstanceId
7339
+
7340
+ @InstanceId.setter
7341
+ def InstanceId(self, InstanceId):
7342
+ self._InstanceId = InstanceId
7343
+
7344
+
7345
+ def _deserialize(self, params):
7346
+ self._InstanceId = params.get("InstanceId")
7347
+ memeber_set = set(params.keys())
7348
+ for name, value in vars(self).items():
7349
+ property_name = name[1:]
7350
+ if property_name in memeber_set:
7351
+ memeber_set.remove(property_name)
7352
+ if len(memeber_set) > 0:
7353
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
7354
+
7355
+
7356
+
7357
+ class DescribeSharedSubscriptionGroupsWithSubscriptionsResponse(AbstractModel):
7358
+ r"""DescribeSharedSubscriptionGroupsWithSubscriptions返回参数结构体
7359
+
7360
+ """
7361
+
7362
+ def __init__(self):
7363
+ r"""
7364
+ :param _Data: <p>集群下共享订阅组列表</p>
7365
+ :type Data: list of SharedSubscriptionGroupWithSubscriptions
7366
+ :param _TotalCount: <p>查询总数</p>
7367
+ :type TotalCount: int
7368
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7369
+ :type RequestId: str
7370
+ """
7371
+ self._Data = None
7372
+ self._TotalCount = None
7373
+ self._RequestId = None
7374
+
7375
+ @property
7376
+ def Data(self):
7377
+ r"""<p>集群下共享订阅组列表</p>
7378
+ :rtype: list of SharedSubscriptionGroupWithSubscriptions
7379
+ """
7380
+ return self._Data
7381
+
7382
+ @Data.setter
7383
+ def Data(self, Data):
7384
+ self._Data = Data
7385
+
7386
+ @property
7387
+ def TotalCount(self):
7388
+ r"""<p>查询总数</p>
7389
+ :rtype: int
7390
+ """
7391
+ return self._TotalCount
7392
+
7393
+ @TotalCount.setter
7394
+ def TotalCount(self, TotalCount):
7395
+ self._TotalCount = TotalCount
7396
+
7397
+ @property
7398
+ def RequestId(self):
7399
+ r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7400
+ :rtype: str
7401
+ """
7402
+ return self._RequestId
7403
+
7404
+ @RequestId.setter
7405
+ def RequestId(self, RequestId):
7406
+ self._RequestId = RequestId
7407
+
7408
+
7409
+ def _deserialize(self, params):
7410
+ if params.get("Data") is not None:
7411
+ self._Data = []
7412
+ for item in params.get("Data"):
7413
+ obj = SharedSubscriptionGroupWithSubscriptions()
7414
+ obj._deserialize(item)
7415
+ self._Data.append(obj)
7416
+ self._TotalCount = params.get("TotalCount")
7417
+ self._RequestId = params.get("RequestId")
7418
+
7419
+
7321
7420
  class DescribeSharedSubscriptionLagRequest(AbstractModel):
7322
7421
  r"""DescribeSharedSubscriptionLag请求参数结构体
7323
7422
 
@@ -11231,8 +11330,6 @@ BYOC:一机一证
11231
11330
 
11232
11331
  @property
11233
11332
  def DeviceCertificateProvisionType(self):
11234
- warnings.warn("parameter `DeviceCertificateProvisionType` is deprecated", DeprecationWarning)
11235
-
11236
11333
  r"""客户端证书注册方式:
11237
11334
  JITP:自动注册
11238
11335
  API:手动通过API注册
@@ -11242,14 +11339,10 @@ API:手动通过API注册
11242
11339
 
11243
11340
  @DeviceCertificateProvisionType.setter
11244
11341
  def DeviceCertificateProvisionType(self, DeviceCertificateProvisionType):
11245
- warnings.warn("parameter `DeviceCertificateProvisionType` is deprecated", DeprecationWarning)
11246
-
11247
11342
  self._DeviceCertificateProvisionType = DeviceCertificateProvisionType
11248
11343
 
11249
11344
  @property
11250
11345
  def AutomaticActivation(self):
11251
- warnings.warn("parameter `AutomaticActivation` is deprecated", DeprecationWarning)
11252
-
11253
11346
  r"""自动注册证书是否自动激活
11254
11347
  :rtype: bool
11255
11348
  """
@@ -11257,8 +11350,6 @@ API:手动通过API注册
11257
11350
 
11258
11351
  @AutomaticActivation.setter
11259
11352
  def AutomaticActivation(self, AutomaticActivation):
11260
- warnings.warn("parameter `AutomaticActivation` is deprecated", DeprecationWarning)
11261
-
11262
11353
  self._AutomaticActivation = AutomaticActivation
11263
11354
 
11264
11355
  @property
@@ -12065,6 +12156,115 @@ class ModifyUserResponse(AbstractModel):
12065
12156
  self._RequestId = params.get("RequestId")
12066
12157
 
12067
12158
 
12159
+ class ModifyX509ConfigRequest(AbstractModel):
12160
+ r"""ModifyX509Config请求参数结构体
12161
+
12162
+ """
12163
+
12164
+ def __init__(self):
12165
+ r"""
12166
+ :param _InstanceId: <p>腾讯云MQTT实例ID,从 <a href="https://cloud.tencent.com/document/api/1778/111029">DescribeInstanceList</a>接口或控制台获得。</p>
12167
+ :type InstanceId: str
12168
+ :param _X509Mode: <p>证书验证模式</p><p>枚举值:</p><ul><li>TLS: 单向认证</li><li>mTLS: 双向认证</li><li>BYOC: 一机一证</li></ul>
12169
+ :type X509Mode: str
12170
+ :param _DeviceCertificateProvisionType: <p>证书注册方式</p><p>枚举值:</p><ul><li>JITP: 自动注册</li><li>API: 手工注册</li></ul>
12171
+ :type DeviceCertificateProvisionType: str
12172
+ :param _AutomaticActivation: <p>证书自动后激活状态</p><p>枚举值:</p><ul><li>true: 自动激活</li><li>false: 不激活</li></ul>
12173
+ :type AutomaticActivation: bool
12174
+ """
12175
+ self._InstanceId = None
12176
+ self._X509Mode = None
12177
+ self._DeviceCertificateProvisionType = None
12178
+ self._AutomaticActivation = None
12179
+
12180
+ @property
12181
+ def InstanceId(self):
12182
+ r"""<p>腾讯云MQTT实例ID,从 <a href="https://cloud.tencent.com/document/api/1778/111029">DescribeInstanceList</a>接口或控制台获得。</p>
12183
+ :rtype: str
12184
+ """
12185
+ return self._InstanceId
12186
+
12187
+ @InstanceId.setter
12188
+ def InstanceId(self, InstanceId):
12189
+ self._InstanceId = InstanceId
12190
+
12191
+ @property
12192
+ def X509Mode(self):
12193
+ r"""<p>证书验证模式</p><p>枚举值:</p><ul><li>TLS: 单向认证</li><li>mTLS: 双向认证</li><li>BYOC: 一机一证</li></ul>
12194
+ :rtype: str
12195
+ """
12196
+ return self._X509Mode
12197
+
12198
+ @X509Mode.setter
12199
+ def X509Mode(self, X509Mode):
12200
+ self._X509Mode = X509Mode
12201
+
12202
+ @property
12203
+ def DeviceCertificateProvisionType(self):
12204
+ r"""<p>证书注册方式</p><p>枚举值:</p><ul><li>JITP: 自动注册</li><li>API: 手工注册</li></ul>
12205
+ :rtype: str
12206
+ """
12207
+ return self._DeviceCertificateProvisionType
12208
+
12209
+ @DeviceCertificateProvisionType.setter
12210
+ def DeviceCertificateProvisionType(self, DeviceCertificateProvisionType):
12211
+ self._DeviceCertificateProvisionType = DeviceCertificateProvisionType
12212
+
12213
+ @property
12214
+ def AutomaticActivation(self):
12215
+ r"""<p>证书自动后激活状态</p><p>枚举值:</p><ul><li>true: 自动激活</li><li>false: 不激活</li></ul>
12216
+ :rtype: bool
12217
+ """
12218
+ return self._AutomaticActivation
12219
+
12220
+ @AutomaticActivation.setter
12221
+ def AutomaticActivation(self, AutomaticActivation):
12222
+ self._AutomaticActivation = AutomaticActivation
12223
+
12224
+
12225
+ def _deserialize(self, params):
12226
+ self._InstanceId = params.get("InstanceId")
12227
+ self._X509Mode = params.get("X509Mode")
12228
+ self._DeviceCertificateProvisionType = params.get("DeviceCertificateProvisionType")
12229
+ self._AutomaticActivation = params.get("AutomaticActivation")
12230
+ memeber_set = set(params.keys())
12231
+ for name, value in vars(self).items():
12232
+ property_name = name[1:]
12233
+ if property_name in memeber_set:
12234
+ memeber_set.remove(property_name)
12235
+ if len(memeber_set) > 0:
12236
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12237
+
12238
+
12239
+
12240
+ class ModifyX509ConfigResponse(AbstractModel):
12241
+ r"""ModifyX509Config返回参数结构体
12242
+
12243
+ """
12244
+
12245
+ def __init__(self):
12246
+ r"""
12247
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12248
+ :type RequestId: str
12249
+ """
12250
+ self._RequestId = None
12251
+
12252
+ @property
12253
+ def RequestId(self):
12254
+ r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12255
+ :rtype: str
12256
+ """
12257
+ return self._RequestId
12258
+
12259
+ @RequestId.setter
12260
+ def RequestId(self, RequestId):
12261
+ self._RequestId = RequestId
12262
+
12263
+
12264
+ def _deserialize(self, params):
12265
+ self._RequestId = params.get("RequestId")
12266
+
12267
+
12068
12268
  class PriceTag(AbstractModel):
12069
12269
  r"""价格标签信息
12070
12270
 
@@ -13232,6 +13432,87 @@ class SharedSubscriptionClient(AbstractModel):
13232
13432
 
13233
13433
 
13234
13434
 
13435
+ class SharedSubscriptionGroupWithSubscriptions(AbstractModel):
13436
+ r"""查询共享订阅组(带订阅)
13437
+
13438
+ """
13439
+
13440
+ def __init__(self):
13441
+ r"""
13442
+ :param _SharedName: <p>共享组名</p>
13443
+ :type SharedName: str
13444
+ :param _CreateTime: <p>创建时间</p><p>单位:毫秒级时间戳</p>
13445
+ :type CreateTime: int
13446
+ :param _UpdateTime: <p>更新时间</p><p>单位:毫秒级时间戳</p>
13447
+ :type UpdateTime: int
13448
+ :param _TopicFilters: <p>订阅表达式</p>
13449
+ :type TopicFilters: list of str
13450
+ """
13451
+ self._SharedName = None
13452
+ self._CreateTime = None
13453
+ self._UpdateTime = None
13454
+ self._TopicFilters = None
13455
+
13456
+ @property
13457
+ def SharedName(self):
13458
+ r"""<p>共享组名</p>
13459
+ :rtype: str
13460
+ """
13461
+ return self._SharedName
13462
+
13463
+ @SharedName.setter
13464
+ def SharedName(self, SharedName):
13465
+ self._SharedName = SharedName
13466
+
13467
+ @property
13468
+ def CreateTime(self):
13469
+ r"""<p>创建时间</p><p>单位:毫秒级时间戳</p>
13470
+ :rtype: int
13471
+ """
13472
+ return self._CreateTime
13473
+
13474
+ @CreateTime.setter
13475
+ def CreateTime(self, CreateTime):
13476
+ self._CreateTime = CreateTime
13477
+
13478
+ @property
13479
+ def UpdateTime(self):
13480
+ r"""<p>更新时间</p><p>单位:毫秒级时间戳</p>
13481
+ :rtype: int
13482
+ """
13483
+ return self._UpdateTime
13484
+
13485
+ @UpdateTime.setter
13486
+ def UpdateTime(self, UpdateTime):
13487
+ self._UpdateTime = UpdateTime
13488
+
13489
+ @property
13490
+ def TopicFilters(self):
13491
+ r"""<p>订阅表达式</p>
13492
+ :rtype: list of str
13493
+ """
13494
+ return self._TopicFilters
13495
+
13496
+ @TopicFilters.setter
13497
+ def TopicFilters(self, TopicFilters):
13498
+ self._TopicFilters = TopicFilters
13499
+
13500
+
13501
+ def _deserialize(self, params):
13502
+ self._SharedName = params.get("SharedName")
13503
+ self._CreateTime = params.get("CreateTime")
13504
+ self._UpdateTime = params.get("UpdateTime")
13505
+ self._TopicFilters = params.get("TopicFilters")
13506
+ memeber_set = set(params.keys())
13507
+ for name, value in vars(self).items():
13508
+ property_name = name[1:]
13509
+ if property_name in memeber_set:
13510
+ memeber_set.remove(property_name)
13511
+ if len(memeber_set) > 0:
13512
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
13513
+
13514
+
13515
+
13235
13516
  class SubscriptionUserProperty(AbstractModel):
13236
13517
  r"""订阅的UserProperty结构
13237
13518
 
@@ -1112,6 +1112,29 @@ class MqttClient(AbstractClient):
1112
1112
  raise TencentCloudSDKException(type(e).__name__, str(e))
1113
1113
 
1114
1114
 
1115
+ def DescribeSharedSubscriptionGroupsWithSubscriptions(self, request):
1116
+ r"""查询集群下共享订阅组列表
1117
+
1118
+ :param request: Request instance for DescribeSharedSubscriptionGroupsWithSubscriptions.
1119
+ :type request: :class:`tencentcloud.mqtt.v20240516.models.DescribeSharedSubscriptionGroupsWithSubscriptionsRequest`
1120
+ :rtype: :class:`tencentcloud.mqtt.v20240516.models.DescribeSharedSubscriptionGroupsWithSubscriptionsResponse`
1121
+
1122
+ """
1123
+ try:
1124
+ params = request._serialize()
1125
+ headers = request.headers
1126
+ body = self.call("DescribeSharedSubscriptionGroupsWithSubscriptions", params, headers=headers)
1127
+ response = json.loads(body)
1128
+ model = models.DescribeSharedSubscriptionGroupsWithSubscriptionsResponse()
1129
+ model._deserialize(response["Response"])
1130
+ return model
1131
+ except Exception as e:
1132
+ if isinstance(e, TencentCloudSDKException):
1133
+ raise
1134
+ else:
1135
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1136
+
1137
+
1115
1138
  def DescribeSharedSubscriptionLag(self, request):
1116
1139
  r"""查询共享订阅消息堆积量
1117
1140
 
@@ -1510,6 +1533,29 @@ class MqttClient(AbstractClient):
1510
1533
  raise TencentCloudSDKException(type(e).__name__, str(e))
1511
1534
 
1512
1535
 
1536
+ def ModifyX509Config(self, request):
1537
+ r"""修改集群X509配置
1538
+
1539
+ :param request: Request instance for ModifyX509Config.
1540
+ :type request: :class:`tencentcloud.mqtt.v20240516.models.ModifyX509ConfigRequest`
1541
+ :rtype: :class:`tencentcloud.mqtt.v20240516.models.ModifyX509ConfigResponse`
1542
+
1543
+ """
1544
+ try:
1545
+ params = request._serialize()
1546
+ headers = request.headers
1547
+ body = self.call("ModifyX509Config", params, headers=headers)
1548
+ response = json.loads(body)
1549
+ model = models.ModifyX509ConfigResponse()
1550
+ model._deserialize(response["Response"])
1551
+ return model
1552
+ except Exception as e:
1553
+ if isinstance(e, TencentCloudSDKException):
1554
+ raise
1555
+ else:
1556
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1557
+
1558
+
1513
1559
  def PublishMessage(self, request):
1514
1560
  r"""发布 MQTT 消息到消息主题或客户端
1515
1561
 
@@ -876,6 +876,24 @@ class MqttClient(AbstractClient):
876
876
 
877
877
  return await self.call_and_deserialize(**kwargs)
878
878
 
879
+ async def DescribeSharedSubscriptionGroupsWithSubscriptions(
880
+ self,
881
+ request: models.DescribeSharedSubscriptionGroupsWithSubscriptionsRequest,
882
+ opts: Dict = None,
883
+ ) -> models.DescribeSharedSubscriptionGroupsWithSubscriptionsResponse:
884
+ """
885
+ 查询集群下共享订阅组列表
886
+ """
887
+
888
+ kwargs = {}
889
+ kwargs["action"] = "DescribeSharedSubscriptionGroupsWithSubscriptions"
890
+ kwargs["params"] = request._serialize()
891
+ kwargs["resp_cls"] = models.DescribeSharedSubscriptionGroupsWithSubscriptionsResponse
892
+ kwargs["headers"] = request.headers
893
+ kwargs["opts"] = opts or {}
894
+
895
+ return await self.call_and_deserialize(**kwargs)
896
+
879
897
  async def DescribeSharedSubscriptionLag(
880
898
  self,
881
899
  request: models.DescribeSharedSubscriptionLagRequest,
@@ -1189,6 +1207,24 @@ class MqttClient(AbstractClient):
1189
1207
 
1190
1208
  return await self.call_and_deserialize(**kwargs)
1191
1209
 
1210
+ async def ModifyX509Config(
1211
+ self,
1212
+ request: models.ModifyX509ConfigRequest,
1213
+ opts: Dict = None,
1214
+ ) -> models.ModifyX509ConfigResponse:
1215
+ """
1216
+ 修改集群X509配置
1217
+ """
1218
+
1219
+ kwargs = {}
1220
+ kwargs["action"] = "ModifyX509Config"
1221
+ kwargs["params"] = request._serialize()
1222
+ kwargs["resp_cls"] = models.ModifyX509ConfigResponse
1223
+ kwargs["headers"] = request.headers
1224
+ kwargs["opts"] = opts or {}
1225
+
1226
+ return await self.call_and_deserialize(**kwargs)
1227
+
1192
1228
  async def PublishMessage(
1193
1229
  self,
1194
1230
  request: models.PublishMessageRequest,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-mqtt
3
- Version: 3.1.93
3
+ Version: 3.1.103
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.93
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.103
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.103
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.93