tencentcloud-sdk-python 3.0.1254__py2.py3-none-any.whl → 3.0.1256__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/captcha/v20190722/models.py +16 -3
- tencentcloud/cdb/v20170320/models.py +14 -0
- tencentcloud/cfw/v20190904/cfw_client.py +6 -2
- tencentcloud/cfw/v20190904/models.py +83 -28
- tencentcloud/clb/v20180317/models.py +25 -1
- tencentcloud/cvm/v20170312/models.py +0 -1
- tencentcloud/cwp/v20180228/cwp_client.py +6 -2
- tencentcloud/cwp/v20180228/models.py +75 -26
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +39 -39
- tencentcloud/cynosdb/v20190107/models.py +27 -0
- tencentcloud/emr/v20190103/emr_client.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +9 -8
- tencentcloud/ess/v20201111/models.py +26 -0
- tencentcloud/essbasic/v20210526/models.py +26 -0
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +67 -39
- tencentcloud/hunyuan/v20230901/models.py +1 -1
- tencentcloud/lcic/v20220817/models.py +4 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +6 -0
- tencentcloud/monitor/v20180724/models.py +25 -0
- tencentcloud/mqtt/v20240516/models.py +4 -2
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/pts/v20210728/models.py +13 -0
- tencentcloud/redis/v20180412/models.py +3 -1
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/ses/v20201002/models.py +0 -10
- tencentcloud/sms/v20190711/models.py +8 -10
- tencentcloud/sms/v20210111/models.py +10 -13
- tencentcloud/sms/v20210111/sms_client.py +1 -1
- tencentcloud/taf/v20200210/models.py +63 -0
- tencentcloud/tdmq/v20200217/models.py +600 -55
- tencentcloud/tdmq/v20200217/tdmq_client.py +69 -0
- tencentcloud/trocket/v20230308/models.py +185 -115
- tencentcloud/trocket/v20230308/trocket_client.py +8 -8
- tencentcloud/tsi/v20210325/models.py +135 -0
- tencentcloud/vod/v20180717/models.py +878 -7
- tencentcloud/vpc/v20170312/models.py +12 -12
- tencentcloud/waf/v20180125/models.py +134 -0
- tencentcloud/waf/v20180125/waf_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +592 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/RECORD +47 -47
- {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/top_level.txt +0 -0
@@ -256,6 +256,29 @@ class TdmqClient(AbstractClient):
|
|
256
256
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
257
257
|
|
258
258
|
|
259
|
+
def CreateRabbitMQBinding(self, request):
|
260
|
+
"""创建RabbitMQ路由关系
|
261
|
+
|
262
|
+
:param request: Request instance for CreateRabbitMQBinding.
|
263
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.CreateRabbitMQBindingRequest`
|
264
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.CreateRabbitMQBindingResponse`
|
265
|
+
|
266
|
+
"""
|
267
|
+
try:
|
268
|
+
params = request._serialize()
|
269
|
+
headers = request.headers
|
270
|
+
body = self.call("CreateRabbitMQBinding", params, headers=headers)
|
271
|
+
response = json.loads(body)
|
272
|
+
model = models.CreateRabbitMQBindingResponse()
|
273
|
+
model._deserialize(response["Response"])
|
274
|
+
return model
|
275
|
+
except Exception as e:
|
276
|
+
if isinstance(e, TencentCloudSDKException):
|
277
|
+
raise
|
278
|
+
else:
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
280
|
+
|
281
|
+
|
259
282
|
def CreateRabbitMQUser(self, request):
|
260
283
|
"""创建RabbitMQ的用户
|
261
284
|
|
@@ -716,6 +739,29 @@ class TdmqClient(AbstractClient):
|
|
716
739
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
717
740
|
|
718
741
|
|
742
|
+
def DeleteRabbitMQBinding(self, request):
|
743
|
+
"""解绑RabbitMQ路由关系
|
744
|
+
|
745
|
+
:param request: Request instance for DeleteRabbitMQBinding.
|
746
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.DeleteRabbitMQBindingRequest`
|
747
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.DeleteRabbitMQBindingResponse`
|
748
|
+
|
749
|
+
"""
|
750
|
+
try:
|
751
|
+
params = request._serialize()
|
752
|
+
headers = request.headers
|
753
|
+
body = self.call("DeleteRabbitMQBinding", params, headers=headers)
|
754
|
+
response = json.loads(body)
|
755
|
+
model = models.DeleteRabbitMQBindingResponse()
|
756
|
+
model._deserialize(response["Response"])
|
757
|
+
return model
|
758
|
+
except Exception as e:
|
759
|
+
if isinstance(e, TencentCloudSDKException):
|
760
|
+
raise
|
761
|
+
else:
|
762
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
763
|
+
|
764
|
+
|
719
765
|
def DeleteRabbitMQUser(self, request):
|
720
766
|
"""删除RabbitMQ的用户
|
721
767
|
|
@@ -1569,6 +1615,29 @@ class TdmqClient(AbstractClient):
|
|
1569
1615
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1570
1616
|
|
1571
1617
|
|
1618
|
+
def DescribeRabbitMQBindings(self, request):
|
1619
|
+
"""查询RabbitMQ路由关系列表
|
1620
|
+
|
1621
|
+
:param request: Request instance for DescribeRabbitMQBindings.
|
1622
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.DescribeRabbitMQBindingsRequest`
|
1623
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.DescribeRabbitMQBindingsResponse`
|
1624
|
+
|
1625
|
+
"""
|
1626
|
+
try:
|
1627
|
+
params = request._serialize()
|
1628
|
+
headers = request.headers
|
1629
|
+
body = self.call("DescribeRabbitMQBindings", params, headers=headers)
|
1630
|
+
response = json.loads(body)
|
1631
|
+
model = models.DescribeRabbitMQBindingsResponse()
|
1632
|
+
model._deserialize(response["Response"])
|
1633
|
+
return model
|
1634
|
+
except Exception as e:
|
1635
|
+
if isinstance(e, TencentCloudSDKException):
|
1636
|
+
raise
|
1637
|
+
else:
|
1638
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1639
|
+
|
1640
|
+
|
1572
1641
|
def DescribeRabbitMQExchanges(self, request):
|
1573
1642
|
"""查询RabbitMQ exchange 列表
|
1574
1643
|
|