tencentcloud-sdk-python 3.0.1409__py2.py3-none-any.whl → 3.0.1411__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ams/v20201229/models.py +16 -189
- tencentcloud/apm/v20210622/models.py +15 -0
- tencentcloud/bh/v20230418/bh_client.py +138 -0
- tencentcloud/bh/v20230418/errorcodes.py +3 -0
- tencentcloud/bh/v20230418/models.py +991 -67
- tencentcloud/ccc/v20200210/models.py +2 -2
- tencentcloud/cdb/v20170320/cdb_client.py +27 -21
- tencentcloud/cdb/v20170320/errorcodes.py +0 -3
- tencentcloud/cdb/v20170320/models.py +294 -214
- tencentcloud/ctem/__init__.py +0 -0
- tencentcloud/ctem/v20231128/__init__.py +0 -0
- tencentcloud/ctem/v20231128/ctem_client.py +601 -0
- tencentcloud/ctem/v20231128/errorcodes.py +75 -0
- tencentcloud/ctem/v20231128/models.py +10459 -0
- tencentcloud/cwp/v20180228/models.py +165 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/dlc/v20210125/dlc_client.py +3 -1
- tencentcloud/dlc/v20210125/models.py +24 -7
- tencentcloud/dnspod/v20210323/errorcodes.py +1 -1
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -3
- tencentcloud/dsgc/v20190723/models.py +342 -15
- tencentcloud/emr/v20190103/models.py +155 -0
- tencentcloud/es/v20180416/errorcodes.py +42 -0
- tencentcloud/ess/v20201111/models.py +33 -4
- tencentcloud/hunyuan/v20230901/models.py +17 -2
- tencentcloud/ims/v20201229/models.py +2 -30
- tencentcloud/iotexplorer/v20190423/models.py +4 -4
- tencentcloud/iotvideo/v20201215/models.py +2 -2
- tencentcloud/iotvideo/v20211125/models.py +2 -2
- tencentcloud/kms/v20190118/errorcodes.py +36 -0
- tencentcloud/kms/v20190118/kms_client.py +345 -0
- tencentcloud/kms/v20190118/models.py +3437 -1534
- tencentcloud/lighthouse/v20200324/errorcodes.py +9 -0
- tencentcloud/lke/v20231130/lke_client.py +92 -0
- tencentcloud/lke/v20231130/models.py +2782 -622
- tencentcloud/mongodb/v20190725/models.py +15 -0
- tencentcloud/mps/v20190612/models.py +217 -18
- tencentcloud/mqtt/v20240516/errorcodes.py +3 -0
- tencentcloud/mqtt/v20240516/models.py +255 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/redis/v20180412/models.py +6 -6
- tencentcloud/ses/v20201002/models.py +0 -8
- tencentcloud/tcss/v20201101/models.py +15 -0
- tencentcloud/thpc/v20230321/models.py +47 -2
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/tke/v20180525/models.py +19 -0
- tencentcloud/trocket/v20230308/models.py +624 -354
- tencentcloud/trocket/v20230308/trocket_client.py +28 -5
- tencentcloud/vm/v20210922/models.py +45 -172
- tencentcloud/vpc/v20170312/models.py +15 -0
- tencentcloud/waf/v20180125/models.py +110 -18
- tencentcloud/wedata/v20210820/models.py +1003 -4
- tencentcloud/wedata/v20210820/wedata_client.py +71 -2
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/RECORD +60 -55
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/top_level.txt +0 -0
@@ -234,7 +234,7 @@ class TrocketClient(AbstractClient):
|
|
234
234
|
|
235
235
|
|
236
236
|
def DeleteConsumerGroup(self, request):
|
237
|
-
"""
|
237
|
+
"""删除消费组。消费者组删除后,消费者组的所有配置和相关数据都会被清空,且无法找回。删除后,在线的消费者客户端会出现报错,建议您提前下线客户端。
|
238
238
|
|
239
239
|
:param request: Request instance for DeleteConsumerGroup.
|
240
240
|
:type request: :class:`tencentcloud.trocket.v20230308.models.DeleteConsumerGroupRequest`
|
@@ -257,7 +257,7 @@ class TrocketClient(AbstractClient):
|
|
257
257
|
|
258
258
|
|
259
259
|
def DeleteInstance(self, request):
|
260
|
-
"""删除 RocketMQ 5.x
|
260
|
+
"""删除 RocketMQ 5.x 集群,删除前请先删除正在使用的主题、消费组和角色信息。
|
261
261
|
|
262
262
|
:param request: Request instance for DeleteInstance.
|
263
263
|
:type request: :class:`tencentcloud.trocket.v20230308.models.DeleteInstanceRequest`
|
@@ -418,7 +418,7 @@ class TrocketClient(AbstractClient):
|
|
418
418
|
|
419
419
|
|
420
420
|
def DeleteTopic(self, request):
|
421
|
-
"""
|
421
|
+
"""删除主题。主题删除后,主题的所有配置和相关数据都会被清空,且无法找回。
|
422
422
|
|
423
423
|
:param request: Request instance for DeleteTopic.
|
424
424
|
:type request: :class:`tencentcloud.trocket.v20230308.models.DeleteTopicRequest`
|
@@ -463,6 +463,29 @@ class TrocketClient(AbstractClient):
|
|
463
463
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
464
464
|
|
465
465
|
|
466
|
+
def DescribeConsumerClientList(self, request):
|
467
|
+
"""查询消费组下的客户端连接列表。
|
468
|
+
|
469
|
+
:param request: Request instance for DescribeConsumerClientList.
|
470
|
+
:type request: :class:`tencentcloud.trocket.v20230308.models.DescribeConsumerClientListRequest`
|
471
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.DescribeConsumerClientListResponse`
|
472
|
+
|
473
|
+
"""
|
474
|
+
try:
|
475
|
+
params = request._serialize()
|
476
|
+
headers = request.headers
|
477
|
+
body = self.call("DescribeConsumerClientList", params, headers=headers)
|
478
|
+
response = json.loads(body)
|
479
|
+
model = models.DescribeConsumerClientListResponse()
|
480
|
+
model._deserialize(response["Response"])
|
481
|
+
return model
|
482
|
+
except Exception as e:
|
483
|
+
if isinstance(e, TencentCloudSDKException):
|
484
|
+
raise
|
485
|
+
else:
|
486
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
487
|
+
|
488
|
+
|
466
489
|
def DescribeConsumerGroup(self, request):
|
467
490
|
"""查询消费组详情
|
468
491
|
|
@@ -1365,7 +1388,7 @@ class TrocketClient(AbstractClient):
|
|
1365
1388
|
|
1366
1389
|
|
1367
1390
|
def ModifyInstance(self, request):
|
1368
|
-
"""修改 RocketMQ 5.x
|
1391
|
+
"""修改 RocketMQ 5.x 集群属性,仅支持修改运行中的集群。
|
1369
1392
|
|
1370
1393
|
:param request: Request instance for ModifyInstance.
|
1371
1394
|
:type request: :class:`tencentcloud.trocket.v20230308.models.ModifyInstanceRequest`
|
@@ -1388,7 +1411,7 @@ class TrocketClient(AbstractClient):
|
|
1388
1411
|
|
1389
1412
|
|
1390
1413
|
def ModifyInstanceEndpoint(self, request):
|
1391
|
-
"""修改 RocketMQ 5.x
|
1414
|
+
"""修改 RocketMQ 5.x 集群接入点,操作前请先确认接入点已存在。
|
1392
1415
|
|
1393
1416
|
:param request: Request instance for ModifyInstanceEndpoint.
|
1394
1417
|
:type request: :class:`tencentcloud.trocket.v20230308.models.ModifyInstanceEndpointRequest`
|