tencentcloud-sdk-lke 3.0.1187 → 3.0.1193
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20231130/client.rb +40 -1
- data/lib/v20231130/models.rb +910 -62
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a08e465c0d075c463c85c0f6ee66b4a270df980
|
|
4
|
+
data.tar.gz: 1c8e6b0f9555ebde74fee3dd1f33f018790543cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f952d769f3c27ffef7902093e362012c6c37af4af03f98dc79698f5b44c9699f7f78942b2f09f9ce000156d7b008bb18967c3d1810c2a9857d39ff452e6905d9
|
|
7
|
+
data.tar.gz: f8eda3a4b5176380e8c8faa023269a52333eb2226fd12a638de7efd53d98613737bd08de18e219f0be6aa8ca3afed172658d0b7a8a67b2c5875f0b49bcf88066
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1193
|
data/lib/v20231130/client.rb
CHANGED
|
@@ -29,6 +29,30 @@ module TencentCloud
|
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
|
|
32
|
+
# 工作流工具节点异步回调
|
|
33
|
+
|
|
34
|
+
# @param request: Request instance for CallbackWorkflowToolNode.
|
|
35
|
+
# @type request: :class:`Tencentcloud::lke::V20231130::CallbackWorkflowToolNodeRequest`
|
|
36
|
+
# @rtype: :class:`Tencentcloud::lke::V20231130::CallbackWorkflowToolNodeResponse`
|
|
37
|
+
def CallbackWorkflowToolNode(request)
|
|
38
|
+
body = send_request('CallbackWorkflowToolNode', request.serialize)
|
|
39
|
+
response = JSON.parse(body)
|
|
40
|
+
if response['Response'].key?('Error') == false
|
|
41
|
+
model = CallbackWorkflowToolNodeResponse.new
|
|
42
|
+
model.deserialize(response['Response'])
|
|
43
|
+
model
|
|
44
|
+
else
|
|
45
|
+
code = response['Response']['Error']['Code']
|
|
46
|
+
message = response['Response']['Error']['Message']
|
|
47
|
+
reqid = response['Response']['RequestId']
|
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
49
|
+
end
|
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
51
|
+
raise e
|
|
52
|
+
rescue StandardError => e
|
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
54
|
+
end
|
|
55
|
+
|
|
32
56
|
# 检查属性下的标签名是否存在
|
|
33
57
|
|
|
34
58
|
# @param request: Request instance for CheckAttributeLabelExist.
|
|
@@ -177,6 +201,9 @@ module TencentCloud
|
|
|
177
201
|
end
|
|
178
202
|
|
|
179
203
|
# 创建QA分类
|
|
204
|
+
# 知识库相关背景知识介绍
|
|
205
|
+
# “知识库检索范围”文档:https://cloud.tencent.com/document/product/1759/112704
|
|
206
|
+
# “标签”文档:https://cloud.tencent.com/document/product/1759/112956
|
|
180
207
|
|
|
181
208
|
# @param request: Request instance for CreateQACate.
|
|
182
209
|
# @type request: :class:`Tencentcloud::lke::V20231130::CreateQACateRequest`
|
|
@@ -1138,6 +1165,9 @@ module TencentCloud
|
|
|
1138
1165
|
end
|
|
1139
1166
|
|
|
1140
1167
|
# 导出QA列表
|
|
1168
|
+
# 知识库相关背景知识介绍
|
|
1169
|
+
# “知识库检索范围”文档:https://cloud.tencent.com/document/product/1759/112704
|
|
1170
|
+
# “标签”文档:https://cloud.tencent.com/document/product/1759/112956
|
|
1141
1171
|
|
|
1142
1172
|
# @param request: Request instance for ExportQAList.
|
|
1143
1173
|
# @type request: :class:`Tencentcloud::lke::V20231130::ExportQAListRequest`
|
|
@@ -1162,6 +1192,9 @@ module TencentCloud
|
|
|
1162
1192
|
end
|
|
1163
1193
|
|
|
1164
1194
|
# 导出不满意回复
|
|
1195
|
+
# 知识库相关背景知识介绍
|
|
1196
|
+
# “知识库检索范围”文档:https://cloud.tencent.com/document/product/1759/112704
|
|
1197
|
+
# “标签”文档:https://cloud.tencent.com/document/product/1759/112956
|
|
1165
1198
|
|
|
1166
1199
|
# @param request: Request instance for ExportUnsatisfiedReply.
|
|
1167
1200
|
# @type request: :class:`Tencentcloud::lke::V20231130::ExportUnsatisfiedReplyRequest`
|
|
@@ -1450,7 +1483,10 @@ module TencentCloud
|
|
|
1450
1483
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1451
1484
|
end
|
|
1452
1485
|
|
|
1453
|
-
#
|
|
1486
|
+
# 用户将多个问答批量的分类到知识库的具体分类
|
|
1487
|
+
# 知识库相关背景知识介绍
|
|
1488
|
+
# “知识库检索范围”文档:https://cloud.tencent.com/document/product/1759/112704
|
|
1489
|
+
# “标签”文档:https://cloud.tencent.com/document/product/1759/112956
|
|
1454
1490
|
|
|
1455
1491
|
# @param request: Request instance for GroupQA.
|
|
1456
1492
|
# @type request: :class:`Tencentcloud::lke::V20231130::GroupQARequest`
|
|
@@ -1718,6 +1754,9 @@ module TencentCloud
|
|
|
1718
1754
|
end
|
|
1719
1755
|
|
|
1720
1756
|
# 获取QA分类
|
|
1757
|
+
# 知识库相关背景知识介绍
|
|
1758
|
+
# “知识库检索范围”文档:https://cloud.tencent.com/document/product/1759/112704
|
|
1759
|
+
# “标签”文档:https://cloud.tencent.com/document/product/1759/112956
|
|
1721
1760
|
|
|
1722
1761
|
# @param request: Request instance for ListQACate.
|
|
1723
1762
|
# @type request: :class:`Tencentcloud::lke::V20231130::ListQACateRequest`
|