tencentcloud-sdk-cme 3.0.679 → 3.0.680
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/v20191029/models.rb +18 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d34333c45a8c34c802e8bd7f99538898ad06d39
|
4
|
+
data.tar.gz: 6d581445a9a61f1a5b6d9765f333367e26195871
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26f215c819f934cd95b56f8bbb825c53808aae7c6b23a24eb6512183cf22b99e599ce5ec970b939e47b82185c0c6430556eeac7728db8da3147d770decd91572
|
7
|
+
data.tar.gz: b0db2b716fd93616387fdc52b9f92656500600da81bbb3928bbd1bd6eaf99b7321866e47a0e6df5a57414dd247db599d1abd95629edb5b282231589d8c058aab
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.680
|
data/lib/v20191029/models.rb
CHANGED
@@ -2290,12 +2290,14 @@ module TencentCloud
|
|
2290
2290
|
# @type CMEExportInfo: :class:`Tencentcloud::Cme.v20191029.models.CMEExportInfo`
|
2291
2291
|
# @param VODExportInfo: 导出的云点播媒资信息。当导出目标为 VOD 时必填。
|
2292
2292
|
# @type VODExportInfo: :class:`Tencentcloud::Cme.v20191029.models.VODExportInfo`
|
2293
|
+
# @param ExportExtensionArgs: 视频导出扩展参数。可以覆盖导出模板中的参数,灵活的指定导出规格及参数。
|
2294
|
+
# @type ExportExtensionArgs: :class:`Tencentcloud::Cme.v20191029.models.VideoExportExtensionArgs`
|
2293
2295
|
# @param Operator: 操作者。如不填,默认为 `cmeid_system`,表示平台管理员操作,无权限限制。如果指定操作者,轨道数据中使用的媒资该操作者需要拥有使用权限。
|
2294
2296
|
# @type Operator: String
|
2295
2297
|
|
2296
|
-
attr_accessor :Platform, :Definition, :ExportDestination, :TrackData, :AspectRatio, :CoverData, :CMEExportInfo, :VODExportInfo, :Operator
|
2298
|
+
attr_accessor :Platform, :Definition, :ExportDestination, :TrackData, :AspectRatio, :CoverData, :CMEExportInfo, :VODExportInfo, :ExportExtensionArgs, :Operator
|
2297
2299
|
|
2298
|
-
def initialize(platform=nil, definition=nil, exportdestination=nil, trackdata=nil, aspectratio=nil, coverdata=nil, cmeexportinfo=nil, vodexportinfo=nil, operator=nil)
|
2300
|
+
def initialize(platform=nil, definition=nil, exportdestination=nil, trackdata=nil, aspectratio=nil, coverdata=nil, cmeexportinfo=nil, vodexportinfo=nil, exportextensionargs=nil, operator=nil)
|
2299
2301
|
@Platform = platform
|
2300
2302
|
@Definition = definition
|
2301
2303
|
@ExportDestination = exportdestination
|
@@ -2304,6 +2306,7 @@ module TencentCloud
|
|
2304
2306
|
@CoverData = coverdata
|
2305
2307
|
@CMEExportInfo = cmeexportinfo
|
2306
2308
|
@VODExportInfo = vodexportinfo
|
2309
|
+
@ExportExtensionArgs = exportextensionargs
|
2307
2310
|
@Operator = operator
|
2308
2311
|
end
|
2309
2312
|
|
@@ -2322,6 +2325,10 @@ module TencentCloud
|
|
2322
2325
|
@VODExportInfo = VODExportInfo.new
|
2323
2326
|
@VODExportInfo.deserialize(params['VODExportInfo'])
|
2324
2327
|
end
|
2328
|
+
unless params['ExportExtensionArgs'].nil?
|
2329
|
+
@ExportExtensionArgs = VideoExportExtensionArgs.new
|
2330
|
+
@ExportExtensionArgs.deserialize(params['ExportExtensionArgs'])
|
2331
|
+
end
|
2325
2332
|
@Operator = params['Operator']
|
2326
2333
|
end
|
2327
2334
|
end
|
@@ -2367,12 +2374,14 @@ module TencentCloud
|
|
2367
2374
|
# @type CMEExportInfo: :class:`Tencentcloud::Cme.v20191029.models.CMEExportInfo`
|
2368
2375
|
# @param VODExportInfo: 导出的云点播媒资信息。当导出目标为 VOD 时必填。
|
2369
2376
|
# @type VODExportInfo: :class:`Tencentcloud::Cme.v20191029.models.VODExportInfo`
|
2377
|
+
# @param ExportExtensionArgs: 视频导出扩展参数。可以覆盖导出模板中的参数,灵活的指定导出规格及参数。
|
2378
|
+
# @type ExportExtensionArgs: :class:`Tencentcloud::Cme.v20191029.models.VideoExportExtensionArgs`
|
2370
2379
|
# @param Operator: 操作者。如不填,默认为 `cmeid_system`,表示平台管理员操作,无权限限制。如果指定操作者,则操作者需要有替换媒体及剪辑模板的权限。
|
2371
2380
|
# @type Operator: String
|
2372
2381
|
|
2373
|
-
attr_accessor :Platform, :TemplateId, :Definition, :ExportDestination, :SlotReplacements, :CMEExportInfo, :VODExportInfo, :Operator
|
2382
|
+
attr_accessor :Platform, :TemplateId, :Definition, :ExportDestination, :SlotReplacements, :CMEExportInfo, :VODExportInfo, :ExportExtensionArgs, :Operator
|
2374
2383
|
|
2375
|
-
def initialize(platform=nil, templateid=nil, definition=nil, exportdestination=nil, slotreplacements=nil, cmeexportinfo=nil, vodexportinfo=nil, operator=nil)
|
2384
|
+
def initialize(platform=nil, templateid=nil, definition=nil, exportdestination=nil, slotreplacements=nil, cmeexportinfo=nil, vodexportinfo=nil, exportextensionargs=nil, operator=nil)
|
2376
2385
|
@Platform = platform
|
2377
2386
|
@TemplateId = templateid
|
2378
2387
|
@Definition = definition
|
@@ -2380,6 +2389,7 @@ module TencentCloud
|
|
2380
2389
|
@SlotReplacements = slotreplacements
|
2381
2390
|
@CMEExportInfo = cmeexportinfo
|
2382
2391
|
@VODExportInfo = vodexportinfo
|
2392
|
+
@ExportExtensionArgs = exportextensionargs
|
2383
2393
|
@Operator = operator
|
2384
2394
|
end
|
2385
2395
|
|
@@ -2404,6 +2414,10 @@ module TencentCloud
|
|
2404
2414
|
@VODExportInfo = VODExportInfo.new
|
2405
2415
|
@VODExportInfo.deserialize(params['VODExportInfo'])
|
2406
2416
|
end
|
2417
|
+
unless params['ExportExtensionArgs'].nil?
|
2418
|
+
@ExportExtensionArgs = VideoExportExtensionArgs.new
|
2419
|
+
@ExportExtensionArgs.deserialize(params['ExportExtensionArgs'])
|
2420
|
+
end
|
2407
2421
|
@Operator = params['Operator']
|
2408
2422
|
end
|
2409
2423
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.680
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -34,8 +34,8 @@ extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
36
|
- lib/tencentcloud-sdk-cme.rb
|
37
|
-
- lib/v20191029/models.rb
|
38
37
|
- lib/v20191029/client.rb
|
38
|
+
- lib/v20191029/models.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|