lib/v20200217/client.rb in tencentcloud-sdk-tdmq-3.0.702 vs lib/v20200217/client.rb in tencentcloud-sdk-tdmq-3.0.703
- old
+ new
@@ -675,9 +675,33 @@
raise e
rescue StandardError => e
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end
+ # 删除专业集群——预付费,仅通过API 调用,支持同时删除多个集群
+
+ # @param request: Request instance for DeleteProClusters.
+ # @type request: :class:`Tencentcloud::tdmq::V20200217::DeleteProClustersRequest`
+ # @rtype: :class:`Tencentcloud::tdmq::V20200217::DeleteProClustersResponse`
+ def DeleteProClusters(request)
+ body = send_request('DeleteProClusters', request.serialize)
+ response = JSON.parse(body)
+ if response['Response'].key?('Error') == false
+ model = DeleteProClustersResponse.new
+ model.deserialize(response['Response'])
+ model
+ else
+ code = response['Response']['Error']['Code']
+ message = response['Response']['Error']['Message']
+ reqid = response['Response']['RequestId']
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
+ end
+ rescue TencentCloud::Common::TencentCloudSDKException => e
+ raise e
+ rescue StandardError => e
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
+ end
+
# 删除RabbitMQ的用户
# @param request: Request instance for DeleteRabbitMQUser.
# @type request: :class:`Tencentcloud::tdmq::V20200217::DeleteRabbitMQUserRequest`
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DeleteRabbitMQUserResponse`
\ No newline at end of file