tencentcloud-sdk-mps 3.0.875 → 3.0.877
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 +17 -6
- 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: 8a0425ade1e4fdfe85122ff47313ff2701185da5
|
|
4
|
+
data.tar.gz: ec018f32a228d390135b82e446a1bee3d564c8ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c664758a8415ccb770007c48084a02e65c9e01414b50065dbc531917c6b6d3ad577adea448b0d712ac767ca79e158ec0bca4ef0a89e19a43425eae4cfbbc94f2
|
|
7
|
+
data.tar.gz: 1ce350f54865cb8b35d2ea004b654fb18085528cb2630d748f7306e6430ecd08ef9e6b5fd3bfb6279ed4bccaad6c657a3b4ad75e380b4a107446ba19c1de5fe7
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.877
|
data/lib/v20190612/models.rb
CHANGED
|
@@ -1914,8 +1914,8 @@ module TencentCloud
|
|
|
1914
1914
|
|
|
1915
1915
|
attr_accessor :SegmentSet, :SubtitlePath, :OutputStorage
|
|
1916
1916
|
extend Gem::Deprecate
|
|
1917
|
-
deprecate :OutputStorage, :none, 2024,
|
|
1918
|
-
deprecate :OutputStorage=, :none, 2024,
|
|
1917
|
+
deprecate :OutputStorage, :none, 2024, 8
|
|
1918
|
+
deprecate :OutputStorage=, :none, 2024, 8
|
|
1919
1919
|
|
|
1920
1920
|
def initialize(segmentset=nil, subtitlepath=nil, outputstorage=nil)
|
|
1921
1921
|
@SegmentSet = segmentset
|
|
@@ -20381,19 +20381,25 @@ module TencentCloud
|
|
|
20381
20381
|
# @type SourceLanguage: String
|
|
20382
20382
|
# @param DestinationLanguage: 翻译目标语言。
|
|
20383
20383
|
# @type DestinationLanguage: String
|
|
20384
|
+
# @param SubtitleFormat: 生成的字幕文件格式,填空字符串表示不生成字幕文件,可选值:
|
|
20385
|
+
# <li>vtt:生成 WebVTT 字幕文件。</li>
|
|
20386
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
20387
|
+
# @type SubtitleFormat: String
|
|
20384
20388
|
|
|
20385
|
-
attr_accessor :Switch, :SourceLanguage, :DestinationLanguage
|
|
20389
|
+
attr_accessor :Switch, :SourceLanguage, :DestinationLanguage, :SubtitleFormat
|
|
20386
20390
|
|
|
20387
|
-
def initialize(switch=nil, sourcelanguage=nil, destinationlanguage=nil)
|
|
20391
|
+
def initialize(switch=nil, sourcelanguage=nil, destinationlanguage=nil, subtitleformat=nil)
|
|
20388
20392
|
@Switch = switch
|
|
20389
20393
|
@SourceLanguage = sourcelanguage
|
|
20390
20394
|
@DestinationLanguage = destinationlanguage
|
|
20395
|
+
@SubtitleFormat = subtitleformat
|
|
20391
20396
|
end
|
|
20392
20397
|
|
|
20393
20398
|
def deserialize(params)
|
|
20394
20399
|
@Switch = params['Switch']
|
|
20395
20400
|
@SourceLanguage = params['SourceLanguage']
|
|
20396
20401
|
@DestinationLanguage = params['DestinationLanguage']
|
|
20402
|
+
@SubtitleFormat = params['SubtitleFormat']
|
|
20397
20403
|
end
|
|
20398
20404
|
end
|
|
20399
20405
|
|
|
@@ -20407,19 +20413,24 @@ module TencentCloud
|
|
|
20407
20413
|
# @type SourceLanguage: String
|
|
20408
20414
|
# @param DestinationLanguage: 翻译目标语言。
|
|
20409
20415
|
# @type DestinationLanguage: String
|
|
20416
|
+
# @param SubtitleFormat: 生成的字幕文件格式,填空字符串表示不生成字幕文件,可选值:
|
|
20417
|
+
# <li>vtt:生成 WebVTT 字幕文件。</li>
|
|
20418
|
+
# @type SubtitleFormat: String
|
|
20410
20419
|
|
|
20411
|
-
attr_accessor :Switch, :SourceLanguage, :DestinationLanguage
|
|
20420
|
+
attr_accessor :Switch, :SourceLanguage, :DestinationLanguage, :SubtitleFormat
|
|
20412
20421
|
|
|
20413
|
-
def initialize(switch=nil, sourcelanguage=nil, destinationlanguage=nil)
|
|
20422
|
+
def initialize(switch=nil, sourcelanguage=nil, destinationlanguage=nil, subtitleformat=nil)
|
|
20414
20423
|
@Switch = switch
|
|
20415
20424
|
@SourceLanguage = sourcelanguage
|
|
20416
20425
|
@DestinationLanguage = destinationlanguage
|
|
20426
|
+
@SubtitleFormat = subtitleformat
|
|
20417
20427
|
end
|
|
20418
20428
|
|
|
20419
20429
|
def deserialize(params)
|
|
20420
20430
|
@Switch = params['Switch']
|
|
20421
20431
|
@SourceLanguage = params['SourceLanguage']
|
|
20422
20432
|
@DestinationLanguage = params['DestinationLanguage']
|
|
20433
|
+
@SubtitleFormat = params['SubtitleFormat']
|
|
20423
20434
|
end
|
|
20424
20435
|
end
|
|
20425
20436
|
|
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.877
|
|
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-
|
|
11
|
+
date: 2024-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|