tencentcloud-sdk-lke 3.0.1131 → 3.0.1142
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 +71 -28
- 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: dffe425b35c9ef47a2d5db67bcfc68cedcf978f3
|
4
|
+
data.tar.gz: 5af8903fd1620ca22baa757b05ccd78c6248558d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8387bd0a542712656fbc476c06d2c565879239a1a7627aaf0e8da61daf8508b4a92a0461cbc209e1a91285dacd2222630f7375f5dd2d90a40a80115463769a4d
|
7
|
+
data.tar.gz: 3fe02f2a86d6dcc775a05edac63e1382184039b01b056cd7471f93cc7c18f23ba7eb5d0f0e4d96e38144707d88f13737b57a5d13720f58d753a2376c35a64ec3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1142
|
data/lib/v20231130/models.rb
CHANGED
@@ -575,6 +575,7 @@ module TencentCloud
|
|
575
575
|
# @param KnowledgeQa: 知识库问答插件配置
|
576
576
|
# @type KnowledgeQa: :class:`Tencentcloud::Lke.v20231130.models.AgentKnowledgeQAPlugin`
|
577
577
|
# @param EnableRoleAuth: 是否使用一键授权
|
578
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
578
579
|
# @type EnableRoleAuth: Boolean
|
579
580
|
# @param Query: 应用配置的插件query信息
|
580
581
|
# @type Query: Array
|
@@ -2537,8 +2538,8 @@ module TencentCloud
|
|
2537
2538
|
|
2538
2539
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :KnowledgeType
|
2539
2540
|
extend Gem::Deprecate
|
2540
|
-
deprecate :EmbeddingModel, :none, 2025,
|
2541
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
2541
|
+
deprecate :EmbeddingModel, :none, 2025, 9
|
2542
|
+
deprecate :EmbeddingModel=, :none, 2025, 9
|
2542
2543
|
|
2543
2544
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, knowledgetype=nil)
|
2544
2545
|
@KnowledgeName = knowledgename
|
@@ -3860,16 +3861,20 @@ module TencentCloud
|
|
3860
3861
|
|
3861
3862
|
# DescribeNodeRun请求参数结构体
|
3862
3863
|
class DescribeNodeRunRequest < TencentCloud::Common::AbstractModel
|
3864
|
+
# @param AppBizId: 应用ID
|
3865
|
+
# @type AppBizId: String
|
3863
3866
|
# @param NodeRunId: 节点运行实例ID
|
3864
3867
|
# @type NodeRunId: String
|
3865
3868
|
|
3866
|
-
attr_accessor :NodeRunId
|
3869
|
+
attr_accessor :AppBizId, :NodeRunId
|
3867
3870
|
|
3868
|
-
def initialize(noderunid=nil)
|
3871
|
+
def initialize(appbizid=nil, noderunid=nil)
|
3872
|
+
@AppBizId = appbizid
|
3869
3873
|
@NodeRunId = noderunid
|
3870
3874
|
end
|
3871
3875
|
|
3872
3876
|
def deserialize(params)
|
3877
|
+
@AppBizId = params['AppBizId']
|
3873
3878
|
@NodeRunId = params['NodeRunId']
|
3874
3879
|
end
|
3875
3880
|
end
|
@@ -4783,16 +4788,20 @@ module TencentCloud
|
|
4783
4788
|
|
4784
4789
|
# DescribeWorkflowRun请求参数结构体
|
4785
4790
|
class DescribeWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
4791
|
+
# @param AppBizId: 应用ID
|
4792
|
+
# @type AppBizId: String
|
4786
4793
|
# @param WorkflowRunId: 工作流运行实例ID
|
4787
4794
|
# @type WorkflowRunId: String
|
4788
4795
|
|
4789
|
-
attr_accessor :WorkflowRunId
|
4796
|
+
attr_accessor :AppBizId, :WorkflowRunId
|
4790
4797
|
|
4791
|
-
def initialize(workflowrunid=nil)
|
4798
|
+
def initialize(appbizid=nil, workflowrunid=nil)
|
4799
|
+
@AppBizId = appbizid
|
4792
4800
|
@WorkflowRunId = workflowrunid
|
4793
4801
|
end
|
4794
4802
|
|
4795
4803
|
def deserialize(params)
|
4804
|
+
@AppBizId = params['AppBizId']
|
4796
4805
|
@WorkflowRunId = params['WorkflowRunId']
|
4797
4806
|
end
|
4798
4807
|
end
|
@@ -6247,10 +6256,12 @@ module TencentCloud
|
|
6247
6256
|
# @param ProcessingFlags: 知识库处理中状态标记,1:向量embedding变更中
|
6248
6257
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6249
6258
|
# @type ProcessingFlags: Array
|
6259
|
+
# @param OwnerStaffName: 知识库拥有者的名字
|
6260
|
+
# @type OwnerStaffName: String
|
6250
6261
|
|
6251
|
-
attr_accessor :KnowledgeBizId, :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :UpdateTime, :KnowledgeType, :OwnerStaffId, :DocTotal, :ProcessingFlags
|
6262
|
+
attr_accessor :KnowledgeBizId, :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :UpdateTime, :KnowledgeType, :OwnerStaffId, :DocTotal, :ProcessingFlags, :OwnerStaffName
|
6252
6263
|
|
6253
|
-
def initialize(knowledgebizid=nil, knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, updatetime=nil, knowledgetype=nil, ownerstaffid=nil, doctotal=nil, processingflags=nil)
|
6264
|
+
def initialize(knowledgebizid=nil, knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, updatetime=nil, knowledgetype=nil, ownerstaffid=nil, doctotal=nil, processingflags=nil, ownerstaffname=nil)
|
6254
6265
|
@KnowledgeBizId = knowledgebizid
|
6255
6266
|
@KnowledgeName = knowledgename
|
6256
6267
|
@KnowledgeDescription = knowledgedescription
|
@@ -6261,6 +6272,7 @@ module TencentCloud
|
|
6261
6272
|
@OwnerStaffId = ownerstaffid
|
6262
6273
|
@DocTotal = doctotal
|
6263
6274
|
@ProcessingFlags = processingflags
|
6275
|
+
@OwnerStaffName = ownerstaffname
|
6264
6276
|
end
|
6265
6277
|
|
6266
6278
|
def deserialize(params)
|
@@ -6274,6 +6286,7 @@ module TencentCloud
|
|
6274
6286
|
@OwnerStaffId = params['OwnerStaffId']
|
6275
6287
|
@DocTotal = params['DocTotal']
|
6276
6288
|
@ProcessingFlags = params['ProcessingFlags']
|
6289
|
+
@OwnerStaffName = params['OwnerStaffName']
|
6277
6290
|
end
|
6278
6291
|
end
|
6279
6292
|
|
@@ -6915,10 +6928,10 @@ module TencentCloud
|
|
6915
6928
|
|
6916
6929
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :OwnerStaffId
|
6917
6930
|
extend Gem::Deprecate
|
6918
|
-
deprecate :EmbeddingModel, :none, 2025,
|
6919
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
6920
|
-
deprecate :QaExtractModel, :none, 2025,
|
6921
|
-
deprecate :QaExtractModel=, :none, 2025,
|
6931
|
+
deprecate :EmbeddingModel, :none, 2025, 9
|
6932
|
+
deprecate :EmbeddingModel=, :none, 2025, 9
|
6933
|
+
deprecate :QaExtractModel, :none, 2025, 9
|
6934
|
+
deprecate :QaExtractModel=, :none, 2025, 9
|
6922
6935
|
|
6923
6936
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, ownerstaffid=nil)
|
6924
6937
|
@KnowledgeName = knowledgename
|
@@ -8190,7 +8203,7 @@ module TencentCloud
|
|
8190
8203
|
# @type Desc: String
|
8191
8204
|
# @param UpdateTime: 更新时间
|
8192
8205
|
# @type UpdateTime: String
|
8193
|
-
# @param Status:
|
8206
|
+
# @param Status: 发布状态,1:待发布,2:发布中,3:发布成功,5:发布失败
|
8194
8207
|
# @type Status: Integer
|
8195
8208
|
# @param StatusDesc: 发布状态描述
|
8196
8209
|
# @type StatusDesc: String
|
@@ -8309,7 +8322,7 @@ module TencentCloud
|
|
8309
8322
|
|
8310
8323
|
# ListRelease请求参数结构体
|
8311
8324
|
class ListReleaseRequest < TencentCloud::Common::AbstractModel
|
8312
|
-
# @param BotBizId:
|
8325
|
+
# @param BotBizId: 应用ID
|
8313
8326
|
# @type BotBizId: String
|
8314
8327
|
# @param PageNumber: 页码
|
8315
8328
|
# @type PageNumber: Integer
|
@@ -8489,10 +8502,12 @@ module TencentCloud
|
|
8489
8502
|
# @type Query: String
|
8490
8503
|
# @param Reasons: 错误类型检索
|
8491
8504
|
# @type Reasons: Array
|
8505
|
+
# @param Status: 操作状态 0-全部 1-待处理 2-已处理【包括答案纠错,拒答,忽略】
|
8506
|
+
# @type Status: Integer
|
8492
8507
|
|
8493
|
-
attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons
|
8508
|
+
attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons, :Status
|
8494
8509
|
|
8495
|
-
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil, query=nil, reasons=nil)
|
8510
|
+
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil, query=nil, reasons=nil, status=nil)
|
8496
8511
|
@BotBizId = botbizid
|
8497
8512
|
@PageNumber = pagenumber
|
8498
8513
|
@PageSize = pagesize
|
@@ -8500,6 +8515,7 @@ module TencentCloud
|
|
8500
8515
|
@LoginSubAccountUin = loginsubaccountuin
|
8501
8516
|
@Query = query
|
8502
8517
|
@Reasons = reasons
|
8518
|
+
@Status = status
|
8503
8519
|
end
|
8504
8520
|
|
8505
8521
|
def deserialize(params)
|
@@ -8510,6 +8526,7 @@ module TencentCloud
|
|
8510
8526
|
@LoginSubAccountUin = params['LoginSubAccountUin']
|
8511
8527
|
@Query = params['Query']
|
8512
8528
|
@Reasons = params['Reasons']
|
8529
|
+
@Status = params['Status']
|
8513
8530
|
end
|
8514
8531
|
end
|
8515
8532
|
|
@@ -10414,10 +10431,10 @@ module TencentCloud
|
|
10414
10431
|
# @type BotAppKey: String
|
10415
10432
|
# @param RecordId: 消息ID 【大模型回复答案的RecordID】
|
10416
10433
|
# @type RecordId: String
|
10417
|
-
# @param Score: 1: 点赞;
|
10434
|
+
# @param Score: 1: 点赞; 2: 点踩;
|
10418
10435
|
# 注:
|
10419
|
-
# 1) 评测端不支持点赞、点踩
|
10420
|
-
# 2) 消息回复类型为欢迎语、并发超限、实时文档,不支持点赞、点踩
|
10436
|
+
# (1) 评测端不支持点赞、点踩
|
10437
|
+
# (2) 消息回复类型为欢迎语、并发超限、实时文档,不支持点赞、点踩
|
10421
10438
|
# @type Score: Integer
|
10422
10439
|
# @param Reasons: 原因,只有Score参数为2即点踩的时候才需要输入
|
10423
10440
|
# @type Reasons: Array
|
@@ -10598,13 +10615,13 @@ module TencentCloud
|
|
10598
10615
|
|
10599
10616
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10600
10617
|
# @type Question: String
|
10601
|
-
# @param Status:
|
10618
|
+
# @param Status: 发布状态(1 待发布 2 发布中 3 已发布 4 发布失败)
|
10602
10619
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10603
10620
|
# @type Status: Integer
|
10604
10621
|
# @param StatusDesc: 状态描述
|
10605
10622
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10606
10623
|
# @type StatusDesc: String
|
10607
|
-
# @param UpdateTime:
|
10624
|
+
# @param UpdateTime: 更新时间, 秒级时间戳
|
10608
10625
|
|
10609
10626
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10610
10627
|
# @type UpdateTime: String
|
@@ -10616,10 +10633,13 @@ module TencentCloud
|
|
10616
10633
|
|
10617
10634
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10618
10635
|
# @type IsAllowDelete: Boolean
|
10636
|
+
# @param Operator: 操作人
|
10637
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10638
|
+
# @type Operator: String
|
10619
10639
|
|
10620
|
-
attr_accessor :RejectedBizId, :Question, :Status, :StatusDesc, :UpdateTime, :IsAllowEdit, :IsAllowDelete
|
10640
|
+
attr_accessor :RejectedBizId, :Question, :Status, :StatusDesc, :UpdateTime, :IsAllowEdit, :IsAllowDelete, :Operator
|
10621
10641
|
|
10622
|
-
def initialize(rejectedbizid=nil, question=nil, status=nil, statusdesc=nil, updatetime=nil, isallowedit=nil, isallowdelete=nil)
|
10642
|
+
def initialize(rejectedbizid=nil, question=nil, status=nil, statusdesc=nil, updatetime=nil, isallowedit=nil, isallowdelete=nil, operator=nil)
|
10623
10643
|
@RejectedBizId = rejectedbizid
|
10624
10644
|
@Question = question
|
10625
10645
|
@Status = status
|
@@ -10627,6 +10647,7 @@ module TencentCloud
|
|
10627
10647
|
@UpdateTime = updatetime
|
10628
10648
|
@IsAllowEdit = isallowedit
|
10629
10649
|
@IsAllowDelete = isallowdelete
|
10650
|
+
@Operator = operator
|
10630
10651
|
end
|
10631
10652
|
|
10632
10653
|
def deserialize(params)
|
@@ -10637,6 +10658,7 @@ module TencentCloud
|
|
10637
10658
|
@UpdateTime = params['UpdateTime']
|
10638
10659
|
@IsAllowEdit = params['IsAllowEdit']
|
10639
10660
|
@IsAllowDelete = params['IsAllowDelete']
|
10661
|
+
@Operator = params['Operator']
|
10640
10662
|
end
|
10641
10663
|
end
|
10642
10664
|
|
@@ -11566,16 +11588,20 @@ module TencentCloud
|
|
11566
11588
|
|
11567
11589
|
# StopWorkflowRun请求参数结构体
|
11568
11590
|
class StopWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
11591
|
+
# @param AppBizId: 应用ID
|
11592
|
+
# @type AppBizId: String
|
11569
11593
|
# @param WorkflowRunId: 工作流运行实例ID
|
11570
11594
|
# @type WorkflowRunId: String
|
11571
11595
|
|
11572
|
-
attr_accessor :WorkflowRunId
|
11596
|
+
attr_accessor :AppBizId, :WorkflowRunId
|
11573
11597
|
|
11574
|
-
def initialize(workflowrunid=nil)
|
11598
|
+
def initialize(appbizid=nil, workflowrunid=nil)
|
11599
|
+
@AppBizId = appbizid
|
11575
11600
|
@WorkflowRunId = workflowrunid
|
11576
11601
|
end
|
11577
11602
|
|
11578
11603
|
def deserialize(params)
|
11604
|
+
@AppBizId = params['AppBizId']
|
11579
11605
|
@WorkflowRunId = params['WorkflowRunId']
|
11580
11606
|
end
|
11581
11607
|
end
|
@@ -11914,21 +11940,34 @@ module TencentCloud
|
|
11914
11940
|
# @param Question: 用户问题
|
11915
11941
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11916
11942
|
# @type Question: String
|
11917
|
-
# @param Answer:
|
11943
|
+
# @param Answer: 问题回复
|
11918
11944
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11919
11945
|
# @type Answer: String
|
11920
11946
|
# @param Reasons: 错误类型
|
11921
11947
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11922
11948
|
# @type Reasons: Array
|
11949
|
+
# @param Status: 处理状态,0:待处理,1:已拒答,2:已忽略,3:已纠错
|
11950
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11951
|
+
# @type Status: Integer
|
11952
|
+
# @param CreateTime: 创建时间,秒级时间戳
|
11953
|
+
# @type CreateTime: String
|
11954
|
+
# @param UpdateTime: 更新时间,秒级时间戳
|
11955
|
+
# @type UpdateTime: String
|
11956
|
+
# @param Operator: 操作人
|
11957
|
+
# @type Operator: String
|
11923
11958
|
|
11924
|
-
attr_accessor :ReplyBizId, :RecordBizId, :Question, :Answer, :Reasons
|
11959
|
+
attr_accessor :ReplyBizId, :RecordBizId, :Question, :Answer, :Reasons, :Status, :CreateTime, :UpdateTime, :Operator
|
11925
11960
|
|
11926
|
-
def initialize(replybizid=nil, recordbizid=nil, question=nil, answer=nil, reasons=nil)
|
11961
|
+
def initialize(replybizid=nil, recordbizid=nil, question=nil, answer=nil, reasons=nil, status=nil, createtime=nil, updatetime=nil, operator=nil)
|
11927
11962
|
@ReplyBizId = replybizid
|
11928
11963
|
@RecordBizId = recordbizid
|
11929
11964
|
@Question = question
|
11930
11965
|
@Answer = answer
|
11931
11966
|
@Reasons = reasons
|
11967
|
+
@Status = status
|
11968
|
+
@CreateTime = createtime
|
11969
|
+
@UpdateTime = updatetime
|
11970
|
+
@Operator = operator
|
11932
11971
|
end
|
11933
11972
|
|
11934
11973
|
def deserialize(params)
|
@@ -11937,6 +11976,10 @@ module TencentCloud
|
|
11937
11976
|
@Question = params['Question']
|
11938
11977
|
@Answer = params['Answer']
|
11939
11978
|
@Reasons = params['Reasons']
|
11979
|
+
@Status = params['Status']
|
11980
|
+
@CreateTime = params['CreateTime']
|
11981
|
+
@UpdateTime = params['UpdateTime']
|
11982
|
+
@Operator = params['Operator']
|
11940
11983
|
end
|
11941
11984
|
end
|
11942
11985
|
|
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.1142
|
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-
|
11
|
+
date: 2025-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|