tencentcloud-sdk-lke 3.0.1177 → 3.0.1183

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 62886aa74894d9a2742bbcb4d98044e574a7b32b
4
- data.tar.gz: a587c01c2b1fba3bb61c4cb45aa7fd5985ca6bac
3
+ metadata.gz: a1356d0ab24df0e3f1f59981e30cef4de66eb108
4
+ data.tar.gz: 8f8e8d89f18d33bb75c8f1fae4b630b4a90e5f8f
5
5
  SHA512:
6
- metadata.gz: 9c3fcf56b5f2dfcd25cbaaa53428147481b14d1a74fea10677f551d4fdbb6d2718e1b01f165ec213dd915d38e552d4c26169ad7641f8d461d0c9a06eb70f6eaf
7
- data.tar.gz: 363dc330afc326185d07b6166e7ddd7c80342fed6d2769b1f84d5ffedf149fd8b0303978df150ceab34acaf4f8eaa1c42d3291e5af197388568b8f59e7c36e67
6
+ metadata.gz: a477bee04ffd16c3604f3d53f677632d6c91272910e798a8be6bfb65a5865128d3c77ff8c9f2b060fa6ed3e15c5a09f9103761f1910025a83ebfa72abcfaa8cd
7
+ data.tar.gz: 68f53275273262e61790b86b4dd25a93182afca595c6ce0eda067e43755da84ecf075f8039b73a17e42f7fe3eea5c3316b03f492f02144c2e7e3183eac244a62
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1177
1
+ 3.0.1183
@@ -1110,7 +1110,7 @@ module TencentCloud
1110
1110
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1111
1111
  end
1112
1112
 
1113
- # 导出属性标签
1113
+ # 导出标签
1114
1114
 
1115
1115
  # @param request: Request instance for ExportAttributeLabel.
1116
1116
  # @type request: :class:`Tencentcloud::lke::V20231130::ExportAttributeLabelRequest`
@@ -1903,7 +1903,7 @@ module TencentCloud
1903
1903
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1904
1904
  end
1905
1905
 
1906
- # 文档生成问答时,可通过该接口获得当前支持生成问答的文档列表,当前不支持xlsx、xls、csv格式的文档生成问答,且文档需处于待发布或已发布状态才可生成问答。
1906
+ # 获取文档下拉列表。
1907
1907
 
1908
1908
  # @param request: Request instance for ListSelectDoc.
1909
1909
  # @type request: :class:`Tencentcloud::lke::V20231130::ListSelectDocRequest`
@@ -1512,6 +1512,37 @@ module TencentCloud
1512
1512
  end
1513
1513
  end
1514
1514
 
1515
+ # 模型详情
1516
+ class AppModelDetailInfo < TencentCloud::Common::AbstractModel
1517
+ # @param ModelName: 模型名称
1518
+ # @type ModelName: String
1519
+ # @param ModelParams: 模型参数
1520
+ # @type ModelParams: :class:`Tencentcloud::Lke.v20231130.models.ModelParams`
1521
+ # @param HistoryLimit: 限制
1522
+ # @type HistoryLimit: Integer
1523
+ # @param AliasName: 模型别名
1524
+ # @type AliasName: String
1525
+
1526
+ attr_accessor :ModelName, :ModelParams, :HistoryLimit, :AliasName
1527
+
1528
+ def initialize(modelname=nil, modelparams=nil, historylimit=nil, aliasname=nil)
1529
+ @ModelName = modelname
1530
+ @ModelParams = modelparams
1531
+ @HistoryLimit = historylimit
1532
+ @AliasName = aliasname
1533
+ end
1534
+
1535
+ def deserialize(params)
1536
+ @ModelName = params['ModelName']
1537
+ unless params['ModelParams'].nil?
1538
+ @ModelParams = ModelParams.new
1539
+ @ModelParams.deserialize(params['ModelParams'])
1540
+ end
1541
+ @HistoryLimit = params['HistoryLimit']
1542
+ @AliasName = params['AliasName']
1543
+ end
1544
+ end
1545
+
1515
1546
  # 标签详情信息
1516
1547
  class AttrLabel < TencentCloud::Common::AbstractModel
1517
1548
  # @param Source: 标签来源
@@ -1573,7 +1604,7 @@ module TencentCloud
1573
1604
  # @param IsUpdating: 标签是否在更新中
1574
1605
  # 注意:此字段可能返回 null,表示取不到有效值。
1575
1606
  # @type IsUpdating: Boolean
1576
- # @param Status: 状态
1607
+ # @param Status: 发布状态(1 待发布 2 发布中 3 已发布 4 发布失败)
1577
1608
  # 注意:此字段可能返回 null,表示取不到有效值。
1578
1609
  # @type Status: Integer
1579
1610
  # @param StatusDesc: 状态描述
@@ -1583,6 +1614,9 @@ module TencentCloud
1583
1614
  # @type LabelTotalCount: String
1584
1615
 
1585
1616
  attr_accessor :AttrBizId, :AttrKey, :AttrName, :LabelNames, :IsUpdating, :Status, :StatusDesc, :LabelTotalCount
1617
+ extend Gem::Deprecate
1618
+ deprecate :AttrKey, :none, 2025, 12
1619
+ deprecate :AttrKey=, :none, 2025, 12
1586
1620
 
1587
1621
  def initialize(attrbizid=nil, attrkey=nil, attrname=nil, labelnames=nil, isupdating=nil, status=nil, statusdesc=nil, labeltotalcount=nil)
1588
1622
  @AttrBizId = attrbizid
@@ -1953,17 +1987,17 @@ module TencentCloud
1953
1987
 
1954
1988
  # CheckAttributeLabelExist请求参数结构体
1955
1989
  class CheckAttributeLabelExistRequest < TencentCloud::Common::AbstractModel
1956
- # @param BotBizId: 应用ID
1990
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
1957
1991
  # @type BotBizId: String
1958
- # @param LabelName: 属性名称
1992
+ # @param LabelName: 标签名称
1959
1993
  # @type LabelName: String
1960
- # @param AttributeBizId: 属性ID
1994
+ # @param AttributeBizId: 标签ID
1961
1995
  # @type AttributeBizId: String
1962
1996
  # @param LoginUin: 登录用户主账号(集成商模式必填)
1963
1997
  # @type LoginUin: String
1964
1998
  # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
1965
1999
  # @type LoginSubAccountUin: String
1966
- # @param LastLabelBizId: 滚动加载,最后一个属性标签ID
2000
+ # @param LastLabelBizId: 最后一个标签ID。用于滚动加载:是一种分批、滚动式的存在性检查机制。客户端需要持续调用接口,并每次传入上一次返回的最后一个记录的ID,直到接口明确返回“存在”或“已检查全部数据且不存在”为止。
1967
2001
  # @type LastLabelBizId: String
1968
2002
 
1969
2003
  attr_accessor :BotBizId, :LabelName, :AttributeBizId, :LoginUin, :LoginSubAccountUin, :LastLabelBizId
@@ -2009,15 +2043,15 @@ module TencentCloud
2009
2043
 
2010
2044
  # CheckAttributeLabelRefer请求参数结构体
2011
2045
  class CheckAttributeLabelReferRequest < TencentCloud::Common::AbstractModel
2012
- # @param BotBizId: 应用ID
2046
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
2013
2047
  # @type BotBizId: String
2014
2048
  # @param LoginUin: 登录用户主账号(集成商模式必填)
2015
2049
  # @type LoginUin: String
2016
2050
  # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
2017
2051
  # @type LoginSubAccountUin: String
2018
- # @param LabelBizId: 属性标签
2052
+ # @param LabelBizId: 属性标签ID
2019
2053
  # @type LabelBizId: String
2020
- # @param AttributeBizId: 属性ID
2054
+ # @param AttributeBizId: 标签ID
2021
2055
  # @type AttributeBizId: Array
2022
2056
 
2023
2057
  attr_accessor :BotBizId, :LoginUin, :LoginSubAccountUin, :LabelBizId, :AttributeBizId
@@ -2248,7 +2282,7 @@ module TencentCloud
2248
2282
 
2249
2283
  # CreateAttributeLabel请求参数结构体
2250
2284
  class CreateAttributeLabelRequest < TencentCloud::Common::AbstractModel
2251
- # @param BotBizId: 应用ID
2285
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
2252
2286
  # @type BotBizId: String
2253
2287
  # @param AttrName: 标签名
2254
2288
  # @type AttrName: String
@@ -2521,12 +2555,12 @@ module TencentCloud
2521
2555
 
2522
2556
  # CreateRejectedQuestion请求参数结构体
2523
2557
  class CreateRejectedQuestionRequest < TencentCloud::Common::AbstractModel
2524
- # @param BotBizId: 应用ID
2558
+ # @param BotBizId: 应用ID, 获取方式参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
2525
2559
  # @type BotBizId: String
2526
2560
  # @param Question: 拒答问题
2527
2561
 
2528
2562
  # @type Question: String
2529
- # @param BusinessSource: 拒答问题来源的数据源唯一id, - 拒答来源于不满意回复 2 - 拒答来源于手动添加
2563
+ # @param BusinessSource: 拒答问题来源, 1- 来源于不满意回复; 2 - 来源于手动添加
2530
2564
  # @type BusinessSource: Integer
2531
2565
  # @param BusinessId: 拒答问题来源的数据源唯一id
2532
2566
 
@@ -2932,7 +2966,7 @@ module TencentCloud
2932
2966
 
2933
2967
  # DeleteAttributeLabel请求参数结构体
2934
2968
  class DeleteAttributeLabelRequest < TencentCloud::Common::AbstractModel
2935
- # @param BotBizId: 应用ID
2969
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
2936
2970
  # @type BotBizId: String
2937
2971
  # @param AttributeBizIds: 标签ID
2938
2972
  # @type AttributeBizIds: Array
@@ -3120,7 +3154,7 @@ module TencentCloud
3120
3154
 
3121
3155
  # DeleteRejectedQuestion请求参数结构体
3122
3156
  class DeleteRejectedQuestionRequest < TencentCloud::Common::AbstractModel
3123
- # @param BotBizId: 应用ID
3157
+ # @param BotBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)。
3124
3158
  # @type BotBizId: String
3125
3159
  # @param RejectedBizIds: 拒答问题来源的数据源唯一id
3126
3160
 
@@ -3394,19 +3428,19 @@ module TencentCloud
3394
3428
 
3395
3429
  # DescribeAttributeLabel请求参数结构体
3396
3430
  class DescribeAttributeLabelRequest < TencentCloud::Common::AbstractModel
3397
- # @param BotBizId: 应用ID
3431
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
3398
3432
  # @type BotBizId: String
3399
- # @param AttributeBizId: 属性ID
3433
+ # @param AttributeBizId: 标签ID
3400
3434
  # @type AttributeBizId: String
3401
- # @param Limit: 每次加载的数量
3435
+ # @param Limit: 每次请求返回的最大标签数量​,限制单次接口返回的标签数量,避免数据量过大。取值范围:大于0。
3402
3436
  # @type Limit: Integer
3403
3437
  # @param LoginUin: 登录用户主账号(集成商模式必填)
3404
3438
  # @type LoginUin: String
3405
3439
  # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
3406
3440
  # @type LoginSubAccountUin: String
3407
- # @param Query: 查询标签或相似标签
3441
+ # @param Query: 搜索关键词,用于查询标签标准词或相似词
3408
3442
  # @type Query: String
3409
- # @param LastLabelBizId: 滚动加载游标的标签ID
3443
+ # @param LastLabelBizId: 滚动加载游标,上一次请求返回的最后一个标签ID
3410
3444
  # @type LastLabelBizId: String
3411
3445
  # @param QueryScope: 查询范围 all(或者传空):标准词和相似词 standard:标准词 similar:相似词
3412
3446
  # @type QueryScope: String
@@ -4871,9 +4905,9 @@ module TencentCloud
4871
4905
 
4872
4906
  # DescribeUnsatisfiedReplyContext请求参数结构体
4873
4907
  class DescribeUnsatisfiedReplyContextRequest < TencentCloud::Common::AbstractModel
4874
- # @param BotBizId: 应用ID
4908
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
4875
4909
  # @type BotBizId: String
4876
- # @param ReplyBizId: 回复ID
4910
+ # @param ReplyBizId: 回复ID,调用这个接口获得:[ListUnsatisfiedReply](https://capi.woa.com/api/detail?product=lke&version=2023-11-30&action=ListUnsatisfiedReply)
4877
4911
  # @type ReplyBizId: String
4878
4912
  # @param LoginUin: 登录用户主账号(集成商模式必填)
4879
4913
  # @type LoginUin: String
@@ -4927,7 +4961,7 @@ module TencentCloud
4927
4961
 
4928
4962
  # DescribeWorkflowRun请求参数结构体
4929
4963
  class DescribeWorkflowRunRequest < TencentCloud::Common::AbstractModel
4930
- # @param AppBizId: 应用ID
4964
+ # @param AppBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)。
4931
4965
  # @type AppBizId: String
4932
4966
  # @param WorkflowRunId: 工作流运行实例ID
4933
4967
  # @type WorkflowRunId: String
@@ -4964,7 +4998,7 @@ module TencentCloud
4964
4998
 
4965
4999
  # DescribeWorkflowRun返回参数结构体
4966
5000
  class DescribeWorkflowRunResponse < TencentCloud::Common::AbstractModel
4967
- # @param WorkflowRun: 工作流的详情
5001
+ # @param WorkflowRun: 工作流运行实例详情
4968
5002
  # @type WorkflowRun: :class:`Tencentcloud::Lke.v20231130.models.WorkflowRunDetail`
4969
5003
  # @param NodeRuns: 节点列表
4970
5004
  # @type NodeRuns: Array
@@ -5140,13 +5174,13 @@ module TencentCloud
5140
5174
 
5141
5175
  # ExportAttributeLabel请求参数结构体
5142
5176
  class ExportAttributeLabelRequest < TencentCloud::Common::AbstractModel
5143
- # @param BotBizId: 应用ID
5177
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
5144
5178
  # @type BotBizId: String
5145
5179
  # @param LoginUin: 登录用户主账号(集成商模式必填)
5146
5180
  # @type LoginUin: String
5147
5181
  # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
5148
5182
  # @type LoginSubAccountUin: String
5149
- # @param AttributeBizIds: 属性ID
5183
+ # @param AttributeBizIds: 标签ID
5150
5184
  # @type AttributeBizIds: Array
5151
5185
  # @param Filters: 根据筛选数据导出
5152
5186
  # @type Filters: :class:`Tencentcloud::Lke.v20231130.models.AttributeFilters`
@@ -5352,23 +5386,27 @@ module TencentCloud
5352
5386
  # @type Query: String
5353
5387
  # @param Reasons: 错误类型检索
5354
5388
  # @type Reasons: Array
5389
+ # @param HandlingStatuses: 处理状态 0-待处理 1-已拒答 2-已忽略 3-已添加为新问答 4-已添加为相似问
5390
+ # @type HandlingStatuses: Array
5355
5391
 
5356
- attr_accessor :Query, :Reasons
5392
+ attr_accessor :Query, :Reasons, :HandlingStatuses
5357
5393
 
5358
- def initialize(query=nil, reasons=nil)
5394
+ def initialize(query=nil, reasons=nil, handlingstatuses=nil)
5359
5395
  @Query = query
5360
5396
  @Reasons = reasons
5397
+ @HandlingStatuses = handlingstatuses
5361
5398
  end
5362
5399
 
5363
5400
  def deserialize(params)
5364
5401
  @Query = params['Query']
5365
5402
  @Reasons = params['Reasons']
5403
+ @HandlingStatuses = params['HandlingStatuses']
5366
5404
  end
5367
5405
  end
5368
5406
 
5369
5407
  # GenerateQA请求参数结构体
5370
5408
  class GenerateQARequest < TencentCloud::Common::AbstractModel
5371
- # @param BotBizId: 应用ID
5409
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
5372
5410
  # @type BotBizId: String
5373
5411
  # @param DocBizIds: 文档ID
5374
5412
  # @type DocBizIds: Array
@@ -6030,17 +6068,21 @@ module TencentCloud
6030
6068
  # @type Pattern: String
6031
6069
  # @param SingleWorkflow: SingleWorkflow
6032
6070
  # @type SingleWorkflow: :class:`Tencentcloud::Lke.v20231130.models.KnowledgeQaSingleWorkflow`
6071
+ # @param VisionModelInputLimit: 使用视觉模型时对话窗口输入字符限制
6072
+ # 注意:此字段可能返回 null,表示取不到有效值。
6073
+ # @type VisionModelInputLimit: Integer
6033
6074
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6034
6075
  # @type RequestId: String
6035
6076
 
6036
- attr_accessor :Token, :Balance, :InputLenLimit, :Pattern, :SingleWorkflow, :RequestId
6077
+ attr_accessor :Token, :Balance, :InputLenLimit, :Pattern, :SingleWorkflow, :VisionModelInputLimit, :RequestId
6037
6078
 
6038
- def initialize(token=nil, balance=nil, inputlenlimit=nil, pattern=nil, singleworkflow=nil, requestid=nil)
6079
+ def initialize(token=nil, balance=nil, inputlenlimit=nil, pattern=nil, singleworkflow=nil, visionmodelinputlimit=nil, requestid=nil)
6039
6080
  @Token = token
6040
6081
  @Balance = balance
6041
6082
  @InputLenLimit = inputlenlimit
6042
6083
  @Pattern = pattern
6043
6084
  @SingleWorkflow = singleworkflow
6085
+ @VisionModelInputLimit = visionmodelinputlimit
6044
6086
  @RequestId = requestid
6045
6087
  end
6046
6088
 
@@ -6053,6 +6095,7 @@ module TencentCloud
6053
6095
  @SingleWorkflow = KnowledgeQaSingleWorkflow.new
6054
6096
  @SingleWorkflow.deserialize(params['SingleWorkflow'])
6055
6097
  end
6098
+ @VisionModelInputLimit = params['VisionModelInputLimit']
6056
6099
  @RequestId = params['RequestId']
6057
6100
  end
6058
6101
  end
@@ -8670,11 +8713,11 @@ module TencentCloud
8670
8713
 
8671
8714
  # ListSelectDoc请求参数结构体
8672
8715
  class ListSelectDocRequest < TencentCloud::Common::AbstractModel
8673
- # @param BotBizId: 应用ID
8716
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
8674
8717
  # @type BotBizId: String
8675
8718
  # @param FileName: 文档名称。可通过文档名称检索支持生成问答的文档,不支持xlsx、xls、csv格式
8676
8719
  # @type FileName: String
8677
- # @param Status: 文档状态筛选。文档状态对应码为7 审核中、8 审核失败、10 待发布、11 发布中、12 已发布、13 学习中、14 学习失败 20 已过期。其中仅状态为10 待发布、12 已发布的文档支持生成问答
8720
+ # @param Status: 文档状态筛选。文档状态对应码为7 审核中、8 审核失败、10 待发布、11 发布中、12 已发布、13 学习中、14 学习失败 20 已过期。其中仅状态为10 待发布、12 已发布的文档支持生成问答(未填写时默认值为空数组)
8678
8721
  # @type Status: Array
8679
8722
 
8680
8723
  attr_accessor :BotBizId, :FileName, :Status
@@ -8781,26 +8824,28 @@ module TencentCloud
8781
8824
 
8782
8825
  # ListUnsatisfiedReply请求参数结构体
8783
8826
  class ListUnsatisfiedReplyRequest < TencentCloud::Common::AbstractModel
8784
- # @param BotBizId: 应用ID
8827
+ # @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
8785
8828
  # @type BotBizId: String
8786
- # @param PageNumber: 页码
8829
+ # @param PageNumber: 页码,取值范围:大于0
8787
8830
  # @type PageNumber: Integer
8788
- # @param PageSize: 分页数量
8831
+ # @param PageSize: 分页数量,取值范围:大于0
8789
8832
  # @type PageSize: Integer
8790
8833
  # @param LoginUin: 登录用户主账号(集成商模式必填)
8791
8834
  # @type LoginUin: String
8792
8835
  # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
8793
8836
  # @type LoginSubAccountUin: String
8794
- # @param Query: 用户请求(问题或答案)
8837
+ # @param Query: 用户请求(问题或答案),按关键词检索,可匹配用户问题或答案
8795
8838
  # @type Query: String
8796
- # @param Reasons: 错误类型检索
8839
+ # @param Reasons: 按错误类型检索
8797
8840
  # @type Reasons: Array
8798
- # @param Status: 操作状态 0-全部 1-待处理 2-已处理【包括答案纠错,拒答,忽略】
8841
+ # @param Status: 按操作状态检索 0-全部 1-待处理 2-已处理【包括答案纠错,拒答,忽略】,不填时默认值为0
8799
8842
  # @type Status: Integer
8843
+ # @param HandlingStatuses: 处理状态 0-待处理 1-已拒答 2-已忽略 3-已添加为新问答 4-已添加为相似问
8844
+ # @type HandlingStatuses: Array
8800
8845
 
8801
- attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons, :Status
8846
+ attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons, :Status, :HandlingStatuses
8802
8847
 
8803
- def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil, query=nil, reasons=nil, status=nil)
8848
+ def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil, query=nil, reasons=nil, status=nil, handlingstatuses=nil)
8804
8849
  @BotBizId = botbizid
8805
8850
  @PageNumber = pagenumber
8806
8851
  @PageSize = pagesize
@@ -8809,6 +8854,7 @@ module TencentCloud
8809
8854
  @Query = query
8810
8855
  @Reasons = reasons
8811
8856
  @Status = status
8857
+ @HandlingStatuses = handlingstatuses
8812
8858
  end
8813
8859
 
8814
8860
  def deserialize(params)
@@ -8820,6 +8866,7 @@ module TencentCloud
8820
8866
  @Query = params['Query']
8821
8867
  @Reasons = params['Reasons']
8822
8868
  @Status = params['Status']
8869
+ @HandlingStatuses = params['HandlingStatuses']
8823
8870
  end
8824
8871
  end
8825
8872
 
@@ -10075,6 +10122,26 @@ module TencentCloud
10075
10122
  end
10076
10123
  end
10077
10124
 
10125
+ # Nl2Sql模型配置
10126
+ class NL2SQLModelConfig < TencentCloud::Common::AbstractModel
10127
+ # @param Model: 模型配置
10128
+ # 注意:此字段可能返回 null,表示取不到有效值。
10129
+ # @type Model: :class:`Tencentcloud::Lke.v20231130.models.AppModelDetailInfo`
10130
+
10131
+ attr_accessor :Model
10132
+
10133
+ def initialize(model=nil)
10134
+ @Model = model
10135
+ end
10136
+
10137
+ def deserialize(params)
10138
+ unless params['Model'].nil?
10139
+ @Model = AppModelDetailInfo.new
10140
+ @Model.deserialize(params['Model'])
10141
+ end
10142
+ end
10143
+ end
10144
+
10078
10145
  # 节点运行的基本信息
10079
10146
  class NodeRunBase < TencentCloud::Common::AbstractModel
10080
10147
  # @param NodeRunId: 节点运行的ID
@@ -11679,15 +11746,19 @@ module TencentCloud
11679
11746
  # @param RerankModel: 结果重排序模型
11680
11747
  # 注意:此字段可能返回 null,表示取不到有效值。
11681
11748
  # @type RerankModel: String
11749
+ # @param NatureLanguageToSqlModelConfig: NL2SQL模型配置
11750
+ # 注意:此字段可能返回 null,表示取不到有效值。
11751
+ # @type NatureLanguageToSqlModelConfig: :class:`Tencentcloud::Lke.v20231130.models.NL2SQLModelConfig`
11682
11752
 
11683
- attr_accessor :StrategyType, :TableEnhancement, :EmbeddingModel, :RerankModelSwitch, :RerankModel
11753
+ attr_accessor :StrategyType, :TableEnhancement, :EmbeddingModel, :RerankModelSwitch, :RerankModel, :NatureLanguageToSqlModelConfig
11684
11754
 
11685
- def initialize(strategytype=nil, tableenhancement=nil, embeddingmodel=nil, rerankmodelswitch=nil, rerankmodel=nil)
11755
+ def initialize(strategytype=nil, tableenhancement=nil, embeddingmodel=nil, rerankmodelswitch=nil, rerankmodel=nil, naturelanguagetosqlmodelconfig=nil)
11686
11756
  @StrategyType = strategytype
11687
11757
  @TableEnhancement = tableenhancement
11688
11758
  @EmbeddingModel = embeddingmodel
11689
11759
  @RerankModelSwitch = rerankmodelswitch
11690
11760
  @RerankModel = rerankmodel
11761
+ @NatureLanguageToSqlModelConfig = naturelanguagetosqlmodelconfig
11691
11762
  end
11692
11763
 
11693
11764
  def deserialize(params)
@@ -11696,6 +11767,10 @@ module TencentCloud
11696
11767
  @EmbeddingModel = params['EmbeddingModel']
11697
11768
  @RerankModelSwitch = params['RerankModelSwitch']
11698
11769
  @RerankModel = params['RerankModel']
11770
+ unless params['NatureLanguageToSqlModelConfig'].nil?
11771
+ @NatureLanguageToSqlModelConfig = NL2SQLModelConfig.new
11772
+ @NatureLanguageToSqlModelConfig.deserialize(params['NatureLanguageToSqlModelConfig'])
11773
+ end
11699
11774
  end
11700
11775
  end
11701
11776
 
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.1177
4
+ version: 3.0.1183
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-12-04 00:00:00.000000000 Z
11
+ date: 2025-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20231130/client.rb
37
- - lib/v20231130/models.rb
38
36
  - lib/tencentcloud-sdk-lke.rb
37
+ - lib/v20231130/models.rb
38
+ - lib/v20231130/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: