tencentcloud-sdk-python 3.0.1271__py2.py3-none-any.whl → 3.0.1273__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/billing/v20180709/models.py +0 -6
- tencentcloud/bsca/v20210811/models.py +17 -2
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +8 -4
- tencentcloud/cdn/v20180606/cdn_client.py +0 -1
- tencentcloud/cdwdoris/v20211228/models.py +73 -0
- tencentcloud/cfg/v20210820/cfg_client.py +23 -0
- tencentcloud/cfg/v20210820/models.py +210 -0
- tencentcloud/cfs/v20190719/models.py +4 -4
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cynosdb/v20190107/models.py +19 -2
- tencentcloud/dnspod/v20210323/errorcodes.py +3 -3
- tencentcloud/dnspod/v20210323/models.py +2 -2
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/gwlb/v20240906/errorcodes.py +3 -0
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/models.py +17 -17
- tencentcloud/live/v20180801/errorcodes.py +57 -0
- tencentcloud/live/v20180801/live_client.py +302 -0
- tencentcloud/live/v20180801/models.py +1965 -132
- tencentcloud/lke/v20231130/lke_client.py +23 -0
- tencentcloud/lke/v20231130/models.py +1464 -220
- tencentcloud/ocr/v20181119/models.py +31 -0
- tencentcloud/svp/v20240125/models.py +0 -2
- tencentcloud/thpc/v20230321/models.py +4 -4
- tencentcloud/tke/v20180525/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +46 -4
- tencentcloud/tse/v20201207/models.py +6 -6
- tencentcloud/vpc/v20170312/models.py +0 -6
- tencentcloud/vpc/v20170312/vpc_client.py +0 -1
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python-3.0.1271.dist-info → tencentcloud_sdk_python-3.0.1273.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1271.dist-info → tencentcloud_sdk_python-3.0.1273.dist-info}/RECORD +39 -39
- {tencentcloud_sdk_python-3.0.1271.dist-info → tencentcloud_sdk_python-3.0.1273.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1271.dist-info → tencentcloud_sdk_python-3.0.1273.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1271.dist-info → tencentcloud_sdk_python-3.0.1273.dist-info}/top_level.txt +0 -0
@@ -2013,6 +2013,29 @@ class LkeClient(AbstractClient):
|
|
2013
2013
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2014
2014
|
|
2015
2015
|
|
2016
|
+
def RunReRank(self, request):
|
2017
|
+
"""重排序
|
2018
|
+
|
2019
|
+
:param request: Request instance for RunReRank.
|
2020
|
+
:type request: :class:`tencentcloud.lke.v20231130.models.RunReRankRequest`
|
2021
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.RunReRankResponse`
|
2022
|
+
|
2023
|
+
"""
|
2024
|
+
try:
|
2025
|
+
params = request._serialize()
|
2026
|
+
headers = request.headers
|
2027
|
+
body = self.call("RunReRank", params, headers=headers)
|
2028
|
+
response = json.loads(body)
|
2029
|
+
model = models.RunReRankResponse()
|
2030
|
+
model._deserialize(response["Response"])
|
2031
|
+
return model
|
2032
|
+
except Exception as e:
|
2033
|
+
if isinstance(e, TencentCloudSDKException):
|
2034
|
+
raise
|
2035
|
+
else:
|
2036
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2037
|
+
|
2038
|
+
|
2016
2039
|
def SaveDoc(self, request):
|
2017
2040
|
"""保存文档
|
2018
2041
|
|