tencentcloud-sdk-lke 3.0.1160 → 3.0.1169

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20231130/models.rb +84 -22
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 11421cfc5832286226b9c130d8e2c19d4fd314f9
4
- data.tar.gz: b772b93d3bac8ece16cd511de40cdf1ef4ec7e98
3
+ metadata.gz: 067aa5c8550279d6a712867c9d61ddc68ef890d3
4
+ data.tar.gz: f6b9f6c3411f1b9cbd4f511020623025fbeddec4
5
5
  SHA512:
6
- metadata.gz: a061ee2ddcc80c2c4afde9305b371cd58de4b0bcd7cfb1fa9c55a9b7c405d4e8d62e1f8768f148f472dda486414a24723c0b88ff4d1dd10de3ead5a3fff3d1e6
7
- data.tar.gz: 8f671bb0c44b9bfd86783e58f369a2da2ca478fcd7d5e130a8828651500081f963b983b6495d4e442c36e95cc5f26d7dcc97ad9cdd5f855f21dac604b386a8a3
6
+ metadata.gz: 45d6519cd0d6186574b1ce65ff613d24f454a1fdc52cbd618e8623e6deea7f6e19f29220f3cab2f73377ecc57bba23491faadaba3d3dafacd19bc1ac191789c5
7
+ data.tar.gz: e8d27ed751dbd0dcf1ef872c747b4c5b9f977304b41347c2145ed397942b20c9258229f4dc3db11c51bf9c7feda7441ef15cfda165e47d301c4007d7e94eb063
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1160
1
+ 3.0.1169
@@ -1041,10 +1041,12 @@ module TencentCloud
1041
1041
  # @type Query: Array
1042
1042
  # @param FinanceStatus: 工具计费状态 0-不计费 1-可用 2-不可用(欠费、无资源等)
1043
1043
  # @type FinanceStatus: Integer
1044
+ # @param ToolSource: 工具来源: 0-来自插件,1-来自工作流
1045
+ # @type ToolSource: Integer
1044
1046
 
1045
- attr_accessor :PluginId, :PluginName, :IconUrl, :PluginType, :ToolId, :ToolName, :ToolDesc, :Inputs, :Outputs, :CreateType, :McpServer, :IsBindingKnowledge, :Status, :Headers, :CallingMethod, :Query, :FinanceStatus
1047
+ attr_accessor :PluginId, :PluginName, :IconUrl, :PluginType, :ToolId, :ToolName, :ToolDesc, :Inputs, :Outputs, :CreateType, :McpServer, :IsBindingKnowledge, :Status, :Headers, :CallingMethod, :Query, :FinanceStatus, :ToolSource
1046
1048
 
1047
- def initialize(pluginid=nil, pluginname=nil, iconurl=nil, plugintype=nil, toolid=nil, toolname=nil, tooldesc=nil, inputs=nil, outputs=nil, createtype=nil, mcpserver=nil, isbindingknowledge=nil, status=nil, headers=nil, callingmethod=nil, query=nil, financestatus=nil)
1049
+ def initialize(pluginid=nil, pluginname=nil, iconurl=nil, plugintype=nil, toolid=nil, toolname=nil, tooldesc=nil, inputs=nil, outputs=nil, createtype=nil, mcpserver=nil, isbindingknowledge=nil, status=nil, headers=nil, callingmethod=nil, query=nil, financestatus=nil, toolsource=nil)
1048
1050
  @PluginId = pluginid
1049
1051
  @PluginName = pluginname
1050
1052
  @IconUrl = iconurl
@@ -1062,6 +1064,7 @@ module TencentCloud
1062
1064
  @CallingMethod = callingmethod
1063
1065
  @Query = query
1064
1066
  @FinanceStatus = financestatus
1067
+ @ToolSource = toolsource
1065
1068
  end
1066
1069
 
1067
1070
  def deserialize(params)
@@ -1113,6 +1116,7 @@ module TencentCloud
1113
1116
  end
1114
1117
  end
1115
1118
  @FinanceStatus = params['FinanceStatus']
1119
+ @ToolSource = params['ToolSource']
1116
1120
  end
1117
1121
  end
1118
1122
 
@@ -1839,10 +1843,13 @@ module TencentCloud
1839
1843
  # @param Children: 子分类
1840
1844
  # 注意:此字段可能返回 null,表示取不到有效值。
1841
1845
  # @type Children: Array
1846
+ # @param IsLeaf: 是否为叶子节点
1847
+ # 注意:此字段可能返回 null,表示取不到有效值。
1848
+ # @type IsLeaf: Boolean
1842
1849
 
1843
- attr_accessor :CateBizId, :Name, :Total, :CanAdd, :CanEdit, :CanDelete, :Children
1850
+ attr_accessor :CateBizId, :Name, :Total, :CanAdd, :CanEdit, :CanDelete, :Children, :IsLeaf
1844
1851
 
1845
- def initialize(catebizid=nil, name=nil, total=nil, canadd=nil, canedit=nil, candelete=nil, children=nil)
1852
+ def initialize(catebizid=nil, name=nil, total=nil, canadd=nil, canedit=nil, candelete=nil, children=nil, isleaf=nil)
1846
1853
  @CateBizId = catebizid
1847
1854
  @Name = name
1848
1855
  @Total = total
@@ -1850,6 +1857,7 @@ module TencentCloud
1850
1857
  @CanEdit = canedit
1851
1858
  @CanDelete = candelete
1852
1859
  @Children = children
1860
+ @IsLeaf = isleaf
1853
1861
  end
1854
1862
 
1855
1863
  def deserialize(params)
@@ -1867,6 +1875,7 @@ module TencentCloud
1867
1875
  @Children << cateinfo_tmp
1868
1876
  end
1869
1877
  end
1878
+ @IsLeaf = params['IsLeaf']
1870
1879
  end
1871
1880
  end
1872
1881
 
@@ -2593,8 +2602,8 @@ module TencentCloud
2593
2602
 
2594
2603
  attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :KnowledgeType
2595
2604
  extend Gem::Deprecate
2596
- deprecate :EmbeddingModel, :none, 2025, 10
2597
- deprecate :EmbeddingModel=, :none, 2025, 10
2605
+ deprecate :EmbeddingModel, :none, 2025, 11
2606
+ deprecate :EmbeddingModel=, :none, 2025, 11
2598
2607
 
2599
2608
  def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, knowledgetype=nil)
2600
2609
  @KnowledgeName = knowledgename
@@ -7054,10 +7063,10 @@ module TencentCloud
7054
7063
 
7055
7064
  attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :OwnerStaffId
7056
7065
  extend Gem::Deprecate
7057
- deprecate :EmbeddingModel, :none, 2025, 10
7058
- deprecate :EmbeddingModel=, :none, 2025, 10
7059
- deprecate :QaExtractModel, :none, 2025, 10
7060
- deprecate :QaExtractModel=, :none, 2025, 10
7066
+ deprecate :EmbeddingModel, :none, 2025, 11
7067
+ deprecate :EmbeddingModel=, :none, 2025, 11
7068
+ deprecate :QaExtractModel, :none, 2025, 11
7069
+ deprecate :QaExtractModel=, :none, 2025, 11
7061
7070
 
7062
7071
  def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, ownerstaffid=nil)
7063
7072
  @KnowledgeName = knowledgename
@@ -7338,8 +7347,8 @@ module TencentCloud
7338
7347
 
7339
7348
  attr_accessor :AppBizId, :BotBizId, :PageNumber, :PageSize, :ChannelType, :ChannelStatus
7340
7349
  extend Gem::Deprecate
7341
- deprecate :BotBizId, :none, 2025, 10
7342
- deprecate :BotBizId=, :none, 2025, 10
7350
+ deprecate :BotBizId, :none, 2025, 11
7351
+ deprecate :BotBizId=, :none, 2025, 11
7343
7352
 
7344
7353
  def initialize(appbizid=nil, botbizid=nil, pagenumber=nil, pagesize=nil, channeltype=nil, channelstatus=nil)
7345
7354
  @AppBizId = appbizid
@@ -7395,15 +7404,35 @@ module TencentCloud
7395
7404
  class ListDocCateRequest < TencentCloud::Common::AbstractModel
7396
7405
  # @param BotBizId: 应用ID
7397
7406
  # @type BotBizId: String
7407
+ # @param QueryType: 分类查询类型:0-全量查询整棵标签树,1-根据父节点BizId分页查询子节点,2-关键词检索所有匹配的分类链路
7408
+ # @type QueryType: Integer
7409
+ # @param ParentCateBizId: QueryType=1时,父节点分类ID
7410
+ # @type ParentCateBizId: String
7411
+ # @param PageNumber: QueryType=1时,页码(从1开始)
7412
+ # @type PageNumber: Integer
7413
+ # @param PageSize: 每页数量(默认10)
7414
+ # @type PageSize: Integer
7415
+ # @param Query: QueryType=2时,搜索内容
7416
+ # @type Query: String
7398
7417
 
7399
- attr_accessor :BotBizId
7418
+ attr_accessor :BotBizId, :QueryType, :ParentCateBizId, :PageNumber, :PageSize, :Query
7400
7419
 
7401
- def initialize(botbizid=nil)
7420
+ def initialize(botbizid=nil, querytype=nil, parentcatebizid=nil, pagenumber=nil, pagesize=nil, query=nil)
7402
7421
  @BotBizId = botbizid
7422
+ @QueryType = querytype
7423
+ @ParentCateBizId = parentcatebizid
7424
+ @PageNumber = pagenumber
7425
+ @PageSize = pagesize
7426
+ @Query = query
7403
7427
  end
7404
7428
 
7405
7429
  def deserialize(params)
7406
7430
  @BotBizId = params['BotBizId']
7431
+ @QueryType = params['QueryType']
7432
+ @ParentCateBizId = params['ParentCateBizId']
7433
+ @PageNumber = params['PageNumber']
7434
+ @PageSize = params['PageSize']
7435
+ @Query = params['Query']
7407
7436
  end
7408
7437
  end
7409
7438
 
@@ -7783,15 +7812,35 @@ module TencentCloud
7783
7812
  class ListQACateRequest < TencentCloud::Common::AbstractModel
7784
7813
  # @param BotBizId: 应用ID
7785
7814
  # @type BotBizId: String
7815
+ # @param QueryType: 分类查询类型:0-全量查询整棵标签树,1-根据父节点BizId分页查询子节点,2-关键词检索所有匹配的分类链路
7816
+ # @type QueryType: Integer
7817
+ # @param ParentCateBizId: QueryType=1时,父节点分类ID
7818
+ # @type ParentCateBizId: String
7819
+ # @param PageNumber: QueryType=1时,页码(从1开始)
7820
+ # @type PageNumber: Integer
7821
+ # @param PageSize: 每页数量(默认10)
7822
+ # @type PageSize: Integer
7823
+ # @param Query: QueryType=2时,搜索内容
7824
+ # @type Query: String
7786
7825
 
7787
- attr_accessor :BotBizId
7826
+ attr_accessor :BotBizId, :QueryType, :ParentCateBizId, :PageNumber, :PageSize, :Query
7788
7827
 
7789
- def initialize(botbizid=nil)
7828
+ def initialize(botbizid=nil, querytype=nil, parentcatebizid=nil, pagenumber=nil, pagesize=nil, query=nil)
7790
7829
  @BotBizId = botbizid
7830
+ @QueryType = querytype
7831
+ @ParentCateBizId = parentcatebizid
7832
+ @PageNumber = pagenumber
7833
+ @PageSize = pagesize
7834
+ @Query = query
7791
7835
  end
7792
7836
 
7793
7837
  def deserialize(params)
7794
7838
  @BotBizId = params['BotBizId']
7839
+ @QueryType = params['QueryType']
7840
+ @ParentCateBizId = params['ParentCateBizId']
7841
+ @PageNumber = params['PageNumber']
7842
+ @PageSize = params['PageSize']
7843
+ @Query = params['Query']
7795
7844
  end
7796
7845
  end
7797
7846
 
@@ -10509,10 +10558,13 @@ module TencentCloud
10509
10558
  # @param Children: 子分类
10510
10559
  # 注意:此字段可能返回 null,表示取不到有效值。
10511
10560
  # @type Children: Array
10561
+ # @param IsLeaf: 是否是叶子节点
10562
+ # 注意:此字段可能返回 null,表示取不到有效值。
10563
+ # @type IsLeaf: Boolean
10512
10564
 
10513
- attr_accessor :CateBizId, :Name, :Total, :CanAdd, :CanEdit, :CanDelete, :Children
10565
+ attr_accessor :CateBizId, :Name, :Total, :CanAdd, :CanEdit, :CanDelete, :Children, :IsLeaf
10514
10566
 
10515
- def initialize(catebizid=nil, name=nil, total=nil, canadd=nil, canedit=nil, candelete=nil, children=nil)
10567
+ def initialize(catebizid=nil, name=nil, total=nil, canadd=nil, canedit=nil, candelete=nil, children=nil, isleaf=nil)
10516
10568
  @CateBizId = catebizid
10517
10569
  @Name = name
10518
10570
  @Total = total
@@ -10520,6 +10572,7 @@ module TencentCloud
10520
10572
  @CanEdit = canedit
10521
10573
  @CanDelete = candelete
10522
10574
  @Children = children
10575
+ @IsLeaf = isleaf
10523
10576
  end
10524
10577
 
10525
10578
  def deserialize(params)
@@ -10537,6 +10590,7 @@ module TencentCloud
10537
10590
  @Children << qacate_tmp
10538
10591
  end
10539
10592
  end
10593
+ @IsLeaf = params['IsLeaf']
10540
10594
  end
10541
10595
  end
10542
10596
 
@@ -10669,14 +10723,17 @@ module TencentCloud
10669
10723
  # @type Score: Integer
10670
10724
  # @param Reasons: 原因,只有Score参数为2即点踩的时候才需要输入
10671
10725
  # @type Reasons: Array
10726
+ # @param FeedbackContent: 用户自定义反馈内容
10727
+ # @type FeedbackContent: String
10672
10728
 
10673
- attr_accessor :BotAppKey, :RecordId, :Score, :Reasons
10729
+ attr_accessor :BotAppKey, :RecordId, :Score, :Reasons, :FeedbackContent
10674
10730
 
10675
- def initialize(botappkey=nil, recordid=nil, score=nil, reasons=nil)
10731
+ def initialize(botappkey=nil, recordid=nil, score=nil, reasons=nil, feedbackcontent=nil)
10676
10732
  @BotAppKey = botappkey
10677
10733
  @RecordId = recordid
10678
10734
  @Score = score
10679
10735
  @Reasons = reasons
10736
+ @FeedbackContent = feedbackcontent
10680
10737
  end
10681
10738
 
10682
10739
  def deserialize(params)
@@ -10684,6 +10741,7 @@ module TencentCloud
10684
10741
  @RecordId = params['RecordId']
10685
10742
  @Score = params['Score']
10686
10743
  @Reasons = params['Reasons']
10744
+ @FeedbackContent = params['FeedbackContent']
10687
10745
  end
10688
10746
  end
10689
10747
 
@@ -12213,10 +12271,12 @@ module TencentCloud
12213
12271
  # @type UpdateTime: String
12214
12272
  # @param Operator: 操作人
12215
12273
  # @type Operator: String
12274
+ # @param FeedbackContent: 自定义反馈
12275
+ # @type FeedbackContent: String
12216
12276
 
12217
- attr_accessor :ReplyBizId, :RecordBizId, :Question, :Answer, :Reasons, :Status, :CreateTime, :UpdateTime, :Operator
12277
+ attr_accessor :ReplyBizId, :RecordBizId, :Question, :Answer, :Reasons, :Status, :CreateTime, :UpdateTime, :Operator, :FeedbackContent
12218
12278
 
12219
- def initialize(replybizid=nil, recordbizid=nil, question=nil, answer=nil, reasons=nil, status=nil, createtime=nil, updatetime=nil, operator=nil)
12279
+ def initialize(replybizid=nil, recordbizid=nil, question=nil, answer=nil, reasons=nil, status=nil, createtime=nil, updatetime=nil, operator=nil, feedbackcontent=nil)
12220
12280
  @ReplyBizId = replybizid
12221
12281
  @RecordBizId = recordbizid
12222
12282
  @Question = question
@@ -12226,6 +12286,7 @@ module TencentCloud
12226
12286
  @CreateTime = createtime
12227
12287
  @UpdateTime = updatetime
12228
12288
  @Operator = operator
12289
+ @FeedbackContent = feedbackcontent
12229
12290
  end
12230
12291
 
12231
12292
  def deserialize(params)
@@ -12238,6 +12299,7 @@ module TencentCloud
12238
12299
  @CreateTime = params['CreateTime']
12239
12300
  @UpdateTime = params['UpdateTime']
12240
12301
  @Operator = params['Operator']
12302
+ @FeedbackContent = params['FeedbackContent']
12241
12303
  end
12242
12304
  end
12243
12305
 
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.1160
4
+ version: 3.0.1169
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-10-28 00:00:00.000000000 Z
11
+ date: 2025-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -34,8 +34,8 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - lib/tencentcloud-sdk-lke.rb
37
- - lib/v20231130/models.rb
38
37
  - lib/v20231130/client.rb
38
+ - lib/v20231130/models.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: