tencentcloud-sdk-python 3.0.1365__py2.py3-none-any.whl → 3.0.1366__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/cam/v20190116/models.py +0 -2
- tencentcloud/cat/v20180409/models.py +310 -0
- tencentcloud/ccc/v20200210/models.py +19 -0
- tencentcloud/gs/v20191118/errorcodes.py +3 -0
- tencentcloud/gs/v20191118/gs_client.py +46 -0
- tencentcloud/gs/v20191118/models.py +244 -0
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/lke/v20231130/models.py +4 -4
- tencentcloud/tdmq/v20200217/models.py +115 -95
- tencentcloud/tdmq/v20200217/tdmq_client.py +3 -3
- tencentcloud/tione/v20211111/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +660 -0
- tencentcloud/trtc/v20190722/models.py +2 -4
- tencentcloud/tse/v20201207/models.py +45 -0
- tencentcloud/vod/v20180717/models.py +6 -6
- tencentcloud/vpc/v20170312/models.py +18 -8
- {tencentcloud_sdk_python-3.0.1365.dist-info → tencentcloud_sdk_python-3.0.1366.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1365.dist-info → tencentcloud_sdk_python-3.0.1366.dist-info}/RECORD +22 -22
- {tencentcloud_sdk_python-3.0.1365.dist-info → tencentcloud_sdk_python-3.0.1366.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1365.dist-info → tencentcloud_sdk_python-3.0.1366.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1365.dist-info → tencentcloud_sdk_python-3.0.1366.dist-info}/top_level.txt +0 -0
@@ -303,7 +303,7 @@ class TdmqClient(AbstractClient):
|
|
303
303
|
|
304
304
|
|
305
305
|
def CreateRabbitMQVipInstance(self, request):
|
306
|
-
"""创建RabbitMQ
|
306
|
+
"""创建 RabbitMQ 托管版实例
|
307
307
|
|
308
308
|
:param request: Request instance for CreateRabbitMQVipInstance.
|
309
309
|
:type request: :class:`tencentcloud.tdmq.v20200217.models.CreateRabbitMQVipInstanceRequest`
|
@@ -809,7 +809,7 @@ class TdmqClient(AbstractClient):
|
|
809
809
|
|
810
810
|
|
811
811
|
def DeleteRabbitMQVipInstance(self, request):
|
812
|
-
"""删除RabbitMQ
|
812
|
+
"""删除 RabbitMQ 托管版实例
|
813
813
|
|
814
814
|
:param request: Request instance for DeleteRabbitMQVipInstance.
|
815
815
|
:type request: :class:`tencentcloud.tdmq.v20200217.models.DeleteRabbitMQVipInstanceRequest`
|
@@ -1662,7 +1662,7 @@ class TdmqClient(AbstractClient):
|
|
1662
1662
|
|
1663
1663
|
|
1664
1664
|
def DescribeRabbitMQNodeList(self, request):
|
1665
|
-
"""RabbitMQ
|
1665
|
+
"""查询 RabbitMQ 托管版节点列表
|
1666
1666
|
|
1667
1667
|
:param request: Request instance for DescribeRabbitMQNodeList.
|
1668
1668
|
:type request: :class:`tencentcloud.tdmq.v20200217.models.DescribeRabbitMQNodeListRequest`
|
@@ -113,6 +113,9 @@ FAILEDOPERATION_FREEZEBILLFAILED = 'FailedOperation.FreezeBillFailed'
|
|
113
113
|
# 白名单免费配额不足。
|
114
114
|
FAILEDOPERATION_INSUFFICIENTWHITELISTQUOTA = 'FailedOperation.InsufficientWhitelistQuota'
|
115
115
|
|
116
|
+
# 暂无可用的鉴权token。
|
117
|
+
FAILEDOPERATION_INVALIDAUTHTOKEN = 'FailedOperation.InvalidAuthToken'
|
118
|
+
|
116
119
|
# 操作失败,用户类型异常。
|
117
120
|
FAILEDOPERATION_INVALIDUSERTYPE = 'FailedOperation.InvalidUserType'
|
118
121
|
|