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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ams/v20201229/models.py +398 -3
- tencentcloud/bi/v20220105/models.py +1 -1
- tencentcloud/cat/v20180409/models.py +12 -0
- tencentcloud/cdb/v20170320/models.py +45 -3
- tencentcloud/cdn/v20180606/models.py +141 -0
- tencentcloud/cfw/v20190904/cfw_client.py +23 -0
- tencentcloud/cfw/v20190904/models.py +354 -0
- tencentcloud/cynosdb/v20190107/models.py +121 -0
- tencentcloud/ecm/v20190719/models.py +24 -0
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +469 -108
- tencentcloud/hunyuan/v20230901/errorcodes.py +12 -0
- tencentcloud/hunyuan/v20230901/models.py +198 -13
- tencentcloud/tke/v20180525/models.py +274 -0
- tencentcloud/tke/v20180525/tke_client.py +23 -0
- tencentcloud/vm/v20201229/models.py +253 -4
- tencentcloud/vm/v20201229/vm_client.py +1 -3
- tencentcloud/vm/v20210922/models.py +5 -6
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1198.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1198.dist-info}/RECORD +24 -24
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1198.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1198.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1198.dist-info}/top_level.txt +0 -0
@@ -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文件在后台没有准备好(正在生成)。
|