tencentcloud-sdk-lke 3.0.1199 → 3.0.1205
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 +95 -6
- 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: f5567fc8ab5ceef0e46a4b81f6727741ea953f24
|
|
4
|
+
data.tar.gz: f4ef7cdd17df49eac37ed04dda7c66275302c056
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53e9c2da13a61d2d12d2862d0eee32845f37483c309fe2295d4da75556fe3e66f9e61d1724b3aa54bb97a1600f6c786454003c0787b88a609b16479c2c3f5717
|
|
7
|
+
data.tar.gz: 3c1a45151c70898cccbd1565196204f4b89b8f2b2e8732ca1f03fcde409a9bfae66078c29395cf0d113bbdcedeec150d7f6a1503373fc2a3498dbb42a4d6e3cc
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1205
|
data/lib/v20231130/models.rb
CHANGED
|
@@ -1112,10 +1112,14 @@ module TencentCloud
|
|
|
1112
1112
|
# @type FinanceType: Integer
|
|
1113
1113
|
# @param ToolAdvanceConfig: 工具高级设置
|
|
1114
1114
|
# @type ToolAdvanceConfig: :class:`Tencentcloud::Lke.v20231130.models.ToolAdvanceConfig`
|
|
1115
|
+
# @param AuthMode: 授权模式; 0-开发者授权;1-使用者授权
|
|
1116
|
+
# @type AuthMode: Integer
|
|
1117
|
+
# @param AuthType: 授权类型; 0-无鉴权;1-APIKey;2-CAM授权;3-Oauth2.0授权;
|
|
1118
|
+
# @type AuthType: Integer
|
|
1115
1119
|
|
|
1116
|
-
attr_accessor :PluginId, :PluginName, :IconUrl, :PluginType, :ToolId, :ToolName, :ToolDesc, :Inputs, :Outputs, :CreateType, :McpServer, :IsBindingKnowledge, :Status, :Headers, :CallingMethod, :Query, :FinanceStatus, :ToolSource, :FinanceType, :ToolAdvanceConfig
|
|
1120
|
+
attr_accessor :PluginId, :PluginName, :IconUrl, :PluginType, :ToolId, :ToolName, :ToolDesc, :Inputs, :Outputs, :CreateType, :McpServer, :IsBindingKnowledge, :Status, :Headers, :CallingMethod, :Query, :FinanceStatus, :ToolSource, :FinanceType, :ToolAdvanceConfig, :AuthMode, :AuthType
|
|
1117
1121
|
|
|
1118
|
-
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, financetype=nil, tooladvanceconfig=nil)
|
|
1122
|
+
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, financetype=nil, tooladvanceconfig=nil, authmode=nil, authtype=nil)
|
|
1119
1123
|
@PluginId = pluginid
|
|
1120
1124
|
@PluginName = pluginname
|
|
1121
1125
|
@IconUrl = iconurl
|
|
@@ -1136,6 +1140,8 @@ module TencentCloud
|
|
|
1136
1140
|
@ToolSource = toolsource
|
|
1137
1141
|
@FinanceType = financetype
|
|
1138
1142
|
@ToolAdvanceConfig = tooladvanceconfig
|
|
1143
|
+
@AuthMode = authmode
|
|
1144
|
+
@AuthType = authtype
|
|
1139
1145
|
end
|
|
1140
1146
|
|
|
1141
1147
|
def deserialize(params)
|
|
@@ -1193,6 +1199,8 @@ module TencentCloud
|
|
|
1193
1199
|
@ToolAdvanceConfig = ToolAdvanceConfig.new
|
|
1194
1200
|
@ToolAdvanceConfig.deserialize(params['ToolAdvanceConfig'])
|
|
1195
1201
|
end
|
|
1202
|
+
@AuthMode = params['AuthMode']
|
|
1203
|
+
@AuthType = params['AuthType']
|
|
1196
1204
|
end
|
|
1197
1205
|
end
|
|
1198
1206
|
|
|
@@ -1791,6 +1799,70 @@ module TencentCloud
|
|
|
1791
1799
|
end
|
|
1792
1800
|
end
|
|
1793
1801
|
|
|
1802
|
+
# 音频信息
|
|
1803
|
+
class Audio < TencentCloud::Common::AbstractModel
|
|
1804
|
+
# @param Format: 音频文件格式
|
|
1805
|
+
# @type Format: String
|
|
1806
|
+
# @param AudioUrl: 音频文件地址
|
|
1807
|
+
# @type AudioUrl: String
|
|
1808
|
+
# @param Title: 音频标题
|
|
1809
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1810
|
+
# @type Title: String
|
|
1811
|
+
# @param Position: 音频文件在正文中的位置
|
|
1812
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1813
|
+
# @type Position: Integer
|
|
1814
|
+
# @param AudioTranscripts: 音频转录后的文字列表
|
|
1815
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1816
|
+
# @type AudioTranscripts: Array
|
|
1817
|
+
|
|
1818
|
+
attr_accessor :Format, :AudioUrl, :Title, :Position, :AudioTranscripts
|
|
1819
|
+
|
|
1820
|
+
def initialize(format=nil, audiourl=nil, title=nil, position=nil, audiotranscripts=nil)
|
|
1821
|
+
@Format = format
|
|
1822
|
+
@AudioUrl = audiourl
|
|
1823
|
+
@Title = title
|
|
1824
|
+
@Position = position
|
|
1825
|
+
@AudioTranscripts = audiotranscripts
|
|
1826
|
+
end
|
|
1827
|
+
|
|
1828
|
+
def deserialize(params)
|
|
1829
|
+
@Format = params['Format']
|
|
1830
|
+
@AudioUrl = params['AudioUrl']
|
|
1831
|
+
@Title = params['Title']
|
|
1832
|
+
@Position = params['Position']
|
|
1833
|
+
unless params['AudioTranscripts'].nil?
|
|
1834
|
+
@AudioTranscripts = []
|
|
1835
|
+
params['AudioTranscripts'].each do |i|
|
|
1836
|
+
audiotranscript_tmp = AudioTranscript.new
|
|
1837
|
+
audiotranscript_tmp.deserialize(i)
|
|
1838
|
+
@AudioTranscripts << audiotranscript_tmp
|
|
1839
|
+
end
|
|
1840
|
+
end
|
|
1841
|
+
end
|
|
1842
|
+
end
|
|
1843
|
+
|
|
1844
|
+
# 音频转录的文本内容
|
|
1845
|
+
class AudioTranscript < TencentCloud::Common::AbstractModel
|
|
1846
|
+
# @param Speaker: 音频的发言者
|
|
1847
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1848
|
+
# @type Speaker: String
|
|
1849
|
+
# @param Transcript: 音频转录为文字后的内容
|
|
1850
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1851
|
+
# @type Transcript: String
|
|
1852
|
+
|
|
1853
|
+
attr_accessor :Speaker, :Transcript
|
|
1854
|
+
|
|
1855
|
+
def initialize(speaker=nil, transcript=nil)
|
|
1856
|
+
@Speaker = speaker
|
|
1857
|
+
@Transcript = transcript
|
|
1858
|
+
end
|
|
1859
|
+
|
|
1860
|
+
def deserialize(params)
|
|
1861
|
+
@Speaker = params['Speaker']
|
|
1862
|
+
@Transcript = params['Transcript']
|
|
1863
|
+
end
|
|
1864
|
+
end
|
|
1865
|
+
|
|
1794
1866
|
# 背景图相关配置
|
|
1795
1867
|
class BackgroundImageConfig < TencentCloud::Common::AbstractModel
|
|
1796
1868
|
# @param LandscapeImageUrl: 横图(pc)
|
|
@@ -8794,13 +8866,17 @@ module TencentCloud
|
|
|
8794
8866
|
class ListReferShareKnowledgeResponse < TencentCloud::Common::AbstractModel
|
|
8795
8867
|
# @param List: 共享知识库信息列表
|
|
8796
8868
|
# @type List: Array
|
|
8869
|
+
# @param Total: 共享知识库数量
|
|
8870
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8871
|
+
# @type Total: String
|
|
8797
8872
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8798
8873
|
# @type RequestId: String
|
|
8799
8874
|
|
|
8800
|
-
attr_accessor :List, :RequestId
|
|
8875
|
+
attr_accessor :List, :Total, :RequestId
|
|
8801
8876
|
|
|
8802
|
-
def initialize(list=nil, requestid=nil)
|
|
8877
|
+
def initialize(list=nil, total=nil, requestid=nil)
|
|
8803
8878
|
@List = list
|
|
8879
|
+
@Total = total
|
|
8804
8880
|
@RequestId = requestid
|
|
8805
8881
|
end
|
|
8806
8882
|
|
|
@@ -8813,6 +8889,7 @@ module TencentCloud
|
|
|
8813
8889
|
@List << knowledgebaseinfo_tmp
|
|
8814
8890
|
end
|
|
8815
8891
|
end
|
|
8892
|
+
@Total = params['Total']
|
|
8816
8893
|
@RequestId = params['RequestId']
|
|
8817
8894
|
end
|
|
8818
8895
|
end
|
|
@@ -10598,10 +10675,13 @@ module TencentCloud
|
|
|
10598
10675
|
# @param WidgetAction: Widget动作信息
|
|
10599
10676
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10600
10677
|
# @type WidgetAction: :class:`Tencentcloud::Lke.v20231130.models.WidgetAction`
|
|
10678
|
+
# @param Audios: 音频信息
|
|
10679
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10680
|
+
# @type Audios: Array
|
|
10601
10681
|
|
|
10602
|
-
attr_accessor :Content, :SessionId, :RecordId, :RelatedRecordId, :IsFromSelf, :FromName, :FromAvatar, :Timestamp, :HasRead, :Score, :CanRating, :CanFeedback, :Type, :References, :Reasons, :IsLlmGenerated, :ImageUrls, :TokenStat, :ReplyMethod, :OptionCards, :TaskFlow, :FileInfos, :QuoteInfos, :AgentThought, :ExtraInfo, :WorkFlow, :Widgets, :WidgetAction
|
|
10682
|
+
attr_accessor :Content, :SessionId, :RecordId, :RelatedRecordId, :IsFromSelf, :FromName, :FromAvatar, :Timestamp, :HasRead, :Score, :CanRating, :CanFeedback, :Type, :References, :Reasons, :IsLlmGenerated, :ImageUrls, :TokenStat, :ReplyMethod, :OptionCards, :TaskFlow, :FileInfos, :QuoteInfos, :AgentThought, :ExtraInfo, :WorkFlow, :Widgets, :WidgetAction, :Audios
|
|
10603
10683
|
|
|
10604
|
-
def initialize(content=nil, sessionid=nil, recordid=nil, relatedrecordid=nil, isfromself=nil, fromname=nil, fromavatar=nil, timestamp=nil, hasread=nil, score=nil, canrating=nil, canfeedback=nil, type=nil, references=nil, reasons=nil, isllmgenerated=nil, imageurls=nil, tokenstat=nil, replymethod=nil, optioncards=nil, taskflow=nil, fileinfos=nil, quoteinfos=nil, agentthought=nil, extrainfo=nil, workflow=nil, widgets=nil, widgetaction=nil)
|
|
10684
|
+
def initialize(content=nil, sessionid=nil, recordid=nil, relatedrecordid=nil, isfromself=nil, fromname=nil, fromavatar=nil, timestamp=nil, hasread=nil, score=nil, canrating=nil, canfeedback=nil, type=nil, references=nil, reasons=nil, isllmgenerated=nil, imageurls=nil, tokenstat=nil, replymethod=nil, optioncards=nil, taskflow=nil, fileinfos=nil, quoteinfos=nil, agentthought=nil, extrainfo=nil, workflow=nil, widgets=nil, widgetaction=nil, audios=nil)
|
|
10605
10685
|
@Content = content
|
|
10606
10686
|
@SessionId = sessionid
|
|
10607
10687
|
@RecordId = recordid
|
|
@@ -10630,6 +10710,7 @@ module TencentCloud
|
|
|
10630
10710
|
@WorkFlow = workflow
|
|
10631
10711
|
@Widgets = widgets
|
|
10632
10712
|
@WidgetAction = widgetaction
|
|
10713
|
+
@Audios = audios
|
|
10633
10714
|
end
|
|
10634
10715
|
|
|
10635
10716
|
def deserialize(params)
|
|
@@ -10707,6 +10788,14 @@ module TencentCloud
|
|
|
10707
10788
|
@WidgetAction = WidgetAction.new
|
|
10708
10789
|
@WidgetAction.deserialize(params['WidgetAction'])
|
|
10709
10790
|
end
|
|
10791
|
+
unless params['Audios'].nil?
|
|
10792
|
+
@Audios = []
|
|
10793
|
+
params['Audios'].each do |i|
|
|
10794
|
+
audio_tmp = Audio.new
|
|
10795
|
+
audio_tmp.deserialize(i)
|
|
10796
|
+
@Audios << audio_tmp
|
|
10797
|
+
end
|
|
10798
|
+
end
|
|
10710
10799
|
end
|
|
10711
10800
|
end
|
|
10712
10801
|
|
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.1205
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|