tencentcloud-sdk-lke 3.0.1073 → 3.0.1077
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/models.rb +218 -37
- 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: 241402a09d5f5cf49117728cbecbc756e6354545
|
4
|
+
data.tar.gz: 2ca6200b7bc791e753f673e85898fe45970d4fa7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb352f8fd1b1355328b3f434a6dd10d8fe655c27afe3200a01daaa381ce3c026c402eeb40faa90466bbc20e66f65cbc9b2336e3b59a41a3e5e660a76697897ed
|
7
|
+
data.tar.gz: e80419b2a15b3882b2c5d9b31667d0649598c8c0d46c8aef4410dc2cd1d7e280006c3aa0bc84fd75309cfee47130636c02676aa52d352b2f06d306f050e4d919
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1077
|
data/lib/v20231130/models.rb
CHANGED
@@ -735,6 +735,33 @@ module TencentCloud
|
|
735
735
|
end
|
736
736
|
end
|
737
737
|
|
738
|
+
# 标签值引用的工作流详情
|
739
|
+
class AttributeLabelRefByWorkflow < TencentCloud::Common::AbstractModel
|
740
|
+
# @param AttributeLabelBizId: 标签值id
|
741
|
+
# @type AttributeLabelBizId: String
|
742
|
+
# @param WorkflowList: 标签值引用的工作流列表
|
743
|
+
# @type WorkflowList: Array
|
744
|
+
|
745
|
+
attr_accessor :AttributeLabelBizId, :WorkflowList
|
746
|
+
|
747
|
+
def initialize(attributelabelbizid=nil, workflowlist=nil)
|
748
|
+
@AttributeLabelBizId = attributelabelbizid
|
749
|
+
@WorkflowList = workflowlist
|
750
|
+
end
|
751
|
+
|
752
|
+
def deserialize(params)
|
753
|
+
@AttributeLabelBizId = params['AttributeLabelBizId']
|
754
|
+
unless params['WorkflowList'].nil?
|
755
|
+
@WorkflowList = []
|
756
|
+
params['WorkflowList'].each do |i|
|
757
|
+
workflowref_tmp = WorkflowRef.new
|
758
|
+
workflowref_tmp.deserialize(i)
|
759
|
+
@WorkflowList << workflowref_tmp
|
760
|
+
end
|
761
|
+
end
|
762
|
+
end
|
763
|
+
end
|
764
|
+
|
738
765
|
# 应用基础配置
|
739
766
|
class BaseConfig < TencentCloud::Common::AbstractModel
|
740
767
|
# @param Name: 应用名称
|
@@ -984,18 +1011,30 @@ module TencentCloud
|
|
984
1011
|
class CheckAttributeLabelReferResponse < TencentCloud::Common::AbstractModel
|
985
1012
|
# @param IsRefer: 是否引用
|
986
1013
|
# @type IsRefer: Boolean
|
1014
|
+
# @param List: 引用的工作流详情
|
1015
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1016
|
+
# @type List: Array
|
987
1017
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
988
1018
|
# @type RequestId: String
|
989
1019
|
|
990
|
-
attr_accessor :IsRefer, :RequestId
|
1020
|
+
attr_accessor :IsRefer, :List, :RequestId
|
991
1021
|
|
992
|
-
def initialize(isrefer=nil, requestid=nil)
|
1022
|
+
def initialize(isrefer=nil, list=nil, requestid=nil)
|
993
1023
|
@IsRefer = isrefer
|
1024
|
+
@List = list
|
994
1025
|
@RequestId = requestid
|
995
1026
|
end
|
996
1027
|
|
997
1028
|
def deserialize(params)
|
998
1029
|
@IsRefer = params['IsRefer']
|
1030
|
+
unless params['List'].nil?
|
1031
|
+
@List = []
|
1032
|
+
params['List'].each do |i|
|
1033
|
+
attributelabelrefbyworkflow_tmp = AttributeLabelRefByWorkflow.new
|
1034
|
+
attributelabelrefbyworkflow_tmp.deserialize(i)
|
1035
|
+
@List << attributelabelrefbyworkflow_tmp
|
1036
|
+
end
|
1037
|
+
end
|
999
1038
|
@RequestId = params['RequestId']
|
1000
1039
|
end
|
1001
1040
|
end
|
@@ -1201,12 +1240,15 @@ module TencentCloud
|
|
1201
1240
|
# @type AppType: String
|
1202
1241
|
# @param BaseConfig: 应用基础配置
|
1203
1242
|
# @type BaseConfig: :class:`Tencentcloud::Lke.v20231130.models.BaseConfig`
|
1243
|
+
# @param Pattern: 应用模式 standard:标准模式, agent: agent模式,single_workflow:单工作流模式
|
1244
|
+
# @type Pattern: String
|
1204
1245
|
|
1205
|
-
attr_accessor :AppType, :BaseConfig
|
1246
|
+
attr_accessor :AppType, :BaseConfig, :Pattern
|
1206
1247
|
|
1207
|
-
def initialize(apptype=nil, baseconfig=nil)
|
1248
|
+
def initialize(apptype=nil, baseconfig=nil, pattern=nil)
|
1208
1249
|
@AppType = apptype
|
1209
1250
|
@BaseConfig = baseconfig
|
1251
|
+
@Pattern = pattern
|
1210
1252
|
end
|
1211
1253
|
|
1212
1254
|
def deserialize(params)
|
@@ -1215,6 +1257,7 @@ module TencentCloud
|
|
1215
1257
|
@BaseConfig = BaseConfig.new
|
1216
1258
|
@BaseConfig.deserialize(params['BaseConfig'])
|
1217
1259
|
end
|
1260
|
+
@Pattern = params['Pattern']
|
1218
1261
|
end
|
1219
1262
|
end
|
1220
1263
|
|
@@ -1650,14 +1693,20 @@ module TencentCloud
|
|
1650
1693
|
# @type VarDesc: String
|
1651
1694
|
# @param VarType: 变量类型定义,支持类型如下:(STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO);传输过程是json字符串,标签中仅支持"STRING"类型使用
|
1652
1695
|
# @type VarType: String
|
1696
|
+
# @param VarDefaultValue: 自定义变量默认值
|
1697
|
+
# @type VarDefaultValue: String
|
1698
|
+
# @param VarDefaultFileName: 自定义变量文件默认名称
|
1699
|
+
# @type VarDefaultFileName: String
|
1653
1700
|
|
1654
|
-
attr_accessor :AppBizId, :VarName, :VarDesc, :VarType
|
1701
|
+
attr_accessor :AppBizId, :VarName, :VarDesc, :VarType, :VarDefaultValue, :VarDefaultFileName
|
1655
1702
|
|
1656
|
-
def initialize(appbizid=nil, varname=nil, vardesc=nil, vartype=nil)
|
1703
|
+
def initialize(appbizid=nil, varname=nil, vardesc=nil, vartype=nil, vardefaultvalue=nil, vardefaultfilename=nil)
|
1657
1704
|
@AppBizId = appbizid
|
1658
1705
|
@VarName = varname
|
1659
1706
|
@VarDesc = vardesc
|
1660
1707
|
@VarType = vartype
|
1708
|
+
@VarDefaultValue = vardefaultvalue
|
1709
|
+
@VarDefaultFileName = vardefaultfilename
|
1661
1710
|
end
|
1662
1711
|
|
1663
1712
|
def deserialize(params)
|
@@ -1665,6 +1714,8 @@ module TencentCloud
|
|
1665
1714
|
@VarName = params['VarName']
|
1666
1715
|
@VarDesc = params['VarDesc']
|
1667
1716
|
@VarType = params['VarType']
|
1717
|
+
@VarDefaultValue = params['VarDefaultValue']
|
1718
|
+
@VarDefaultFileName = params['VarDefaultFileName']
|
1668
1719
|
end
|
1669
1720
|
end
|
1670
1721
|
|
@@ -2187,10 +2238,12 @@ module TencentCloud
|
|
2187
2238
|
# @type AppBizIds: Array
|
2188
2239
|
# @param SubScenes: 筛选子场景(文档解析场景使用)
|
2189
2240
|
# @type SubScenes: Array
|
2241
|
+
# @param AppType: 应用类型(knowledge_qa应用管理, shared_knowlege 共享知识库)
|
2242
|
+
# @type AppType: String
|
2190
2243
|
|
2191
|
-
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes
|
2244
|
+
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType
|
2192
2245
|
|
2193
|
-
def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil)
|
2246
|
+
def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil, apptype=nil)
|
2194
2247
|
@UinAccount = uinaccount
|
2195
2248
|
@LoginUin = loginuin
|
2196
2249
|
@LoginSubAccountUin = loginsubaccountuin
|
@@ -2200,6 +2253,7 @@ module TencentCloud
|
|
2200
2253
|
@EndTime = endtime
|
2201
2254
|
@AppBizIds = appbizids
|
2202
2255
|
@SubScenes = subscenes
|
2256
|
+
@AppType = apptype
|
2203
2257
|
end
|
2204
2258
|
|
2205
2259
|
def deserialize(params)
|
@@ -2212,6 +2266,7 @@ module TencentCloud
|
|
2212
2266
|
@EndTime = params['EndTime']
|
2213
2267
|
@AppBizIds = params['AppBizIds']
|
2214
2268
|
@SubScenes = params['SubScenes']
|
2269
|
+
@AppType = params['AppType']
|
2215
2270
|
end
|
2216
2271
|
end
|
2217
2272
|
|
@@ -2496,12 +2551,14 @@ module TencentCloud
|
|
2496
2551
|
# @type AttrLabels: Array
|
2497
2552
|
# @param CateBizId: 分类ID
|
2498
2553
|
# @type CateBizId: String
|
2554
|
+
# @param IsDisabled: 文档是否停用,false:未停用,true:已停用
|
2555
|
+
# @type IsDisabled: Boolean
|
2499
2556
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2500
2557
|
# @type RequestId: String
|
2501
2558
|
|
2502
|
-
attr_accessor :DocBizId, :FileName, :FileType, :CosUrl, :UpdateTime, :Status, :StatusDesc, :Reason, :IsRefer, :QaNum, :IsDeleted, :Source, :SourceDesc, :IsAllowRestart, :IsDeletedQa, :IsCreatingQa, :IsAllowDelete, :IsAllowRefer, :IsCreatedQa, :DocCharSize, :IsAllowEdit, :AttrRange, :AttrLabels, :CateBizId, :RequestId
|
2559
|
+
attr_accessor :DocBizId, :FileName, :FileType, :CosUrl, :UpdateTime, :Status, :StatusDesc, :Reason, :IsRefer, :QaNum, :IsDeleted, :Source, :SourceDesc, :IsAllowRestart, :IsDeletedQa, :IsCreatingQa, :IsAllowDelete, :IsAllowRefer, :IsCreatedQa, :DocCharSize, :IsAllowEdit, :AttrRange, :AttrLabels, :CateBizId, :IsDisabled, :RequestId
|
2503
2560
|
|
2504
|
-
def initialize(docbizid=nil, filename=nil, filetype=nil, cosurl=nil, updatetime=nil, status=nil, statusdesc=nil, reason=nil, isrefer=nil, qanum=nil, isdeleted=nil, source=nil, sourcedesc=nil, isallowrestart=nil, isdeletedqa=nil, iscreatingqa=nil, isallowdelete=nil, isallowrefer=nil, iscreatedqa=nil, doccharsize=nil, isallowedit=nil, attrrange=nil, attrlabels=nil, catebizid=nil, requestid=nil)
|
2561
|
+
def initialize(docbizid=nil, filename=nil, filetype=nil, cosurl=nil, updatetime=nil, status=nil, statusdesc=nil, reason=nil, isrefer=nil, qanum=nil, isdeleted=nil, source=nil, sourcedesc=nil, isallowrestart=nil, isdeletedqa=nil, iscreatingqa=nil, isallowdelete=nil, isallowrefer=nil, iscreatedqa=nil, doccharsize=nil, isallowedit=nil, attrrange=nil, attrlabels=nil, catebizid=nil, isdisabled=nil, requestid=nil)
|
2505
2562
|
@DocBizId = docbizid
|
2506
2563
|
@FileName = filename
|
2507
2564
|
@FileType = filetype
|
@@ -2526,6 +2583,7 @@ module TencentCloud
|
|
2526
2583
|
@AttrRange = attrrange
|
2527
2584
|
@AttrLabels = attrlabels
|
2528
2585
|
@CateBizId = catebizid
|
2586
|
+
@IsDisabled = isdisabled
|
2529
2587
|
@RequestId = requestid
|
2530
2588
|
end
|
2531
2589
|
|
@@ -2561,6 +2619,7 @@ module TencentCloud
|
|
2561
2619
|
end
|
2562
2620
|
end
|
2563
2621
|
@CateBizId = params['CateBizId']
|
2622
|
+
@IsDisabled = params['IsDisabled']
|
2564
2623
|
@RequestId = params['RequestId']
|
2565
2624
|
end
|
2566
2625
|
end
|
@@ -2731,12 +2790,14 @@ module TencentCloud
|
|
2731
2790
|
# @type VideoAuditStatus: Integer
|
2732
2791
|
# @param QuestionDesc: 问题描述
|
2733
2792
|
# @type QuestionDesc: String
|
2793
|
+
# @param IsDisabled: 问答是否停用,false:未停用,true已停用
|
2794
|
+
# @type IsDisabled: Boolean
|
2734
2795
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2735
2796
|
# @type RequestId: String
|
2736
2797
|
|
2737
|
-
attr_accessor :QaBizId, :Question, :Answer, :CustomParam, :Source, :SourceDesc, :UpdateTime, :Status, :StatusDesc, :CateBizId, :IsAllowAccept, :IsAllowDelete, :IsAllowEdit, :DocBizId, :FileName, :FileType, :SegmentBizId, :PageContent, :Highlights, :OrgData, :AttrRange, :AttrLabels, :ExpireStart, :ExpireEnd, :SimilarQuestions, :QaAuditStatus, :PicAuditStatus, :VideoAuditStatus, :QuestionDesc, :RequestId
|
2798
|
+
attr_accessor :QaBizId, :Question, :Answer, :CustomParam, :Source, :SourceDesc, :UpdateTime, :Status, :StatusDesc, :CateBizId, :IsAllowAccept, :IsAllowDelete, :IsAllowEdit, :DocBizId, :FileName, :FileType, :SegmentBizId, :PageContent, :Highlights, :OrgData, :AttrRange, :AttrLabels, :ExpireStart, :ExpireEnd, :SimilarQuestions, :QaAuditStatus, :PicAuditStatus, :VideoAuditStatus, :QuestionDesc, :IsDisabled, :RequestId
|
2738
2799
|
|
2739
|
-
def initialize(qabizid=nil, question=nil, answer=nil, customparam=nil, source=nil, sourcedesc=nil, updatetime=nil, status=nil, statusdesc=nil, catebizid=nil, isallowaccept=nil, isallowdelete=nil, isallowedit=nil, docbizid=nil, filename=nil, filetype=nil, segmentbizid=nil, pagecontent=nil, highlights=nil, orgdata=nil, attrrange=nil, attrlabels=nil, expirestart=nil, expireend=nil, similarquestions=nil, qaauditstatus=nil, picauditstatus=nil, videoauditstatus=nil, questiondesc=nil, requestid=nil)
|
2800
|
+
def initialize(qabizid=nil, question=nil, answer=nil, customparam=nil, source=nil, sourcedesc=nil, updatetime=nil, status=nil, statusdesc=nil, catebizid=nil, isallowaccept=nil, isallowdelete=nil, isallowedit=nil, docbizid=nil, filename=nil, filetype=nil, segmentbizid=nil, pagecontent=nil, highlights=nil, orgdata=nil, attrrange=nil, attrlabels=nil, expirestart=nil, expireend=nil, similarquestions=nil, qaauditstatus=nil, picauditstatus=nil, videoauditstatus=nil, questiondesc=nil, isdisabled=nil, requestid=nil)
|
2740
2801
|
@QaBizId = qabizid
|
2741
2802
|
@Question = question
|
2742
2803
|
@Answer = answer
|
@@ -2766,6 +2827,7 @@ module TencentCloud
|
|
2766
2827
|
@PicAuditStatus = picauditstatus
|
2767
2828
|
@VideoAuditStatus = videoauditstatus
|
2768
2829
|
@QuestionDesc = questiondesc
|
2830
|
+
@IsDisabled = isdisabled
|
2769
2831
|
@RequestId = requestid
|
2770
2832
|
end
|
2771
2833
|
|
@@ -2820,6 +2882,7 @@ module TencentCloud
|
|
2820
2882
|
@PicAuditStatus = params['PicAuditStatus']
|
2821
2883
|
@VideoAuditStatus = params['VideoAuditStatus']
|
2822
2884
|
@QuestionDesc = params['QuestionDesc']
|
2885
|
+
@IsDisabled = params['IsDisabled']
|
2823
2886
|
@RequestId = params['RequestId']
|
2824
2887
|
end
|
2825
2888
|
end
|
@@ -3236,16 +3299,19 @@ module TencentCloud
|
|
3236
3299
|
# @type EndTime: String
|
3237
3300
|
# @param AppBizIds: 应用id列表
|
3238
3301
|
# @type AppBizIds: Array
|
3302
|
+
# @param AppType: 应用类型(knowledge_qa应用管理, shared_knowlege 共享知识库)
|
3303
|
+
# @type AppType: String
|
3239
3304
|
|
3240
|
-
attr_accessor :UinAccount, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds
|
3305
|
+
attr_accessor :UinAccount, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :AppType
|
3241
3306
|
|
3242
|
-
def initialize(uinaccount=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil)
|
3307
|
+
def initialize(uinaccount=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, apptype=nil)
|
3243
3308
|
@UinAccount = uinaccount
|
3244
3309
|
@SubBizType = subbiztype
|
3245
3310
|
@ModelName = modelname
|
3246
3311
|
@StartTime = starttime
|
3247
3312
|
@EndTime = endtime
|
3248
3313
|
@AppBizIds = appbizids
|
3314
|
+
@AppType = apptype
|
3249
3315
|
end
|
3250
3316
|
|
3251
3317
|
def deserialize(params)
|
@@ -3255,6 +3321,7 @@ module TencentCloud
|
|
3255
3321
|
@StartTime = params['StartTime']
|
3256
3322
|
@EndTime = params['EndTime']
|
3257
3323
|
@AppBizIds = params['AppBizIds']
|
3324
|
+
@AppType = params['AppType']
|
3258
3325
|
end
|
3259
3326
|
end
|
3260
3327
|
|
@@ -3327,10 +3394,12 @@ module TencentCloud
|
|
3327
3394
|
# @type AppBizIds: Array
|
3328
3395
|
# @param SubScenes: 筛选子场景(文档解析场景使用)
|
3329
3396
|
# @type SubScenes: Array
|
3397
|
+
# @param AppType: 应用类型(knowledge_qa应用管理, shared_knowlege 共享知识库)
|
3398
|
+
# @type AppType: String
|
3330
3399
|
|
3331
|
-
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes
|
3400
|
+
attr_accessor :UinAccount, :LoginUin, :LoginSubAccountUin, :SubBizType, :ModelName, :StartTime, :EndTime, :AppBizIds, :SubScenes, :AppType
|
3332
3401
|
|
3333
|
-
def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil)
|
3402
|
+
def initialize(uinaccount=nil, loginuin=nil, loginsubaccountuin=nil, subbiztype=nil, modelname=nil, starttime=nil, endtime=nil, appbizids=nil, subscenes=nil, apptype=nil)
|
3334
3403
|
@UinAccount = uinaccount
|
3335
3404
|
@LoginUin = loginuin
|
3336
3405
|
@LoginSubAccountUin = loginsubaccountuin
|
@@ -3340,6 +3409,7 @@ module TencentCloud
|
|
3340
3409
|
@EndTime = endtime
|
3341
3410
|
@AppBizIds = appbizids
|
3342
3411
|
@SubScenes = subscenes
|
3412
|
+
@AppType = apptype
|
3343
3413
|
end
|
3344
3414
|
|
3345
3415
|
def deserialize(params)
|
@@ -3352,6 +3422,7 @@ module TencentCloud
|
|
3352
3422
|
@EndTime = params['EndTime']
|
3353
3423
|
@AppBizIds = params['AppBizIds']
|
3354
3424
|
@SubScenes = params['SubScenes']
|
3425
|
+
@AppType = params['AppType']
|
3355
3426
|
end
|
3356
3427
|
end
|
3357
3428
|
|
@@ -3471,19 +3542,23 @@ module TencentCloud
|
|
3471
3542
|
# @type Name: String
|
3472
3543
|
# @param Avatar: 图像
|
3473
3544
|
# @type Avatar: String
|
3545
|
+
# @param PreviewUrl: 预览图
|
3546
|
+
# @type PreviewUrl: String
|
3474
3547
|
|
3475
|
-
attr_accessor :AssetKey, :Name, :Avatar
|
3548
|
+
attr_accessor :AssetKey, :Name, :Avatar, :PreviewUrl
|
3476
3549
|
|
3477
|
-
def initialize(assetkey=nil, name=nil, avatar=nil)
|
3550
|
+
def initialize(assetkey=nil, name=nil, avatar=nil, previewurl=nil)
|
3478
3551
|
@AssetKey = assetkey
|
3479
3552
|
@Name = name
|
3480
3553
|
@Avatar = avatar
|
3554
|
+
@PreviewUrl = previewurl
|
3481
3555
|
end
|
3482
3556
|
|
3483
3557
|
def deserialize(params)
|
3484
3558
|
@AssetKey = params['AssetKey']
|
3485
3559
|
@Name = params['Name']
|
3486
3560
|
@Avatar = params['Avatar']
|
3561
|
+
@PreviewUrl = params['PreviewUrl']
|
3487
3562
|
end
|
3488
3563
|
end
|
3489
3564
|
|
@@ -5148,10 +5223,12 @@ module TencentCloud
|
|
5148
5223
|
# @param AiCall: 配置语音通话参数
|
5149
5224
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5150
5225
|
# @type AiCall: :class:`Tencentcloud::Lke.v20231130.models.AICallConfig`
|
5226
|
+
# @param ShareKnowledgeBases: 共享知识库关联配置
|
5227
|
+
# @type ShareKnowledgeBases: Array
|
5151
5228
|
|
5152
|
-
attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel, :IntentAchievements, :ImageTextRetrieval, :AiCall
|
5229
|
+
attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel, :IntentAchievements, :ImageTextRetrieval, :AiCall, :ShareKnowledgeBases
|
5153
5230
|
|
5154
|
-
def initialize(greeting=nil, roledescription=nil, model=nil, search=nil, output=nil, workflow=nil, searchrange=nil, pattern=nil, searchstrategy=nil, singleworkflow=nil, plugins=nil, thoughtmodel=nil, intentachievements=nil, imagetextretrieval=nil, aicall=nil)
|
5231
|
+
def initialize(greeting=nil, roledescription=nil, model=nil, search=nil, output=nil, workflow=nil, searchrange=nil, pattern=nil, searchstrategy=nil, singleworkflow=nil, plugins=nil, thoughtmodel=nil, intentachievements=nil, imagetextretrieval=nil, aicall=nil, shareknowledgebases=nil)
|
5155
5232
|
@Greeting = greeting
|
5156
5233
|
@RoleDescription = roledescription
|
5157
5234
|
@Model = model
|
@@ -5167,6 +5244,7 @@ module TencentCloud
|
|
5167
5244
|
@IntentAchievements = intentachievements
|
5168
5245
|
@ImageTextRetrieval = imagetextretrieval
|
5169
5246
|
@AiCall = aicall
|
5247
|
+
@ShareKnowledgeBases = shareknowledgebases
|
5170
5248
|
end
|
5171
5249
|
|
5172
5250
|
def deserialize(params)
|
@@ -5230,6 +5308,14 @@ module TencentCloud
|
|
5230
5308
|
@AiCall = AICallConfig.new
|
5231
5309
|
@AiCall.deserialize(params['AiCall'])
|
5232
5310
|
end
|
5311
|
+
unless params['ShareKnowledgeBases'].nil?
|
5312
|
+
@ShareKnowledgeBases = []
|
5313
|
+
params['ShareKnowledgeBases'].each do |i|
|
5314
|
+
shareknowledgebase_tmp = ShareKnowledgeBase.new
|
5315
|
+
shareknowledgebase_tmp.deserialize(i)
|
5316
|
+
@ShareKnowledgeBases << shareknowledgebase_tmp
|
5317
|
+
end
|
5318
|
+
end
|
5233
5319
|
end
|
5234
5320
|
end
|
5235
5321
|
|
@@ -5334,7 +5420,7 @@ module TencentCloud
|
|
5334
5420
|
|
5335
5421
|
# 检索配置
|
5336
5422
|
class KnowledgeQaSearch < TencentCloud::Common::AbstractModel
|
5337
|
-
# @param Type: 知识来源 doc:文档,qa:问答 taskflow:业务流程,search
|
5423
|
+
# @param Type: 知识来源 doc:文档,qa:问答 taskflow:业务流程,search:搜索增强,database:数据库
|
5338
5424
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5339
5425
|
# @type Type: String
|
5340
5426
|
# @param ReplyFlexibility: 问答-回复灵活度 1:已采纳答案直接回复 2:已采纳润色后回复
|
@@ -5890,10 +5976,12 @@ module TencentCloud
|
|
5890
5976
|
# @type CustomerKnowledgeId: String
|
5891
5977
|
# @param AttributeFlags: 文档的属性标记,0: 不做用户外部权限校验
|
5892
5978
|
# @type AttributeFlags: Array
|
5979
|
+
# @param IsDisabled: false:未停用,ture:已停用
|
5980
|
+
# @type IsDisabled: Boolean
|
5893
5981
|
|
5894
|
-
attr_accessor :DocBizId, :FileName, :NewName, :FileType, :CosUrl, :UpdateTime, :Status, :StatusDesc, :Reason, :IsRefer, :QaNum, :IsDeleted, :Source, :SourceDesc, :IsAllowRestart, :IsDeletedQa, :IsCreatingQa, :IsAllowDelete, :IsAllowRefer, :IsCreatedQa, :DocCharSize, :AttrRange, :AttrLabels, :IsAllowEdit, :ReferUrlType, :WebUrl, :ExpireStart, :ExpireEnd, :IsAllowRetry, :Processing, :CreateTime, :CateBizId, :CustomerKnowledgeId, :AttributeFlags
|
5982
|
+
attr_accessor :DocBizId, :FileName, :NewName, :FileType, :CosUrl, :UpdateTime, :Status, :StatusDesc, :Reason, :IsRefer, :QaNum, :IsDeleted, :Source, :SourceDesc, :IsAllowRestart, :IsDeletedQa, :IsCreatingQa, :IsAllowDelete, :IsAllowRefer, :IsCreatedQa, :DocCharSize, :AttrRange, :AttrLabels, :IsAllowEdit, :ReferUrlType, :WebUrl, :ExpireStart, :ExpireEnd, :IsAllowRetry, :Processing, :CreateTime, :CateBizId, :CustomerKnowledgeId, :AttributeFlags, :IsDisabled
|
5895
5983
|
|
5896
|
-
def initialize(docbizid=nil, filename=nil, newname=nil, filetype=nil, cosurl=nil, updatetime=nil, status=nil, statusdesc=nil, reason=nil, isrefer=nil, qanum=nil, isdeleted=nil, source=nil, sourcedesc=nil, isallowrestart=nil, isdeletedqa=nil, iscreatingqa=nil, isallowdelete=nil, isallowrefer=nil, iscreatedqa=nil, doccharsize=nil, attrrange=nil, attrlabels=nil, isallowedit=nil, referurltype=nil, weburl=nil, expirestart=nil, expireend=nil, isallowretry=nil, processing=nil, createtime=nil, catebizid=nil, customerknowledgeid=nil, attributeflags=nil)
|
5984
|
+
def initialize(docbizid=nil, filename=nil, newname=nil, filetype=nil, cosurl=nil, updatetime=nil, status=nil, statusdesc=nil, reason=nil, isrefer=nil, qanum=nil, isdeleted=nil, source=nil, sourcedesc=nil, isallowrestart=nil, isdeletedqa=nil, iscreatingqa=nil, isallowdelete=nil, isallowrefer=nil, iscreatedqa=nil, doccharsize=nil, attrrange=nil, attrlabels=nil, isallowedit=nil, referurltype=nil, weburl=nil, expirestart=nil, expireend=nil, isallowretry=nil, processing=nil, createtime=nil, catebizid=nil, customerknowledgeid=nil, attributeflags=nil, isdisabled=nil)
|
5897
5985
|
@DocBizId = docbizid
|
5898
5986
|
@FileName = filename
|
5899
5987
|
@NewName = newname
|
@@ -5928,6 +6016,7 @@ module TencentCloud
|
|
5928
6016
|
@CateBizId = catebizid
|
5929
6017
|
@CustomerKnowledgeId = customerknowledgeid
|
5930
6018
|
@AttributeFlags = attributeflags
|
6019
|
+
@IsDisabled = isdisabled
|
5931
6020
|
end
|
5932
6021
|
|
5933
6022
|
def deserialize(params)
|
@@ -5972,6 +6061,7 @@ module TencentCloud
|
|
5972
6061
|
@CateBizId = params['CateBizId']
|
5973
6062
|
@CustomerKnowledgeId = params['CustomerKnowledgeId']
|
5974
6063
|
@AttributeFlags = params['AttributeFlags']
|
6064
|
+
@IsDisabled = params['IsDisabled']
|
5975
6065
|
end
|
5976
6066
|
end
|
5977
6067
|
|
@@ -5984,6 +6074,8 @@ module TencentCloud
|
|
5984
6074
|
# @param PageSize: 每页数量
|
5985
6075
|
# @type PageSize: Integer
|
5986
6076
|
# @param Query: 查询内容
|
6077
|
+
|
6078
|
+
# 输入特定标识 lke:system:untagged 将查询所有未关联标签的文档
|
5987
6079
|
# @type Query: String
|
5988
6080
|
# @param Status: 文档状态: 1-未生成 2-生成中 3-生成成功 4-生成失败 5-删除中 6-删除成功 7-审核中 8-审核失败 9-审核成功 10-待发布 11-发布中 12-已发布 13-学习中 14-学习失败 15-更新中 16-更新失败 17-解析中 18-解析失败 19-导入失败 20-已过期 21-超量失效 22-超量失效恢复
|
5989
6081
|
# @type Status: Array
|
@@ -5995,10 +6087,12 @@ module TencentCloud
|
|
5995
6087
|
# @type FileTypes: Array
|
5996
6088
|
# @param FilterFlag: 文档列表筛选标识位
|
5997
6089
|
# @type FilterFlag: Array
|
6090
|
+
# @param ShowCurrCate: 是否只展示当前分类的数据 0不是,1是
|
6091
|
+
# @type ShowCurrCate: Integer
|
5998
6092
|
|
5999
|
-
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :Status, :QueryType, :CateBizId, :FileTypes, :FilterFlag
|
6093
|
+
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :Status, :QueryType, :CateBizId, :FileTypes, :FilterFlag, :ShowCurrCate
|
6000
6094
|
|
6001
|
-
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, query=nil, status=nil, querytype=nil, catebizid=nil, filetypes=nil, filterflag=nil)
|
6095
|
+
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, query=nil, status=nil, querytype=nil, catebizid=nil, filetypes=nil, filterflag=nil, showcurrcate=nil)
|
6002
6096
|
@BotBizId = botbizid
|
6003
6097
|
@PageNumber = pagenumber
|
6004
6098
|
@PageSize = pagesize
|
@@ -6008,6 +6102,7 @@ module TencentCloud
|
|
6008
6102
|
@CateBizId = catebizid
|
6009
6103
|
@FileTypes = filetypes
|
6010
6104
|
@FilterFlag = filterflag
|
6105
|
+
@ShowCurrCate = showcurrcate
|
6011
6106
|
end
|
6012
6107
|
|
6013
6108
|
def deserialize(params)
|
@@ -6027,6 +6122,7 @@ module TencentCloud
|
|
6027
6122
|
@FilterFlag << docfilterflag_tmp
|
6028
6123
|
end
|
6029
6124
|
end
|
6125
|
+
@ShowCurrCate = params['ShowCurrCate']
|
6030
6126
|
end
|
6031
6127
|
end
|
6032
6128
|
|
@@ -6172,6 +6268,8 @@ module TencentCloud
|
|
6172
6268
|
# @param PageSize: 每页大小
|
6173
6269
|
# @type PageSize: Integer
|
6174
6270
|
# @param Query: 查询问题
|
6271
|
+
|
6272
|
+
# 输入特定标识 lke:system:untagged 将查询所有未关联标签的问答
|
6175
6273
|
# @type Query: String
|
6176
6274
|
# @param AcceptStatus: 校验状态(1未校验2采纳3不采纳)
|
6177
6275
|
# @type AcceptStatus: Array
|
@@ -6189,10 +6287,12 @@ module TencentCloud
|
|
6189
6287
|
# @type QaBizIds: Array
|
6190
6288
|
# @param QueryType: 查询类型 filename 名称、 attribute 标签
|
6191
6289
|
# @type QueryType: String
|
6290
|
+
# @param ShowCurrCate: 是否只展示当前分类的数据 0不是,1是
|
6291
|
+
# @type ShowCurrCate: Integer
|
6192
6292
|
|
6193
|
-
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :AcceptStatus, :ReleaseStatus, :DocBizId, :Source, :QueryAnswer, :CateBizId, :QaBizIds, :QueryType
|
6293
|
+
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :AcceptStatus, :ReleaseStatus, :DocBizId, :Source, :QueryAnswer, :CateBizId, :QaBizIds, :QueryType, :ShowCurrCate
|
6194
6294
|
|
6195
|
-
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, query=nil, acceptstatus=nil, releasestatus=nil, docbizid=nil, source=nil, queryanswer=nil, catebizid=nil, qabizids=nil, querytype=nil)
|
6295
|
+
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, query=nil, acceptstatus=nil, releasestatus=nil, docbizid=nil, source=nil, queryanswer=nil, catebizid=nil, qabizids=nil, querytype=nil, showcurrcate=nil)
|
6196
6296
|
@BotBizId = botbizid
|
6197
6297
|
@PageNumber = pagenumber
|
6198
6298
|
@PageSize = pagesize
|
@@ -6205,6 +6305,7 @@ module TencentCloud
|
|
6205
6305
|
@CateBizId = catebizid
|
6206
6306
|
@QaBizIds = qabizids
|
6207
6307
|
@QueryType = querytype
|
6308
|
+
@ShowCurrCate = showcurrcate
|
6208
6309
|
end
|
6209
6310
|
|
6210
6311
|
def deserialize(params)
|
@@ -6220,6 +6321,7 @@ module TencentCloud
|
|
6220
6321
|
@CateBizId = params['CateBizId']
|
6221
6322
|
@QaBizIds = params['QaBizIds']
|
6222
6323
|
@QueryType = params['QueryType']
|
6324
|
+
@ShowCurrCate = params['ShowCurrCate']
|
6223
6325
|
end
|
6224
6326
|
end
|
6225
6327
|
|
@@ -6316,10 +6418,12 @@ module TencentCloud
|
|
6316
6418
|
# @type SimilarQuestionNum: Integer
|
6317
6419
|
# @param SimilarQuestionTips: 返回问答关联的相似问,联动搜索,仅展示一条
|
6318
6420
|
# @type SimilarQuestionTips: String
|
6421
|
+
# @param IsDisabled: 问答是否停用,false:未停用,ture:已停用
|
6422
|
+
# @type IsDisabled: Boolean
|
6319
6423
|
|
6320
|
-
attr_accessor :QaBizId, :Question, :Answer, :Source, :SourceDesc, :UpdateTime, :Status, :StatusDesc, :DocBizId, :CreateTime, :IsAllowEdit, :IsAllowDelete, :IsAllowAccept, :FileName, :FileType, :QaCharSize, :ExpireStart, :ExpireEnd, :AttrRange, :AttrLabels, :SimilarQuestionNum, :SimilarQuestionTips
|
6424
|
+
attr_accessor :QaBizId, :Question, :Answer, :Source, :SourceDesc, :UpdateTime, :Status, :StatusDesc, :DocBizId, :CreateTime, :IsAllowEdit, :IsAllowDelete, :IsAllowAccept, :FileName, :FileType, :QaCharSize, :ExpireStart, :ExpireEnd, :AttrRange, :AttrLabels, :SimilarQuestionNum, :SimilarQuestionTips, :IsDisabled
|
6321
6425
|
|
6322
|
-
def initialize(qabizid=nil, question=nil, answer=nil, source=nil, sourcedesc=nil, updatetime=nil, status=nil, statusdesc=nil, docbizid=nil, createtime=nil, isallowedit=nil, isallowdelete=nil, isallowaccept=nil, filename=nil, filetype=nil, qacharsize=nil, expirestart=nil, expireend=nil, attrrange=nil, attrlabels=nil, similarquestionnum=nil, similarquestiontips=nil)
|
6426
|
+
def initialize(qabizid=nil, question=nil, answer=nil, source=nil, sourcedesc=nil, updatetime=nil, status=nil, statusdesc=nil, docbizid=nil, createtime=nil, isallowedit=nil, isallowdelete=nil, isallowaccept=nil, filename=nil, filetype=nil, qacharsize=nil, expirestart=nil, expireend=nil, attrrange=nil, attrlabels=nil, similarquestionnum=nil, similarquestiontips=nil, isdisabled=nil)
|
6323
6427
|
@QaBizId = qabizid
|
6324
6428
|
@Question = question
|
6325
6429
|
@Answer = answer
|
@@ -6342,6 +6446,7 @@ module TencentCloud
|
|
6342
6446
|
@AttrLabels = attrlabels
|
6343
6447
|
@SimilarQuestionNum = similarquestionnum
|
6344
6448
|
@SimilarQuestionTips = similarquestiontips
|
6449
|
+
@IsDisabled = isdisabled
|
6345
6450
|
end
|
6346
6451
|
|
6347
6452
|
def deserialize(params)
|
@@ -6374,6 +6479,7 @@ module TencentCloud
|
|
6374
6479
|
end
|
6375
6480
|
@SimilarQuestionNum = params['SimilarQuestionNum']
|
6376
6481
|
@SimilarQuestionTips = params['SimilarQuestionTips']
|
6482
|
+
@IsDisabled = params['IsDisabled']
|
6377
6483
|
end
|
6378
6484
|
end
|
6379
6485
|
|
@@ -6990,10 +7096,12 @@ module TencentCloud
|
|
6990
7096
|
# @type CallType: String
|
6991
7097
|
# @param SubScenes: 筛选子场景
|
6992
7098
|
# @type SubScenes: Array
|
7099
|
+
# @param AppType: 应用类型(knowledge_qa应用管理, shared_knowlege 共享知识库)
|
7100
|
+
# @type AppType: String
|
6993
7101
|
|
6994
|
-
attr_accessor :ModelName, :StartTime, :EndTime, :PageNumber, :PageSize, :UinAccount, :AppBizIds, :CallType, :SubScenes
|
7102
|
+
attr_accessor :ModelName, :StartTime, :EndTime, :PageNumber, :PageSize, :UinAccount, :AppBizIds, :CallType, :SubScenes, :AppType
|
6995
7103
|
|
6996
|
-
def initialize(modelname=nil, starttime=nil, endtime=nil, pagenumber=nil, pagesize=nil, uinaccount=nil, appbizids=nil, calltype=nil, subscenes=nil)
|
7104
|
+
def initialize(modelname=nil, starttime=nil, endtime=nil, pagenumber=nil, pagesize=nil, uinaccount=nil, appbizids=nil, calltype=nil, subscenes=nil, apptype=nil)
|
6997
7105
|
@ModelName = modelname
|
6998
7106
|
@StartTime = starttime
|
6999
7107
|
@EndTime = endtime
|
@@ -7003,6 +7111,7 @@ module TencentCloud
|
|
7003
7111
|
@AppBizIds = appbizids
|
7004
7112
|
@CallType = calltype
|
7005
7113
|
@SubScenes = subscenes
|
7114
|
+
@AppType = apptype
|
7006
7115
|
end
|
7007
7116
|
|
7008
7117
|
def deserialize(params)
|
@@ -7015,6 +7124,7 @@ module TencentCloud
|
|
7015
7124
|
@AppBizIds = params['AppBizIds']
|
7016
7125
|
@CallType = params['CallType']
|
7017
7126
|
@SubScenes = params['SubScenes']
|
7127
|
+
@AppType = params['AppType']
|
7018
7128
|
end
|
7019
7129
|
end
|
7020
7130
|
|
@@ -7122,10 +7232,12 @@ module TencentCloud
|
|
7122
7232
|
# @type IsExclusive: Boolean
|
7123
7233
|
# @param SupportAiCallStatus: 模型支持智能通话效果
|
7124
7234
|
# @type SupportAiCallStatus: Integer
|
7235
|
+
# @param Concurrency: 专属并发数
|
7236
|
+
# @type Concurrency: Integer
|
7125
7237
|
|
7126
|
-
attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory, :IsDefault, :RoleLenLimit, :IsExclusive, :SupportAiCallStatus
|
7238
|
+
attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory, :IsDefault, :RoleLenLimit, :IsExclusive, :SupportAiCallStatus, :Concurrency
|
7127
7239
|
|
7128
|
-
def initialize(modelname=nil, modeldesc=nil, aliasname=nil, resourcestatus=nil, promptwordslimit=nil, topp=nil, temperature=nil, maxtokens=nil, source=nil, icon=nil, isfree=nil, inputlenlimit=nil, supportworkflowstatus=nil, modelcategory=nil, isdefault=nil, rolelenlimit=nil, isexclusive=nil, supportaicallstatus=nil)
|
7240
|
+
def initialize(modelname=nil, modeldesc=nil, aliasname=nil, resourcestatus=nil, promptwordslimit=nil, topp=nil, temperature=nil, maxtokens=nil, source=nil, icon=nil, isfree=nil, inputlenlimit=nil, supportworkflowstatus=nil, modelcategory=nil, isdefault=nil, rolelenlimit=nil, isexclusive=nil, supportaicallstatus=nil, concurrency=nil)
|
7129
7241
|
@ModelName = modelname
|
7130
7242
|
@ModelDesc = modeldesc
|
7131
7243
|
@AliasName = aliasname
|
@@ -7144,6 +7256,7 @@ module TencentCloud
|
|
7144
7256
|
@RoleLenLimit = rolelenlimit
|
7145
7257
|
@IsExclusive = isexclusive
|
7146
7258
|
@SupportAiCallStatus = supportaicallstatus
|
7259
|
+
@Concurrency = concurrency
|
7147
7260
|
end
|
7148
7261
|
|
7149
7262
|
def deserialize(params)
|
@@ -7174,6 +7287,7 @@ module TencentCloud
|
|
7174
7287
|
@RoleLenLimit = params['RoleLenLimit']
|
7175
7288
|
@IsExclusive = params['IsExclusive']
|
7176
7289
|
@SupportAiCallStatus = params['SupportAiCallStatus']
|
7290
|
+
@Concurrency = params['Concurrency']
|
7177
7291
|
end
|
7178
7292
|
end
|
7179
7293
|
|
@@ -8688,10 +8802,12 @@ module TencentCloud
|
|
8688
8802
|
# @param DocBizId: 文档ID
|
8689
8803
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8690
8804
|
# @type DocBizId: String
|
8805
|
+
# @param KnowledgeBizId: 知识库ID
|
8806
|
+
# @type KnowledgeBizId: String
|
8691
8807
|
|
8692
|
-
attr_accessor :ReferBizId, :DocType, :DocName, :PageContent, :Question, :Answer, :Confidence, :Mark, :Highlights, :OrgData, :PageInfos, :SheetInfos, :DocBizId
|
8808
|
+
attr_accessor :ReferBizId, :DocType, :DocName, :PageContent, :Question, :Answer, :Confidence, :Mark, :Highlights, :OrgData, :PageInfos, :SheetInfos, :DocBizId, :KnowledgeBizId
|
8693
8809
|
|
8694
|
-
def initialize(referbizid=nil, doctype=nil, docname=nil, pagecontent=nil, question=nil, answer=nil, confidence=nil, mark=nil, highlights=nil, orgdata=nil, pageinfos=nil, sheetinfos=nil, docbizid=nil)
|
8810
|
+
def initialize(referbizid=nil, doctype=nil, docname=nil, pagecontent=nil, question=nil, answer=nil, confidence=nil, mark=nil, highlights=nil, orgdata=nil, pageinfos=nil, sheetinfos=nil, docbizid=nil, knowledgebizid=nil)
|
8695
8811
|
@ReferBizId = referbizid
|
8696
8812
|
@DocType = doctype
|
8697
8813
|
@DocName = docname
|
@@ -8705,6 +8821,7 @@ module TencentCloud
|
|
8705
8821
|
@PageInfos = pageinfos
|
8706
8822
|
@SheetInfos = sheetinfos
|
8707
8823
|
@DocBizId = docbizid
|
8824
|
+
@KnowledgeBizId = knowledgebizid
|
8708
8825
|
end
|
8709
8826
|
|
8710
8827
|
def deserialize(params)
|
@@ -8728,6 +8845,7 @@ module TencentCloud
|
|
8728
8845
|
@PageInfos = params['PageInfos']
|
8729
8846
|
@SheetInfos = params['SheetInfos']
|
8730
8847
|
@DocBizId = params['DocBizId']
|
8848
|
+
@KnowledgeBizId = params['KnowledgeBizId']
|
8731
8849
|
end
|
8732
8850
|
end
|
8733
8851
|
|
@@ -9422,6 +9540,29 @@ module TencentCloud
|
|
9422
9540
|
end
|
9423
9541
|
end
|
9424
9542
|
|
9543
|
+
# 共享知识库配置
|
9544
|
+
class ShareKnowledgeBase < TencentCloud::Common::AbstractModel
|
9545
|
+
# @param KnowledgeBizId: 共享知识库ID
|
9546
|
+
# @type KnowledgeBizId: String
|
9547
|
+
# @param SearchRange: 检索范围
|
9548
|
+
# @type SearchRange: :class:`Tencentcloud::Lke.v20231130.models.SearchRange`
|
9549
|
+
|
9550
|
+
attr_accessor :KnowledgeBizId, :SearchRange
|
9551
|
+
|
9552
|
+
def initialize(knowledgebizid=nil, searchrange=nil)
|
9553
|
+
@KnowledgeBizId = knowledgebizid
|
9554
|
+
@SearchRange = searchrange
|
9555
|
+
end
|
9556
|
+
|
9557
|
+
def deserialize(params)
|
9558
|
+
@KnowledgeBizId = params['KnowledgeBizId']
|
9559
|
+
unless params['SearchRange'].nil?
|
9560
|
+
@SearchRange = SearchRange.new
|
9561
|
+
@SearchRange.deserialize(params['SearchRange'])
|
9562
|
+
end
|
9563
|
+
end
|
9564
|
+
end
|
9565
|
+
|
9425
9566
|
# 相似问信息
|
9426
9567
|
class SimilarQuestion < TencentCloud::Common::AbstractModel
|
9427
9568
|
# @param SimBizId: 相似问ID
|
@@ -9681,14 +9822,20 @@ module TencentCloud
|
|
9681
9822
|
# @type VarDesc: String
|
9682
9823
|
# @param VarType: 变量类型 (STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO)
|
9683
9824
|
# @type VarType: String
|
9825
|
+
# @param VarDefaultValue: 自定义变量默认值
|
9826
|
+
# @type VarDefaultValue: String
|
9827
|
+
# @param VarDefaultFileName: 自定义变量文件默认名称
|
9828
|
+
# @type VarDefaultFileName: String
|
9684
9829
|
|
9685
|
-
attr_accessor :VarId, :VarName, :VarDesc, :VarType
|
9830
|
+
attr_accessor :VarId, :VarName, :VarDesc, :VarType, :VarDefaultValue, :VarDefaultFileName
|
9686
9831
|
|
9687
|
-
def initialize(varid=nil, varname=nil, vardesc=nil, vartype=nil)
|
9832
|
+
def initialize(varid=nil, varname=nil, vardesc=nil, vartype=nil, vardefaultvalue=nil, vardefaultfilename=nil)
|
9688
9833
|
@VarId = varid
|
9689
9834
|
@VarName = varname
|
9690
9835
|
@VarDesc = vardesc
|
9691
9836
|
@VarType = vartype
|
9837
|
+
@VarDefaultValue = vardefaultvalue
|
9838
|
+
@VarDefaultFileName = vardefaultfilename
|
9692
9839
|
end
|
9693
9840
|
|
9694
9841
|
def deserialize(params)
|
@@ -9696,6 +9843,8 @@ module TencentCloud
|
|
9696
9843
|
@VarName = params['VarName']
|
9697
9844
|
@VarDesc = params['VarDesc']
|
9698
9845
|
@VarType = params['VarType']
|
9846
|
+
@VarDefaultValue = params['VarDefaultValue']
|
9847
|
+
@VarDefaultFileName = params['VarDefaultFileName']
|
9699
9848
|
end
|
9700
9849
|
end
|
9701
9850
|
|
@@ -10263,6 +10412,38 @@ module TencentCloud
|
|
10263
10412
|
end
|
10264
10413
|
end
|
10265
10414
|
|
10415
|
+
# WorkflowRef详情
|
10416
|
+
class WorkflowRef < TencentCloud::Common::AbstractModel
|
10417
|
+
# @param WorkflowId: 任务流ID
|
10418
|
+
# @type WorkflowId: String
|
10419
|
+
# @param WorkflowName: 任务流名称
|
10420
|
+
# @type WorkflowName: String
|
10421
|
+
# @param WorkflowDesc: 任务流描述
|
10422
|
+
# @type WorkflowDesc: String
|
10423
|
+
# @param AppBizId: 应用ID
|
10424
|
+
# @type AppBizId: String
|
10425
|
+
# @param UpdateTime: 更新时间
|
10426
|
+
# @type UpdateTime: Integer
|
10427
|
+
|
10428
|
+
attr_accessor :WorkflowId, :WorkflowName, :WorkflowDesc, :AppBizId, :UpdateTime
|
10429
|
+
|
10430
|
+
def initialize(workflowid=nil, workflowname=nil, workflowdesc=nil, appbizid=nil, updatetime=nil)
|
10431
|
+
@WorkflowId = workflowid
|
10432
|
+
@WorkflowName = workflowname
|
10433
|
+
@WorkflowDesc = workflowdesc
|
10434
|
+
@AppBizId = appbizid
|
10435
|
+
@UpdateTime = updatetime
|
10436
|
+
end
|
10437
|
+
|
10438
|
+
def deserialize(params)
|
10439
|
+
@WorkflowId = params['WorkflowId']
|
10440
|
+
@WorkflowName = params['WorkflowName']
|
10441
|
+
@WorkflowDesc = params['WorkflowDesc']
|
10442
|
+
@AppBizId = params['AppBizId']
|
10443
|
+
@UpdateTime = params['UpdateTime']
|
10444
|
+
end
|
10445
|
+
end
|
10446
|
+
|
10266
10447
|
# 工作流运行节点信息
|
10267
10448
|
class WorkflowRunNodeInfo < TencentCloud::Common::AbstractModel
|
10268
10449
|
# @param NodeId: 节点ID
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1077
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|