tencentcloud-sdk-python 3.0.1197__py2.py3-none-any.whl → 3.0.1198__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.
@@ -556,6 +556,29 @@ class EmrClient(AbstractClient):
556
556
  raise TencentCloudSDKException(type(e).__name__, str(e))
557
557
 
558
558
 
559
+ def DescribeTrinoQueryInfo(self, request):
560
+ """获取trino查询结果
561
+
562
+ :param request: Request instance for DescribeTrinoQueryInfo.
563
+ :type request: :class:`tencentcloud.emr.v20190103.models.DescribeTrinoQueryInfoRequest`
564
+ :rtype: :class:`tencentcloud.emr.v20190103.models.DescribeTrinoQueryInfoResponse`
565
+
566
+ """
567
+ try:
568
+ params = request._serialize()
569
+ headers = request.headers
570
+ body = self.call("DescribeTrinoQueryInfo", params, headers=headers)
571
+ response = json.loads(body)
572
+ model = models.DescribeTrinoQueryInfoResponse()
573
+ model._deserialize(response["Response"])
574
+ return model
575
+ except Exception as e:
576
+ if isinstance(e, TencentCloudSDKException):
577
+ raise
578
+ else:
579
+ raise TencentCloudSDKException(type(e).__name__, str(e))
580
+
581
+
559
582
  def DescribeUsersForUserManager(self, request):
560
583
  """该接口支持安装了OpenLdap组件的集群。
561
584
  批量导出用户。对于kerberos集群,如果需要kertab文件下载地址,可以将NeedKeytabInfo设置为true;注意SupportDownLoadKeyTab为true,但是DownLoadKeyTabUrl为空字符串,表示keytab文件在后台没有准备好(正在生成)。