tencentcloud-sdk-python 3.0.1077__py2.py3-none-any.whl → 3.0.1079__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/antiddos/v20200309/antiddos_client.py +23 -0
- tencentcloud/antiddos/v20200309/models.py +552 -0
- tencentcloud/billing/v20180709/billing_client.py +23 -0
- tencentcloud/billing/v20180709/models.py +106 -0
- tencentcloud/cfg/v20210820/models.py +17 -13
- tencentcloud/cls/v20201016/models.py +51 -14
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +70 -0
- tencentcloud/cvm/v20170312/errorcodes.py +24 -0
- tencentcloud/cvm/v20170312/models.py +6 -6
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +2 -2
- tencentcloud/cynosdb/v20190107/models.py +470 -5
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +341 -0
- tencentcloud/ess/v20201111/ess_client.py +9 -3
- tencentcloud/ess/v20201111/models.py +9 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +7 -11
- tencentcloud/essbasic/v20210526/models.py +3 -0
- tencentcloud/iotvideo/v20211125/models.py +36 -0
- tencentcloud/live/v20180801/models.py +5 -2
- tencentcloud/monitor/v20180724/monitor_client.py +3 -0
- tencentcloud/oceanus/v20190422/models.py +38 -0
- tencentcloud/privatedns/v20201028/models.py +20 -1
- tencentcloud/ssl/v20191205/errorcodes.py +0 -6
- tencentcloud/ssl/v20191205/models.py +0 -156
- tencentcloud/ssl/v20191205/ssl_client.py +0 -25
- tencentcloud/teo/v20220901/errorcodes.py +15 -0
- tencentcloud/teo/v20220901/models.py +12 -0
- tencentcloud/trocket/v20230308/models.py +800 -43
- tencentcloud/trocket/v20230308/trocket_client.py +75 -0
- tencentcloud/wedata/v20210820/models.py +412 -0
- {tencentcloud_sdk_python-3.0.1077.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1077.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/RECORD +37 -37
- {tencentcloud_sdk_python-3.0.1077.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1077.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1077.dist-info → tencentcloud_sdk_python-3.0.1079.dist-info}/top_level.txt +0 -0
|
@@ -72,6 +72,29 @@ class TrocketClient(AbstractClient):
|
|
|
72
72
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
|
+
def CreateMQTTInstance(self, request):
|
|
76
|
+
"""购买新的MQTT实例
|
|
77
|
+
|
|
78
|
+
:param request: Request instance for CreateMQTTInstance.
|
|
79
|
+
:type request: :class:`tencentcloud.trocket.v20230308.models.CreateMQTTInstanceRequest`
|
|
80
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.CreateMQTTInstanceResponse`
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
try:
|
|
84
|
+
params = request._serialize()
|
|
85
|
+
headers = request.headers
|
|
86
|
+
body = self.call("CreateMQTTInstance", params, headers=headers)
|
|
87
|
+
response = json.loads(body)
|
|
88
|
+
model = models.CreateMQTTInstanceResponse()
|
|
89
|
+
model._deserialize(response["Response"])
|
|
90
|
+
return model
|
|
91
|
+
except Exception as e:
|
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
|
93
|
+
raise
|
|
94
|
+
else:
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
|
+
|
|
97
|
+
|
|
75
98
|
def CreateRole(self, request):
|
|
76
99
|
"""添加角色
|
|
77
100
|
|
|
@@ -311,6 +334,58 @@ class TrocketClient(AbstractClient):
|
|
|
311
334
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
312
335
|
|
|
313
336
|
|
|
337
|
+
def DescribeMQTTInstanceList(self, request):
|
|
338
|
+
"""获取实例列表,Filters参数使用说明如下:
|
|
339
|
+
1. InstanceName, 名称模糊查询
|
|
340
|
+
2. InstanceId,实例ID查询
|
|
341
|
+
3. InstanceType, 实例类型查询,支持多选
|
|
342
|
+
3. InstanceStatus,实例状态查询,支持多选
|
|
343
|
+
|
|
344
|
+
当使用TagFilters查询时,Filters参数失效。
|
|
345
|
+
|
|
346
|
+
:param request: Request instance for DescribeMQTTInstanceList.
|
|
347
|
+
:type request: :class:`tencentcloud.trocket.v20230308.models.DescribeMQTTInstanceListRequest`
|
|
348
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.DescribeMQTTInstanceListResponse`
|
|
349
|
+
|
|
350
|
+
"""
|
|
351
|
+
try:
|
|
352
|
+
params = request._serialize()
|
|
353
|
+
headers = request.headers
|
|
354
|
+
body = self.call("DescribeMQTTInstanceList", params, headers=headers)
|
|
355
|
+
response = json.loads(body)
|
|
356
|
+
model = models.DescribeMQTTInstanceListResponse()
|
|
357
|
+
model._deserialize(response["Response"])
|
|
358
|
+
return model
|
|
359
|
+
except Exception as e:
|
|
360
|
+
if isinstance(e, TencentCloudSDKException):
|
|
361
|
+
raise
|
|
362
|
+
else:
|
|
363
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
def DescribeMQTTProductSKUList(self, request):
|
|
367
|
+
"""非对外接口,获取产品售卖规格
|
|
368
|
+
|
|
369
|
+
:param request: Request instance for DescribeMQTTProductSKUList.
|
|
370
|
+
:type request: :class:`tencentcloud.trocket.v20230308.models.DescribeMQTTProductSKUListRequest`
|
|
371
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.DescribeMQTTProductSKUListResponse`
|
|
372
|
+
|
|
373
|
+
"""
|
|
374
|
+
try:
|
|
375
|
+
params = request._serialize()
|
|
376
|
+
headers = request.headers
|
|
377
|
+
body = self.call("DescribeMQTTProductSKUList", params, headers=headers)
|
|
378
|
+
response = json.loads(body)
|
|
379
|
+
model = models.DescribeMQTTProductSKUListResponse()
|
|
380
|
+
model._deserialize(response["Response"])
|
|
381
|
+
return model
|
|
382
|
+
except Exception as e:
|
|
383
|
+
if isinstance(e, TencentCloudSDKException):
|
|
384
|
+
raise
|
|
385
|
+
else:
|
|
386
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
387
|
+
|
|
388
|
+
|
|
314
389
|
def DescribeRoleList(self, request):
|
|
315
390
|
"""查询角色列表,Filter参数使用说明如下:
|
|
316
391
|
|