tencentcloud-sdk-lke 3.0.863 → 3.0.864
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 +7 -3
- 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: 7ad0e6abfe3a6cf5bef60ebbb62f5ac6aac999f3
|
4
|
+
data.tar.gz: 3a8fac095e81d86e2f59c600c4299f5486fb0adf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc22cc8f9fc5f197a2ef85693c1a4c12afb93615481af6bfb6888d29523eef8df51b68d3b56d3631184b26fc47d43269786f4e6bb129a4856bc91994c9dcb6b6
|
7
|
+
data.tar.gz: 62de1785540de4baf8990c142765dc2943ca7d187dd4aeab66e522e44d9b887eb6f25ad857cf9a11c629e90204665adaa1206797c22183de39d42422a1d11ce0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.864
|
data/lib/v20231130/models.rb
CHANGED
@@ -939,6 +939,8 @@ module TencentCloud
|
|
939
939
|
|
940
940
|
# CreateReconstructDocumentFlow请求参数结构体
|
941
941
|
class CreateReconstructDocumentFlowRequest < TencentCloud::Common::AbstractModel
|
942
|
+
# @param FileType: 文件类型。支持的文件类型:PDF、DOCX、DOC、XLS、XLSX、PPT、PPTX、PNG、JPG、JPEG、CSV
|
943
|
+
# @type FileType: String
|
942
944
|
# @param FileBase64: 文件的 Base64 值。 支持的文件格式:PNG、JPG、JPEG、PDF。 支持的文件大小:所下载文件经Base64编码后不超过 8M。文件下载时间不超过 3 秒。 支持的图片像素:单边介于20-10000px之间。 文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。
|
943
945
|
# @type FileBase64: String
|
944
946
|
# @param FileUrl: 文件的 Url 地址。 支持的文件格式:PNG、JPG、JPEG、PDF。 支持的文件大小:所下载文件经 Base64 编码后不超过 100M。文件下载时间不超过 15 秒。 支持的图片像素:单边介于20-10000px之间。 文件存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议文件存储于腾讯云。 非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
@@ -950,9 +952,10 @@ module TencentCloud
|
|
950
952
|
# @param Config: 创建文档解析任务配置信息
|
951
953
|
# @type Config: :class:`Tencentcloud::Lke.v20231130.models.CreateReconstructDocumentFlowConfig`
|
952
954
|
|
953
|
-
attr_accessor :FileBase64, :FileUrl, :FileStartPageNumber, :FileEndPageNumber, :Config
|
955
|
+
attr_accessor :FileType, :FileBase64, :FileUrl, :FileStartPageNumber, :FileEndPageNumber, :Config
|
954
956
|
|
955
|
-
def initialize(filebase64=nil, fileurl=nil, filestartpagenumber=nil, fileendpagenumber=nil, config=nil)
|
957
|
+
def initialize(filetype=nil, filebase64=nil, fileurl=nil, filestartpagenumber=nil, fileendpagenumber=nil, config=nil)
|
958
|
+
@FileType = filetype
|
956
959
|
@FileBase64 = filebase64
|
957
960
|
@FileUrl = fileurl
|
958
961
|
@FileStartPageNumber = filestartpagenumber
|
@@ -961,6 +964,7 @@ module TencentCloud
|
|
961
964
|
end
|
962
965
|
|
963
966
|
def deserialize(params)
|
967
|
+
@FileType = params['FileType']
|
964
968
|
@FileBase64 = params['FileBase64']
|
965
969
|
@FileUrl = params['FileUrl']
|
966
970
|
@FileStartPageNumber = params['FileStartPageNumber']
|
@@ -974,7 +978,7 @@ module TencentCloud
|
|
974
978
|
|
975
979
|
# CreateReconstructDocumentFlow返回参数结构体
|
976
980
|
class CreateReconstructDocumentFlowResponse < TencentCloud::Common::AbstractModel
|
977
|
-
# @param TaskId: 任务唯一id
|
981
|
+
# @param TaskId: 任务唯一id。30天内可以通过GetReconstructDocumentResult接口查询TaskId对应的处理结果。
|
978
982
|
# @type TaskId: String
|
979
983
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
980
984
|
# @type RequestId: String
|
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.864
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|