tencentcloud-sdk-lkeap 3.0.1094 → 3.0.1102
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/v20240522/client.rb +3 -0
- data/lib/v20240522/models.rb +92 -48
- 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: 6b7566ec6a20b7f9b96440cca905f1c834c58866
|
4
|
+
data.tar.gz: a741572843d5738a8a2edbd47f374c2b433b30a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b81012bd1d22b6879ed8e4379a79897d447d25359de48ccee308bc8a93bb141d6d2f19069bc23aed6df28e4b2744ce0e6ef1036e1590d1eee9386d2ac00ea6c
|
7
|
+
data.tar.gz: 93ff47512c8cf078df59dd29ad524641ce8468c4276cd38edf8fee46a5f4a646356d3d94d319466d8f01c98cbeee69c85d8b9e9fd1498498706b20df92820a95
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1102
|
data/lib/v20240522/client.rb
CHANGED
@@ -675,6 +675,9 @@ module TencentCloud
|
|
675
675
|
end
|
676
676
|
|
677
677
|
# 准实时文档解析接口,使用HTTP SSE 协议通信。
|
678
|
+
# 支持将图片或PDF文件转换成Markdown格式文件,可解析包括表格、公式、图片、标题、段落、页眉、页脚等内容元素,并将内容智能转换成阅读顺序。
|
679
|
+
# 输入:pdf、ppt、docx、doc、jpg等
|
680
|
+
# 输出:正常阅读顺序的md文件、识别结果的json(可选)等
|
678
681
|
|
679
682
|
# @param request: Request instance for ReconstructDocumentSSE.
|
680
683
|
# @type request: :class:`Tencentcloud::lkeap::V20240522::ReconstructDocumentSSERequest`
|
data/lib/v20240522/models.rb
CHANGED
@@ -406,17 +406,21 @@ module TencentCloud
|
|
406
406
|
# 4:返回全文MD + 每一页的MD,
|
407
407
|
# 默认值为0
|
408
408
|
# @type ResultType: String
|
409
|
+
# @param IgnoreFailedPage: 是否忽略失败页,返回已成功的页数据。默认为true。
|
410
|
+
# @type IgnoreFailedPage: Boolean
|
409
411
|
|
410
|
-
attr_accessor :TableResultType, :ResultType
|
412
|
+
attr_accessor :TableResultType, :ResultType, :IgnoreFailedPage
|
411
413
|
|
412
|
-
def initialize(tableresulttype=nil, resulttype=nil)
|
414
|
+
def initialize(tableresulttype=nil, resulttype=nil, ignorefailedpage=nil)
|
413
415
|
@TableResultType = tableresulttype
|
414
416
|
@ResultType = resulttype
|
417
|
+
@IgnoreFailedPage = ignorefailedpage
|
415
418
|
end
|
416
419
|
|
417
420
|
def deserialize(params)
|
418
421
|
@TableResultType = params['TableResultType']
|
419
422
|
@ResultType = params['ResultType']
|
423
|
+
@IgnoreFailedPage = params['IgnoreFailedPage']
|
420
424
|
end
|
421
425
|
end
|
422
426
|
|
@@ -433,8 +437,8 @@ module TencentCloud
|
|
433
437
|
# - `TXT`、`MD` 最大10M
|
434
438
|
# - 其他 最大20M
|
435
439
|
# @type FileType: String
|
436
|
-
# @param FileUrl:
|
437
|
-
#
|
440
|
+
# @param FileUrl: 说明:文件的 URL 地址。
|
441
|
+
# 备注:文件存储于腾讯云的 URL 可保障更高的下载速度和稳定性,建议文件存储于腾讯云。 非腾讯云存储的 URL 速度和稳定性可能受一定影响。
|
438
442
|
# 参考:[腾讯云COS文档](https://cloud.tencent.com/document/product/436/7749)
|
439
443
|
# @type FileUrl: String
|
440
444
|
# @param FileBase64: 文件的 Base64 值。
|
@@ -443,13 +447,17 @@ module TencentCloud
|
|
443
447
|
# 支持的图片像素:单边介于20-10000px之间。
|
444
448
|
# 文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。
|
445
449
|
# @type FileBase64: String
|
446
|
-
# @param FileStartPageNumber:
|
447
|
-
#
|
450
|
+
# @param FileStartPageNumber: 说明:文档的起始页码。
|
451
|
+
# 备注:当传入文件是PDF、PDF、PPT、PPTX、DOC类型时,用来指定识别的起始页码,识别的页码包含当前值。
|
452
|
+
# 默认值:无
|
448
453
|
# @type FileStartPageNumber: Integer
|
449
|
-
# @param FileEndPageNumber:
|
450
|
-
#
|
454
|
+
# @param FileEndPageNumber: 说明:文档的结束页码。
|
455
|
+
# 备注:当传入文件是PDF、PDF、PPT、PPTX、DOC类型时,用来指定识别的结束页码,识别的页码包含当前值。
|
456
|
+
# 默认值:无
|
451
457
|
# @type FileEndPageNumber: Integer
|
452
|
-
# @param Config:
|
458
|
+
# @param Config: 说明:创建文档解析任务配置信息。
|
459
|
+
# 备注:可设置结果的返回格式
|
460
|
+
# 默认值:无
|
453
461
|
# @type Config: :class:`Tencentcloud::Lkeap.v20240522.models.CreateReconstructDocumentFlowConfig`
|
454
462
|
|
455
463
|
attr_accessor :FileType, :FileUrl, :FileBase64, :FileStartPageNumber, :FileEndPageNumber, :Config
|
@@ -516,19 +524,22 @@ module TencentCloud
|
|
516
524
|
# @type EnableMllm: Boolean
|
517
525
|
# @param MaxChunkSize: 最大分片长度
|
518
526
|
# @type MaxChunkSize: Integer
|
527
|
+
# @param IgnoreFailedPage: 是否忽略返回失败页码
|
528
|
+
# @type IgnoreFailedPage: Boolean
|
519
529
|
|
520
|
-
attr_accessor :TableResultType, :ResultType, :EnableMllm, :MaxChunkSize
|
530
|
+
attr_accessor :TableResultType, :ResultType, :EnableMllm, :MaxChunkSize, :IgnoreFailedPage
|
521
531
|
extend Gem::Deprecate
|
522
|
-
deprecate :TableResultType, :none, 2025,
|
523
|
-
deprecate :TableResultType=, :none, 2025,
|
524
|
-
deprecate :ResultType, :none, 2025,
|
525
|
-
deprecate :ResultType=, :none, 2025,
|
532
|
+
deprecate :TableResultType, :none, 2025, 7
|
533
|
+
deprecate :TableResultType=, :none, 2025, 7
|
534
|
+
deprecate :ResultType, :none, 2025, 7
|
535
|
+
deprecate :ResultType=, :none, 2025, 7
|
526
536
|
|
527
|
-
def initialize(tableresulttype=nil, resulttype=nil, enablemllm=nil, maxchunksize=nil)
|
537
|
+
def initialize(tableresulttype=nil, resulttype=nil, enablemllm=nil, maxchunksize=nil, ignorefailedpage=nil)
|
528
538
|
@TableResultType = tableresulttype
|
529
539
|
@ResultType = resulttype
|
530
540
|
@EnableMllm = enablemllm
|
531
541
|
@MaxChunkSize = maxchunksize
|
542
|
+
@IgnoreFailedPage = ignorefailedpage
|
532
543
|
end
|
533
544
|
|
534
545
|
def deserialize(params)
|
@@ -536,6 +547,7 @@ module TencentCloud
|
|
536
547
|
@ResultType = params['ResultType']
|
537
548
|
@EnableMllm = params['EnableMllm']
|
538
549
|
@MaxChunkSize = params['MaxChunkSize']
|
550
|
+
@IgnoreFailedPage = params['IgnoreFailedPage']
|
539
551
|
end
|
540
552
|
end
|
541
553
|
|
@@ -575,8 +587,8 @@ module TencentCloud
|
|
575
587
|
|
576
588
|
attr_accessor :FileType, :FileUrl, :FileName, :FileBase64, :FileStartPageNumber, :FileEndPageNumber, :Config
|
577
589
|
extend Gem::Deprecate
|
578
|
-
deprecate :FileBase64, :none, 2025,
|
579
|
-
deprecate :FileBase64=, :none, 2025,
|
590
|
+
deprecate :FileBase64, :none, 2025, 7
|
591
|
+
deprecate :FileBase64=, :none, 2025, 7
|
580
592
|
|
581
593
|
def initialize(filetype=nil, fileurl=nil, filename=nil, filebase64=nil, filestartpagenumber=nil, fileendpagenumber=nil, config=nil)
|
582
594
|
@FileType = filetype
|
@@ -923,18 +935,24 @@ module TencentCloud
|
|
923
935
|
# @type SplitTokens: Integer
|
924
936
|
# @param MllmTokens: mllm消耗的token数
|
925
937
|
# @type MllmTokens: Integer
|
938
|
+
# @param SuccessPageNum: 解析成功页数
|
939
|
+
# @type SuccessPageNum: Integer
|
940
|
+
# @param FailPageNum: 解析失败页数
|
941
|
+
# @type FailPageNum: Integer
|
926
942
|
|
927
|
-
attr_accessor :PageNumber, :TotalToken, :TotalTokens, :SplitTokens, :MllmTokens
|
943
|
+
attr_accessor :PageNumber, :TotalToken, :TotalTokens, :SplitTokens, :MllmTokens, :SuccessPageNum, :FailPageNum
|
928
944
|
extend Gem::Deprecate
|
929
|
-
deprecate :TotalToken, :none, 2025,
|
930
|
-
deprecate :TotalToken=, :none, 2025,
|
945
|
+
deprecate :TotalToken, :none, 2025, 7
|
946
|
+
deprecate :TotalToken=, :none, 2025, 7
|
931
947
|
|
932
|
-
def initialize(pagenumber=nil, totaltoken=nil, totaltokens=nil, splittokens=nil, mllmtokens=nil)
|
948
|
+
def initialize(pagenumber=nil, totaltoken=nil, totaltokens=nil, splittokens=nil, mllmtokens=nil, successpagenum=nil, failpagenum=nil)
|
933
949
|
@PageNumber = pagenumber
|
934
950
|
@TotalToken = totaltoken
|
935
951
|
@TotalTokens = totaltokens
|
936
952
|
@SplitTokens = splittokens
|
937
953
|
@MllmTokens = mllmtokens
|
954
|
+
@SuccessPageNum = successpagenum
|
955
|
+
@FailPageNum = failpagenum
|
938
956
|
end
|
939
957
|
|
940
958
|
def deserialize(params)
|
@@ -943,6 +961,8 @@ module TencentCloud
|
|
943
961
|
@TotalTokens = params['TotalTokens']
|
944
962
|
@SplitTokens = params['SplitTokens']
|
945
963
|
@MllmTokens = params['MllmTokens']
|
964
|
+
@SuccessPageNum = params['SuccessPageNum']
|
965
|
+
@FailPageNum = params['FailPageNum']
|
946
966
|
end
|
947
967
|
end
|
948
968
|
|
@@ -1055,7 +1075,8 @@ module TencentCloud
|
|
1055
1075
|
|
1056
1076
|
# GetReconstructDocumentResult请求参数结构体
|
1057
1077
|
class GetReconstructDocumentResultRequest < TencentCloud::Common::AbstractModel
|
1058
|
-
# @param TaskId:
|
1078
|
+
# @param TaskId: 说明:解析任务ID
|
1079
|
+
# 备注:仅支持单个任务ID
|
1059
1080
|
# @type TaskId: String
|
1060
1081
|
|
1061
1082
|
attr_accessor :TaskId
|
@@ -1082,15 +1103,18 @@ module TencentCloud
|
|
1082
1103
|
# @type DocumentRecognizeResultUrl: String
|
1083
1104
|
# @param FailedPages: 文档解析失败的页码
|
1084
1105
|
# @type FailedPages: Array
|
1106
|
+
# @param Usage: 文档拆分任务的用量
|
1107
|
+
# @type Usage: :class:`Tencentcloud::Lkeap.v20240522.models.DocumentUsage`
|
1085
1108
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1086
1109
|
# @type RequestId: String
|
1087
1110
|
|
1088
|
-
attr_accessor :Status, :DocumentRecognizeResultUrl, :FailedPages, :RequestId
|
1111
|
+
attr_accessor :Status, :DocumentRecognizeResultUrl, :FailedPages, :Usage, :RequestId
|
1089
1112
|
|
1090
|
-
def initialize(status=nil, documentrecognizeresulturl=nil, failedpages=nil, requestid=nil)
|
1113
|
+
def initialize(status=nil, documentrecognizeresulturl=nil, failedpages=nil, usage=nil, requestid=nil)
|
1091
1114
|
@Status = status
|
1092
1115
|
@DocumentRecognizeResultUrl = documentrecognizeresulturl
|
1093
1116
|
@FailedPages = failedpages
|
1117
|
+
@Usage = usage
|
1094
1118
|
@RequestId = requestid
|
1095
1119
|
end
|
1096
1120
|
|
@@ -1105,6 +1129,10 @@ module TencentCloud
|
|
1105
1129
|
@FailedPages << reconstructdocumentfailedpage_tmp
|
1106
1130
|
end
|
1107
1131
|
end
|
1132
|
+
unless params['Usage'].nil?
|
1133
|
+
@Usage = DocumentUsage.new
|
1134
|
+
@Usage.deserialize(params['Usage'])
|
1135
|
+
end
|
1108
1136
|
@RequestId = params['RequestId']
|
1109
1137
|
end
|
1110
1138
|
end
|
@@ -1156,8 +1184,8 @@ module TencentCloud
|
|
1156
1184
|
|
1157
1185
|
attr_accessor :Status, :DocumentRecognizeResultUrl, :FailedPages, :Usage, :RequestId
|
1158
1186
|
extend Gem::Deprecate
|
1159
|
-
deprecate :FailedPages, :none, 2025,
|
1160
|
-
deprecate :FailedPages=, :none, 2025,
|
1187
|
+
deprecate :FailedPages, :none, 2025, 7
|
1188
|
+
deprecate :FailedPages=, :none, 2025, 7
|
1161
1189
|
|
1162
1190
|
def initialize(status=nil, documentrecognizeresulturl=nil, failedpages=nil, usage=nil, requestid=nil)
|
1163
1191
|
@Status = status
|
@@ -1698,14 +1726,17 @@ module TencentCloud
|
|
1698
1726
|
# @type ReturnPageFormat: Boolean
|
1699
1727
|
# @param PageFormat: 自定义输出页码样式,{{p}}为页码占位符,开启ReturnPageFormat生效。未填默认样式:<page_num>page {{p}}</page_num>
|
1700
1728
|
# @type PageFormat: String
|
1729
|
+
# @param IgnoreFailedPage: 是否忽略失败页,返回已成功的页数据
|
1730
|
+
# @type IgnoreFailedPage: Boolean
|
1701
1731
|
|
1702
|
-
attr_accessor :TableResultType, :MarkdownImageResponseType, :ReturnPageFormat, :PageFormat
|
1732
|
+
attr_accessor :TableResultType, :MarkdownImageResponseType, :ReturnPageFormat, :PageFormat, :IgnoreFailedPage
|
1703
1733
|
|
1704
|
-
def initialize(tableresulttype=nil, markdownimageresponsetype=nil, returnpageformat=nil, pageformat=nil)
|
1734
|
+
def initialize(tableresulttype=nil, markdownimageresponsetype=nil, returnpageformat=nil, pageformat=nil, ignorefailedpage=nil)
|
1705
1735
|
@TableResultType = tableresulttype
|
1706
1736
|
@MarkdownImageResponseType = markdownimageresponsetype
|
1707
1737
|
@ReturnPageFormat = returnpageformat
|
1708
1738
|
@PageFormat = pageformat
|
1739
|
+
@IgnoreFailedPage = ignorefailedpage
|
1709
1740
|
end
|
1710
1741
|
|
1711
1742
|
def deserialize(params)
|
@@ -1713,34 +1744,41 @@ module TencentCloud
|
|
1713
1744
|
@MarkdownImageResponseType = params['MarkdownImageResponseType']
|
1714
1745
|
@ReturnPageFormat = params['ReturnPageFormat']
|
1715
1746
|
@PageFormat = params['PageFormat']
|
1747
|
+
@IgnoreFailedPage = params['IgnoreFailedPage']
|
1716
1748
|
end
|
1717
1749
|
end
|
1718
1750
|
|
1719
1751
|
# ReconstructDocumentSSE请求参数结构体
|
1720
1752
|
class ReconstructDocumentSSERequest < TencentCloud::Common::AbstractModel
|
1721
|
-
# @param FileType:
|
1753
|
+
# @param FileType: 支持解析的文件类型。
|
1722
1754
|
# **支持的文件类型**:PDF、DOC、DOCX、PPT、PPTX、MD、TXT、XLS、XLSX、CSV、PNG、JPG、JPEG、BMP、GIF、WEBP、HEIC、EPS、ICNS、IM、PCX、PPM、TIFF、XBM、HEIF、JP2
|
1723
1755
|
# **支持的文件大小**:
|
1724
1756
|
# - PDF、DOC、DOCX、PPT、PPTX 支持100M
|
1725
1757
|
# - MD、TXT、XLS、XLSX、CSV 支持10M
|
1726
1758
|
# - 其他支持20M
|
1727
1759
|
# @type FileType: String
|
1728
|
-
# @param FileUrl: 文件的 URL
|
1729
|
-
# 文件存储于腾讯云的 URL 可保障更高的下载速度和稳定性,建议文件存储于腾讯云。 非腾讯云存储的 URL 速度和稳定性可能受一定影响。
|
1760
|
+
# @param FileUrl: 文件的 URL 地址。文件存储于腾讯云的 URL 可保障更高的下载速度和稳定性,建议文件存储于腾讯云。 非腾讯云存储的 URL 速度和稳定性可能受一定影响。文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。
|
1730
1761
|
# 参考:[腾讯云COS文档](https://cloud.tencent.com/document/product/436/7749)
|
1762
|
+
|
1763
|
+
# 默认值:无
|
1731
1764
|
# @type FileUrl: String
|
1732
|
-
# @param FileBase64:
|
1733
|
-
#
|
1734
|
-
# 支持的图片像素:单边介于20-10000px
|
1735
|
-
|
1765
|
+
# @param FileBase64: 说明:文件的 Base64 值。
|
1766
|
+
# 备注:支持的文件大小:所下载文件经Base64编码后不超过 8M。文件下载时间不超过 3 秒。
|
1767
|
+
# 支持的图片像素:单边介于20-10000px之间。文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。
|
1768
|
+
|
1769
|
+
# 默认值:无
|
1736
1770
|
# @type FileBase64: String
|
1737
|
-
# @param FileStartPageNumber:
|
1738
|
-
#
|
1771
|
+
# @param FileStartPageNumber: 说明:文档的起始页码。
|
1772
|
+
# 备注:当传入文件是PDF、PDF、PPT、PPTX、DOC类型时,用来指定识别的起始页码,识别的页码包含当前值。
|
1773
|
+
# 默认值:无
|
1739
1774
|
# @type FileStartPageNumber: Integer
|
1740
|
-
# @param FileEndPageNumber:
|
1741
|
-
#
|
1775
|
+
# @param FileEndPageNumber: 说明:文档的结束页码。
|
1776
|
+
# 备注:当传入文件是PDF、PDF、PPT、PPTX、DOC类型时,用来指定识别的结束页码,识别的页码包含当前值。
|
1777
|
+
# 默认值:无
|
1742
1778
|
# @type FileEndPageNumber: Integer
|
1743
|
-
# @param Config:
|
1779
|
+
# @param Config: 说明:文档解析配置信息
|
1780
|
+
# 备注:可设置返回markdown结果的格式
|
1781
|
+
# 默认值:无
|
1744
1782
|
# @type Config: :class:`Tencentcloud::Lkeap.v20240522.models.ReconstructDocumentSSEConfig`
|
1745
1783
|
|
1746
1784
|
attr_accessor :FileType, :FileUrl, :FileBase64, :FileStartPageNumber, :FileEndPageNumber, :Config
|
@@ -1771,30 +1809,34 @@ module TencentCloud
|
|
1771
1809
|
class ReconstructDocumentSSEResponse < TencentCloud::Common::AbstractModel
|
1772
1810
|
# @param TaskId: 任务ID。本次请求的唯一标识
|
1773
1811
|
# @type TaskId: String
|
1774
|
-
# @param ResponseType: 响应类型。1:返回进度信息,2:返回解析结果
|
1812
|
+
# @param ResponseType: 响应类型。1:返回进度信息, 2:返回解析结果
|
1775
1813
|
# @type ResponseType: String
|
1776
1814
|
# @param Progress: 进度。0~100
|
1777
1815
|
# @type Progress: String
|
1778
1816
|
# @param ProgressMessage: 进度信息。
|
1779
1817
|
# @type ProgressMessage: String
|
1780
|
-
# @param DocumentRecognizeResultUrl:
|
1781
|
-
# 文件类型为zip压缩包,下载链接有效期30分钟。
|
1782
|
-
# 压缩包内包含*.md、*.json以及images文件夹。
|
1818
|
+
# @param DocumentRecognizeResultUrl: 文档解析结果的临时下载地址。文件类型为zip压缩包,下载链接有效期30分钟。压缩包内包含*.md、*.json以及images文件夹。
|
1783
1819
|
# @type DocumentRecognizeResultUrl: String
|
1784
1820
|
# @param FailedPages: 文档解析失败的页码。
|
1785
1821
|
# @type FailedPages: Array
|
1822
|
+
# @param FailPageNum: 文档解析失败页数
|
1823
|
+
# @type FailPageNum: Integer
|
1824
|
+
# @param SuccessPageNum: 文档解析成功页数
|
1825
|
+
# @type SuccessPageNum: Integer
|
1786
1826
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。本接口为流式响应接口,当请求成功时,RequestId 会被放在 HTTP 响应的 Header "X-TC-RequestId" 中。
|
1787
1827
|
# @type RequestId: String
|
1788
1828
|
|
1789
|
-
attr_accessor :TaskId, :ResponseType, :Progress, :ProgressMessage, :DocumentRecognizeResultUrl, :FailedPages, :RequestId
|
1829
|
+
attr_accessor :TaskId, :ResponseType, :Progress, :ProgressMessage, :DocumentRecognizeResultUrl, :FailedPages, :FailPageNum, :SuccessPageNum, :RequestId
|
1790
1830
|
|
1791
|
-
def initialize(taskid=nil, responsetype=nil, progress=nil, progressmessage=nil, documentrecognizeresulturl=nil, failedpages=nil, requestid=nil)
|
1831
|
+
def initialize(taskid=nil, responsetype=nil, progress=nil, progressmessage=nil, documentrecognizeresulturl=nil, failedpages=nil, failpagenum=nil, successpagenum=nil, requestid=nil)
|
1792
1832
|
@TaskId = taskid
|
1793
1833
|
@ResponseType = responsetype
|
1794
1834
|
@Progress = progress
|
1795
1835
|
@ProgressMessage = progressmessage
|
1796
1836
|
@DocumentRecognizeResultUrl = documentrecognizeresulturl
|
1797
1837
|
@FailedPages = failedpages
|
1838
|
+
@FailPageNum = failpagenum
|
1839
|
+
@SuccessPageNum = successpagenum
|
1798
1840
|
@RequestId = requestid
|
1799
1841
|
end
|
1800
1842
|
|
@@ -1812,6 +1854,8 @@ module TencentCloud
|
|
1812
1854
|
@FailedPages << reconstructdocumentfailedpage_tmp
|
1813
1855
|
end
|
1814
1856
|
end
|
1857
|
+
@FailPageNum = params['FailPageNum']
|
1858
|
+
@SuccessPageNum = params['SuccessPageNum']
|
1815
1859
|
@RequestId = params['RequestId']
|
1816
1860
|
end
|
1817
1861
|
end
|
@@ -2129,8 +2173,8 @@ module TencentCloud
|
|
2129
2173
|
|
2130
2174
|
attr_accessor :KnowledgeBaseId, :FileName, :FileType, :FileUrl, :AttributeLabel, :AttributeLabels, :Config
|
2131
2175
|
extend Gem::Deprecate
|
2132
|
-
deprecate :AttributeLabel, :none, 2025,
|
2133
|
-
deprecate :AttributeLabel=, :none, 2025,
|
2176
|
+
deprecate :AttributeLabel, :none, 2025, 7
|
2177
|
+
deprecate :AttributeLabel=, :none, 2025, 7
|
2134
2178
|
|
2135
2179
|
def initialize(knowledgebaseid=nil, filename=nil, filetype=nil, fileurl=nil, attributelabel=nil, attributelabels=nil, config=nil)
|
2136
2180
|
@KnowledgeBaseId = knowledgebaseid
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lkeap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1102
|
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-07-
|
11
|
+
date: 2025-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|