tencentcloud-sdk-lke 3.0.1194 → 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 +111 -13
- metadata +3 -3
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)
|
|
@@ -8198,13 +8270,15 @@ module TencentCloud
|
|
|
8198
8270
|
# @type IsDisabled: Boolean
|
|
8199
8271
|
# @param StaffName: 员工名称
|
|
8200
8272
|
# @type StaffName: String
|
|
8201
|
-
# @param EnableScope: 文档生效域: 1
|
|
8273
|
+
# @param EnableScope: 文档生效域: 1-不生效;2-仅开发域生效;3-仅发布域生效;4-开发域和发布域均生效
|
|
8202
8274
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8203
8275
|
# @type EnableScope: Integer
|
|
8276
|
+
# @param DocSize: 文档大小,单位:字节
|
|
8277
|
+
# @type DocSize: String
|
|
8204
8278
|
|
|
8205
|
-
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, :StaffName, :EnableScope
|
|
8279
|
+
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, :StaffName, :EnableScope, :DocSize
|
|
8206
8280
|
|
|
8207
|
-
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, staffname=nil, enablescope=nil)
|
|
8281
|
+
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, staffname=nil, enablescope=nil, docsize=nil)
|
|
8208
8282
|
@DocBizId = docbizid
|
|
8209
8283
|
@FileName = filename
|
|
8210
8284
|
@NewName = newname
|
|
@@ -8242,6 +8316,7 @@ module TencentCloud
|
|
|
8242
8316
|
@IsDisabled = isdisabled
|
|
8243
8317
|
@StaffName = staffname
|
|
8244
8318
|
@EnableScope = enablescope
|
|
8319
|
+
@DocSize = docsize
|
|
8245
8320
|
end
|
|
8246
8321
|
|
|
8247
8322
|
def deserialize(params)
|
|
@@ -8289,6 +8364,7 @@ module TencentCloud
|
|
|
8289
8364
|
@IsDisabled = params['IsDisabled']
|
|
8290
8365
|
@StaffName = params['StaffName']
|
|
8291
8366
|
@EnableScope = params['EnableScope']
|
|
8367
|
+
@DocSize = params['DocSize']
|
|
8292
8368
|
end
|
|
8293
8369
|
end
|
|
8294
8370
|
|
|
@@ -8683,15 +8759,18 @@ module TencentCloud
|
|
|
8683
8759
|
# @type IsDisabled: Boolean
|
|
8684
8760
|
# @param StaffName: 员工名称
|
|
8685
8761
|
# @type StaffName: String
|
|
8686
|
-
# @param EnableScope: 问答生效域: 1
|
|
8762
|
+
# @param EnableScope: 问答生效域: 1-不生效;2-仅开发域生效;3-仅发布域生效;4-开发域和发布域均生效
|
|
8687
8763
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8688
8764
|
# @type EnableScope: Integer
|
|
8689
|
-
# @param DocEnableScope:
|
|
8765
|
+
# @param DocEnableScope: 问答关联的文档生效域:1-不生效;2-仅开发域生效;3-仅发布域生效;4-开发域和发布域均生效。
|
|
8766
|
+
# 若问答未关联文档,则该字段值同问答生效域。
|
|
8690
8767
|
# @type DocEnableScope: Integer
|
|
8768
|
+
# @param QaSize: 问答大小(含相似问),单位:字节
|
|
8769
|
+
# @type QaSize: String
|
|
8691
8770
|
|
|
8692
|
-
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, :StaffName, :EnableScope, :DocEnableScope
|
|
8771
|
+
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, :StaffName, :EnableScope, :DocEnableScope, :QaSize
|
|
8693
8772
|
|
|
8694
|
-
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, staffname=nil, enablescope=nil, docenablescope=nil)
|
|
8773
|
+
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, staffname=nil, enablescope=nil, docenablescope=nil, qasize=nil)
|
|
8695
8774
|
@QaBizId = qabizid
|
|
8696
8775
|
@Question = question
|
|
8697
8776
|
@Answer = answer
|
|
@@ -8718,6 +8797,7 @@ module TencentCloud
|
|
|
8718
8797
|
@StaffName = staffname
|
|
8719
8798
|
@EnableScope = enablescope
|
|
8720
8799
|
@DocEnableScope = docenablescope
|
|
8800
|
+
@QaSize = qasize
|
|
8721
8801
|
end
|
|
8722
8802
|
|
|
8723
8803
|
def deserialize(params)
|
|
@@ -8754,6 +8834,7 @@ module TencentCloud
|
|
|
8754
8834
|
@StaffName = params['StaffName']
|
|
8755
8835
|
@EnableScope = params['EnableScope']
|
|
8756
8836
|
@DocEnableScope = params['DocEnableScope']
|
|
8837
|
+
@QaSize = params['QaSize']
|
|
8757
8838
|
end
|
|
8758
8839
|
end
|
|
8759
8840
|
|
|
@@ -8785,13 +8866,17 @@ module TencentCloud
|
|
|
8785
8866
|
class ListReferShareKnowledgeResponse < TencentCloud::Common::AbstractModel
|
|
8786
8867
|
# @param List: 共享知识库信息列表
|
|
8787
8868
|
# @type List: Array
|
|
8869
|
+
# @param Total: 共享知识库数量
|
|
8870
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8871
|
+
# @type Total: String
|
|
8788
8872
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8789
8873
|
# @type RequestId: String
|
|
8790
8874
|
|
|
8791
|
-
attr_accessor :List, :RequestId
|
|
8875
|
+
attr_accessor :List, :Total, :RequestId
|
|
8792
8876
|
|
|
8793
|
-
def initialize(list=nil, requestid=nil)
|
|
8877
|
+
def initialize(list=nil, total=nil, requestid=nil)
|
|
8794
8878
|
@List = list
|
|
8879
|
+
@Total = total
|
|
8795
8880
|
@RequestId = requestid
|
|
8796
8881
|
end
|
|
8797
8882
|
|
|
@@ -8804,6 +8889,7 @@ module TencentCloud
|
|
|
8804
8889
|
@List << knowledgebaseinfo_tmp
|
|
8805
8890
|
end
|
|
8806
8891
|
end
|
|
8892
|
+
@Total = params['Total']
|
|
8807
8893
|
@RequestId = params['RequestId']
|
|
8808
8894
|
end
|
|
8809
8895
|
end
|
|
@@ -10589,10 +10675,13 @@ module TencentCloud
|
|
|
10589
10675
|
# @param WidgetAction: Widget动作信息
|
|
10590
10676
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10591
10677
|
# @type WidgetAction: :class:`Tencentcloud::Lke.v20231130.models.WidgetAction`
|
|
10678
|
+
# @param Audios: 音频信息
|
|
10679
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10680
|
+
# @type Audios: Array
|
|
10592
10681
|
|
|
10593
|
-
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
|
|
10594
10683
|
|
|
10595
|
-
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)
|
|
10596
10685
|
@Content = content
|
|
10597
10686
|
@SessionId = sessionid
|
|
10598
10687
|
@RecordId = recordid
|
|
@@ -10621,6 +10710,7 @@ module TencentCloud
|
|
|
10621
10710
|
@WorkFlow = workflow
|
|
10622
10711
|
@Widgets = widgets
|
|
10623
10712
|
@WidgetAction = widgetaction
|
|
10713
|
+
@Audios = audios
|
|
10624
10714
|
end
|
|
10625
10715
|
|
|
10626
10716
|
def deserialize(params)
|
|
@@ -10698,6 +10788,14 @@ module TencentCloud
|
|
|
10698
10788
|
@WidgetAction = WidgetAction.new
|
|
10699
10789
|
@WidgetAction.deserialize(params['WidgetAction'])
|
|
10700
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
|
|
10701
10799
|
end
|
|
10702
10800
|
end
|
|
10703
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:
|
|
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
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-lke.rb
|
|
36
37
|
- lib/v20231130/client.rb
|
|
37
38
|
- lib/v20231130/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-lke.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|