tencentcloud-sdk-mps 3.0.1142 → 3.0.1143
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/v20190612/models.rb +19 -4
- 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: df4b25b7a76820b1ea9a25e097ad920b4295b6fc
|
4
|
+
data.tar.gz: 7ee5d39b598b645c32dcc4de8cfeffab8cf7a9a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95ff7f3b192850fcc1bdbc0826031afcae23413d4a2e1acec6b4538e5ea3d2a6af3567f306a0efff340c5762662fd0d7cb6e19d969070bd1b081e4de3b98c351
|
7
|
+
data.tar.gz: f2df5fd29bb7a192970b6c31ae1d9f3c9efedc391c659d204064cd3aae3c024a1598127ebbc12c4a0e0a27a28ac4458041b5dc7fb58d68f624bf7797a05cad1c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1143
|
data/lib/v20190612/models.rb
CHANGED
@@ -15558,12 +15558,15 @@ module TencentCloud
|
|
15558
15558
|
# @param OutputStorage: 输出文件的存储位置。
|
15559
15559
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15560
15560
|
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
|
15561
|
+
# @param SignedUrl: 输出文件的URL。
|
15562
|
+
# @type SignedUrl: String
|
15561
15563
|
|
15562
|
-
attr_accessor :Path, :OutputStorage
|
15564
|
+
attr_accessor :Path, :OutputStorage, :SignedUrl
|
15563
15565
|
|
15564
|
-
def initialize(path=nil, outputstorage=nil)
|
15566
|
+
def initialize(path=nil, outputstorage=nil, signedurl=nil)
|
15565
15567
|
@Path = path
|
15566
15568
|
@OutputStorage = outputstorage
|
15569
|
+
@SignedUrl = signedurl
|
15567
15570
|
end
|
15568
15571
|
|
15569
15572
|
def deserialize(params)
|
@@ -15572,6 +15575,7 @@ module TencentCloud
|
|
15572
15575
|
@OutputStorage = TaskOutputStorage.new
|
15573
15576
|
@OutputStorage.deserialize(params['OutputStorage'])
|
15574
15577
|
end
|
15578
|
+
@SignedUrl = params['SignedUrl']
|
15575
15579
|
end
|
15576
15580
|
end
|
15577
15581
|
|
@@ -21469,15 +21473,25 @@ module TencentCloud
|
|
21469
21473
|
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
|
21470
21474
|
# @param OutputDir: 图片处理生成的文件输出的路径。如果不填表示与 InputInfo 中文件所在的目录一致。如果是目录,如`/image/201907/`,表示继承原文件名输出到该目录。
|
21471
21475
|
# @type OutputDir: String
|
21476
|
+
# @param OutputPath: 输出路径,可以为相对路径或者绝对路径。
|
21477
|
+
# 若需定义输出路径,路径需以`.{format}`结尾。变量名请参考 [文件名变量说明](https://cloud.tencent.com/document/product/862/37039)。
|
21478
|
+
# 相对路径示例:
|
21479
|
+
# <li>文件名_{变量名}.{format}</li>
|
21480
|
+
# <li>文件名.{format}</li>
|
21481
|
+
# 绝对路径示例:
|
21482
|
+
# <li>/自定义路径/文件名_{变量名}.{format}</li>
|
21483
|
+
# 如果不填,则默认为相对路径:{inputName}.{format}。
|
21484
|
+
# @type OutputPath: String
|
21472
21485
|
# @param ImageTask: 图片处理参数。
|
21473
21486
|
# @type ImageTask: :class:`Tencentcloud::Mps.v20190612.models.ImageTaskInput`
|
21474
21487
|
|
21475
|
-
attr_accessor :InputInfo, :OutputStorage, :OutputDir, :ImageTask
|
21488
|
+
attr_accessor :InputInfo, :OutputStorage, :OutputDir, :OutputPath, :ImageTask
|
21476
21489
|
|
21477
|
-
def initialize(inputinfo=nil, outputstorage=nil, outputdir=nil, imagetask=nil)
|
21490
|
+
def initialize(inputinfo=nil, outputstorage=nil, outputdir=nil, outputpath=nil, imagetask=nil)
|
21478
21491
|
@InputInfo = inputinfo
|
21479
21492
|
@OutputStorage = outputstorage
|
21480
21493
|
@OutputDir = outputdir
|
21494
|
+
@OutputPath = outputpath
|
21481
21495
|
@ImageTask = imagetask
|
21482
21496
|
end
|
21483
21497
|
|
@@ -21491,6 +21505,7 @@ module TencentCloud
|
|
21491
21505
|
@OutputStorage.deserialize(params['OutputStorage'])
|
21492
21506
|
end
|
21493
21507
|
@OutputDir = params['OutputDir']
|
21508
|
+
@OutputPath = params['OutputPath']
|
21494
21509
|
unless params['ImageTask'].nil?
|
21495
21510
|
@ImageTask = ImageTaskInput.new
|
21496
21511
|
@ImageTask.deserialize(params['ImageTask'])
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1143
|
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-09-
|
11
|
+
date: 2025-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|