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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +19 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ff357553355f9ad5f4b2dd44f6f4e4f2123ede5
4
- data.tar.gz: b8c3a95ae50a55b9152c7c5ac7b2895072910c8e
3
+ metadata.gz: df4b25b7a76820b1ea9a25e097ad920b4295b6fc
4
+ data.tar.gz: 7ee5d39b598b645c32dcc4de8cfeffab8cf7a9a4
5
5
  SHA512:
6
- metadata.gz: f3b9d4693464504b64d1a132a759d322fb8d01dc4acc7fe56c68d437d84e9a341c07668f0a72e63bdb02a02a34f152f355b18470b72e8a39dd534655594bc649
7
- data.tar.gz: af921a63947b64dc66734555497e381bf06445959d5092f8f02742e6a6f95a849e9c81aaff12eed9d1bd588e9f8e23090e680720c430983594d1530532364091
6
+ metadata.gz: 95ff7f3b192850fcc1bdbc0826031afcae23413d4a2e1acec6b4538e5ea3d2a6af3567f306a0efff340c5762662fd0d7cb6e19d969070bd1b081e4de3b98c351
7
+ data.tar.gz: f2df5fd29bb7a192970b6c31ae1d9f3c9efedc391c659d204064cd3aae3c024a1598127ebbc12c4a0e0a27a28ac4458041b5dc7fb58d68f624bf7797a05cad1c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1142
1
+ 3.0.1143
@@ -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.1142
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-17 00:00:00.000000000 Z
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