tencentcloud-sdk-vod 1.0.337 → 1.0.340
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/v20180717/client.rb +6 -0
- data/lib/v20180717/models.rb +83 -52
- 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: 7fb652d609b004f78b1cc54699e15531d6129d31
|
4
|
+
data.tar.gz: a7d750a8276aff5302acbadbbc702055e8c2c7a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 500bdbef38c0547a1532d57f1209899ff3d8a3a08f75efaba76b59d4f39f07d22a9da1cd0c4c406e51f55eb32c658229a923728a649565524d511c7ecf5ab43c
|
7
|
+
data.tar.gz: 389733a0cb5753ae7bb30ba74907e7549fd1e8aa33db4e76502c5138e5aa4b0b68c4ad7277949d2f5bad79bec5dccec30b2df4f3c2cf84009f7a004a7239d1ef
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.340
|
data/lib/v20180717/client.rb
CHANGED
@@ -2934,6 +2934,12 @@ module TencentCloud
|
|
2934
2934
|
|
2935
2935
|
# 如使用事件通知,事件通知的类型为 [任务流状态变更](https://cloud.tencent.com/document/product/266/9636)。
|
2936
2936
|
|
2937
|
+
# 使用溯源水印存在以下限制条件:
|
2938
|
+
# <li> 溯源水印仅支持图片水印; </li>
|
2939
|
+
# <li> 溯源水印仅支持水印重复类型为水印循环播放; </li>
|
2940
|
+
# <li> 溯源水印仅支持输出文件封装格式为 HLS; </li>
|
2941
|
+
# <li> 溯源水印的位置仅支持位于视频的上半部分。 </li>
|
2942
|
+
|
2937
2943
|
# @param request: Request instance for ProcessMedia.
|
2938
2944
|
# @type request: :class:`Tencentcloud::vod::V20180717::ProcessMediaRequest`
|
2939
2945
|
# @rtype: :class:`Tencentcloud::vod::V20180717::ProcessMediaResponse`
|
data/lib/v20180717/models.rb
CHANGED
@@ -257,14 +257,17 @@ module TencentCloud
|
|
257
257
|
# @type Definition: Integer
|
258
258
|
# @param WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
|
259
259
|
# @type WatermarkSet: Array
|
260
|
+
# @param TraceWatermark: 溯源水印。
|
261
|
+
# @type TraceWatermark: :class:`Tencentcloud::Vod.v20180717.models.TraceWatermarkInput`
|
260
262
|
# @param SubtitleSet: 字幕列表,元素为字幕 ID,支持多个字幕,最大可支持16个。
|
261
263
|
# @type SubtitleSet: Array
|
262
264
|
|
263
|
-
attr_accessor :Definition, :WatermarkSet, :SubtitleSet
|
265
|
+
attr_accessor :Definition, :WatermarkSet, :TraceWatermark, :SubtitleSet
|
264
266
|
|
265
|
-
def initialize(definition=nil, watermarkset=nil, subtitleset=nil)
|
267
|
+
def initialize(definition=nil, watermarkset=nil, tracewatermark=nil, subtitleset=nil)
|
266
268
|
@Definition = definition
|
267
269
|
@WatermarkSet = watermarkset
|
270
|
+
@TraceWatermark = tracewatermark
|
268
271
|
@SubtitleSet = subtitleset
|
269
272
|
end
|
270
273
|
|
@@ -278,6 +281,10 @@ module TencentCloud
|
|
278
281
|
@WatermarkSet << watermarkinput_tmp
|
279
282
|
end
|
280
283
|
end
|
284
|
+
unless params['TraceWatermark'].nil?
|
285
|
+
@TraceWatermark = TraceWatermarkInput.new
|
286
|
+
@TraceWatermark.deserialize(params['TraceWatermark'])
|
287
|
+
end
|
281
288
|
@SubtitleSet = params['SubtitleSet']
|
282
289
|
end
|
283
290
|
end
|
@@ -13484,22 +13491,23 @@ module TencentCloud
|
|
13484
13491
|
# @type Height: Integer
|
13485
13492
|
# @param Width: 视频流宽度的最大值,单位:px。
|
13486
13493
|
# @type Width: Integer
|
13487
|
-
# @param Size:
|
13494
|
+
# @param Size: 媒体文件总大小,单位:字节。
|
13495
|
+
# <li>当媒体文件为 HLS 时,大小是 m3u8 和 ts 文件大小的总和。</li>
|
13488
13496
|
# @type Size: Integer
|
13489
13497
|
# @param Duration: 视频时长,单位:秒。
|
13490
13498
|
# @type Duration: Float
|
13491
|
-
# @param Container: 容器类型,例如 m4a,mp4 等。
|
13492
|
-
# @type Container: String
|
13493
13499
|
# @param Md5: 视频的 md5 值。
|
13494
13500
|
# @type Md5: String
|
13495
|
-
# @param
|
13496
|
-
# @type
|
13501
|
+
# @param Container: 容器类型,例如 m4a,mp4 等。
|
13502
|
+
# @type Container: String
|
13497
13503
|
# @param VideoStreamSet: 视频流信息。
|
13498
13504
|
# @type VideoStreamSet: Array
|
13505
|
+
# @param AudioStreamSet: 音频流信息。
|
13506
|
+
# @type AudioStreamSet: Array
|
13499
13507
|
|
13500
|
-
attr_accessor :Url, :Definition, :Bitrate, :Height, :Width, :Size, :Duration, :
|
13508
|
+
attr_accessor :Url, :Definition, :Bitrate, :Height, :Width, :Size, :Duration, :Md5, :Container, :VideoStreamSet, :AudioStreamSet
|
13501
13509
|
|
13502
|
-
def initialize(url=nil, definition=nil, bitrate=nil, height=nil, width=nil, size=nil, duration=nil,
|
13510
|
+
def initialize(url=nil, definition=nil, bitrate=nil, height=nil, width=nil, size=nil, duration=nil, md5=nil, container=nil, videostreamset=nil, audiostreamset=nil)
|
13503
13511
|
@Url = url
|
13504
13512
|
@Definition = definition
|
13505
13513
|
@Bitrate = bitrate
|
@@ -13507,10 +13515,10 @@ module TencentCloud
|
|
13507
13515
|
@Width = width
|
13508
13516
|
@Size = size
|
13509
13517
|
@Duration = duration
|
13510
|
-
@Container = container
|
13511
13518
|
@Md5 = md5
|
13512
|
-
@
|
13519
|
+
@Container = container
|
13513
13520
|
@VideoStreamSet = videostreamset
|
13521
|
+
@AudioStreamSet = audiostreamset
|
13514
13522
|
end
|
13515
13523
|
|
13516
13524
|
def deserialize(params)
|
@@ -13521,16 +13529,8 @@ module TencentCloud
|
|
13521
13529
|
@Width = params['Width']
|
13522
13530
|
@Size = params['Size']
|
13523
13531
|
@Duration = params['Duration']
|
13524
|
-
@Container = params['Container']
|
13525
13532
|
@Md5 = params['Md5']
|
13526
|
-
|
13527
|
-
@AudioStreamSet = []
|
13528
|
-
params['AudioStreamSet'].each do |i|
|
13529
|
-
mediaaudiostreamitem_tmp = MediaAudioStreamItem.new
|
13530
|
-
mediaaudiostreamitem_tmp.deserialize(i)
|
13531
|
-
@AudioStreamSet << mediaaudiostreamitem_tmp
|
13532
|
-
end
|
13533
|
-
end
|
13533
|
+
@Container = params['Container']
|
13534
13534
|
unless params['VideoStreamSet'].nil?
|
13535
13535
|
@VideoStreamSet = []
|
13536
13536
|
params['VideoStreamSet'].each do |i|
|
@@ -13539,6 +13539,14 @@ module TencentCloud
|
|
13539
13539
|
@VideoStreamSet << mediavideostreamitem_tmp
|
13540
13540
|
end
|
13541
13541
|
end
|
13542
|
+
unless params['AudioStreamSet'].nil?
|
13543
|
+
@AudioStreamSet = []
|
13544
|
+
params['AudioStreamSet'].each do |i|
|
13545
|
+
mediaaudiostreamitem_tmp = MediaAudioStreamItem.new
|
13546
|
+
mediaaudiostreamitem_tmp.deserialize(i)
|
13547
|
+
@AudioStreamSet << mediaaudiostreamitem_tmp
|
13548
|
+
end
|
13549
|
+
end
|
13542
13550
|
end
|
13543
13551
|
end
|
13544
13552
|
|
@@ -16632,6 +16640,8 @@ module TencentCloud
|
|
16632
16640
|
class ProcessMediaRequest < TencentCloud::Common::AbstractModel
|
16633
16641
|
# @param FileId: 媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 [视频上传完成事件通知](/document/product/266/7830) 或 [云点播控制台](https://console.cloud.tencent.com/vod/media) 获取该字段。
|
16634
16642
|
# @type FileId: String
|
16643
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
16644
|
+
# @type SubAppId: Integer
|
16635
16645
|
# @param MediaProcessTask: 视频处理类型任务参数。
|
16636
16646
|
# @type MediaProcessTask: :class:`Tencentcloud::Vod.v20180717.models.MediaProcessTaskInput`
|
16637
16647
|
# @param AiContentReviewTask: 视频智能识别类型任务参数。
|
@@ -16650,13 +16660,12 @@ module TencentCloud
|
|
16650
16660
|
# @type SessionId: String
|
16651
16661
|
# @param ExtInfo: 保留字段,特殊用途时使用。
|
16652
16662
|
# @type ExtInfo: String
|
16653
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
16654
|
-
# @type SubAppId: Integer
|
16655
16663
|
|
16656
|
-
attr_accessor :FileId, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TasksPriority, :TasksNotifyMode, :SessionContext, :SessionId, :ExtInfo
|
16664
|
+
attr_accessor :FileId, :SubAppId, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TasksPriority, :TasksNotifyMode, :SessionContext, :SessionId, :ExtInfo
|
16657
16665
|
|
16658
|
-
def initialize(fileid=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, taskspriority=nil, tasksnotifymode=nil, sessioncontext=nil, sessionid=nil, extinfo=nil
|
16666
|
+
def initialize(fileid=nil, subappid=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, taskspriority=nil, tasksnotifymode=nil, sessioncontext=nil, sessionid=nil, extinfo=nil)
|
16659
16667
|
@FileId = fileid
|
16668
|
+
@SubAppId = subappid
|
16660
16669
|
@MediaProcessTask = mediaprocesstask
|
16661
16670
|
@AiContentReviewTask = aicontentreviewtask
|
16662
16671
|
@AiAnalysisTask = aianalysistask
|
@@ -16666,11 +16675,11 @@ module TencentCloud
|
|
16666
16675
|
@SessionContext = sessioncontext
|
16667
16676
|
@SessionId = sessionid
|
16668
16677
|
@ExtInfo = extinfo
|
16669
|
-
@SubAppId = subappid
|
16670
16678
|
end
|
16671
16679
|
|
16672
16680
|
def deserialize(params)
|
16673
16681
|
@FileId = params['FileId']
|
16682
|
+
@SubAppId = params['SubAppId']
|
16674
16683
|
unless params['MediaProcessTask'].nil?
|
16675
16684
|
@MediaProcessTask = MediaProcessTaskInput.new
|
16676
16685
|
@MediaProcessTask.deserialize(params['MediaProcessTask'])
|
@@ -16692,7 +16701,6 @@ module TencentCloud
|
|
16692
16701
|
@SessionContext = params['SessionContext']
|
16693
16702
|
@SessionId = params['SessionId']
|
16694
16703
|
@ExtInfo = params['ExtInfo']
|
16695
|
-
@SubAppId = params['SubAppId']
|
16696
16704
|
end
|
16697
16705
|
end
|
16698
16706
|
|
@@ -17649,6 +17657,8 @@ module TencentCloud
|
|
17649
17657
|
|
17650
17658
|
# SearchMedia请求参数结构体
|
17651
17659
|
class SearchMediaRequest < TencentCloud::Common::AbstractModel
|
17660
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
17661
|
+
# @type SubAppId: Integer
|
17652
17662
|
# @param FileIds: 文件 ID 集合,匹配集合中的任意元素。
|
17653
17663
|
# <li>数组长度限制:10。</li>
|
17654
17664
|
# <li>单个 ID 长度限制:40个字符。</li>
|
@@ -17669,7 +17679,7 @@ module TencentCloud
|
|
17669
17679
|
# <li>数组长度限制:10。</li>
|
17670
17680
|
# @type ClassIds: Array
|
17671
17681
|
# @param Tags: 标签集合,匹配集合中任意元素。
|
17672
|
-
# <li>单个标签长度限制:
|
17682
|
+
# <li>单个标签长度限制:16个字符。</li>
|
17673
17683
|
# <li>数组长度限制:10。</li>
|
17674
17684
|
# @type Tags: Array
|
17675
17685
|
# @param Categories: 文件类型。匹配集合中的任意元素:
|
@@ -17718,8 +17728,6 @@ module TencentCloud
|
|
17718
17728
|
# <li>单个存储地区长度限制:20个字符。</li>
|
17719
17729
|
# <li>数组长度限制:20。</li>
|
17720
17730
|
# @type StorageRegions: Array
|
17721
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
17722
|
-
# @type SubAppId: Integer
|
17723
17731
|
# @param StorageClasses: 存储类型数组。可选值有:
|
17724
17732
|
# <li> STANDARD:标准存储。</li>
|
17725
17733
|
# <li> STANDARD_IA:低频存储。</li>
|
@@ -17751,9 +17759,10 @@ module TencentCloud
|
|
17751
17759
|
# <li>格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。</li>
|
17752
17760
|
# @type EndTime: String
|
17753
17761
|
|
17754
|
-
attr_accessor :FileIds, :Names, :NamePrefixes, :Descriptions, :ClassIds, :Tags, :Categories, :SourceTypes, :StreamIds, :Vids, :CreateTime, :ExpireTime, :Sort, :Offset, :Limit, :Filters, :StorageRegions, :
|
17762
|
+
attr_accessor :SubAppId, :FileIds, :Names, :NamePrefixes, :Descriptions, :ClassIds, :Tags, :Categories, :SourceTypes, :StreamIds, :Vids, :CreateTime, :ExpireTime, :Sort, :Offset, :Limit, :Filters, :StorageRegions, :StorageClasses, :Text, :SourceType, :StreamId, :Vid, :StartTime, :EndTime
|
17755
17763
|
|
17756
|
-
def initialize(fileids=nil, names=nil, nameprefixes=nil, descriptions=nil, classids=nil, tags=nil, categories=nil, sourcetypes=nil, streamids=nil, vids=nil, createtime=nil, expiretime=nil, sort=nil, offset=nil, limit=nil, filters=nil, storageregions=nil,
|
17764
|
+
def initialize(subappid=nil, fileids=nil, names=nil, nameprefixes=nil, descriptions=nil, classids=nil, tags=nil, categories=nil, sourcetypes=nil, streamids=nil, vids=nil, createtime=nil, expiretime=nil, sort=nil, offset=nil, limit=nil, filters=nil, storageregions=nil, storageclasses=nil, text=nil, sourcetype=nil, streamid=nil, vid=nil, starttime=nil, endtime=nil)
|
17765
|
+
@SubAppId = subappid
|
17757
17766
|
@FileIds = fileids
|
17758
17767
|
@Names = names
|
17759
17768
|
@NamePrefixes = nameprefixes
|
@@ -17771,7 +17780,6 @@ module TencentCloud
|
|
17771
17780
|
@Limit = limit
|
17772
17781
|
@Filters = filters
|
17773
17782
|
@StorageRegions = storageregions
|
17774
|
-
@SubAppId = subappid
|
17775
17783
|
@StorageClasses = storageclasses
|
17776
17784
|
@Text = text
|
17777
17785
|
@SourceType = sourcetype
|
@@ -17782,6 +17790,7 @@ module TencentCloud
|
|
17782
17790
|
end
|
17783
17791
|
|
17784
17792
|
def deserialize(params)
|
17793
|
+
@SubAppId = params['SubAppId']
|
17785
17794
|
@FileIds = params['FileIds']
|
17786
17795
|
@Names = params['Names']
|
17787
17796
|
@NamePrefixes = params['NamePrefixes']
|
@@ -17808,7 +17817,6 @@ module TencentCloud
|
|
17808
17817
|
@Limit = params['Limit']
|
17809
17818
|
@Filters = params['Filters']
|
17810
17819
|
@StorageRegions = params['StorageRegions']
|
17811
|
-
@SubAppId = params['SubAppId']
|
17812
17820
|
@StorageClasses = params['StorageClasses']
|
17813
17821
|
@Text = params['Text']
|
17814
17822
|
@SourceType = params['SourceType']
|
@@ -19345,6 +19353,22 @@ module TencentCloud
|
|
19345
19353
|
end
|
19346
19354
|
end
|
19347
19355
|
|
19356
|
+
# 溯源水印参数
|
19357
|
+
class TraceWatermarkInput < TencentCloud::Common::AbstractModel
|
19358
|
+
# @param Definition: 水印模板 ID。
|
19359
|
+
# @type Definition: Integer
|
19360
|
+
|
19361
|
+
attr_accessor :Definition
|
19362
|
+
|
19363
|
+
def initialize(definition=nil)
|
19364
|
+
@Definition = definition
|
19365
|
+
end
|
19366
|
+
|
19367
|
+
def deserialize(params)
|
19368
|
+
@Definition = params['Definition']
|
19369
|
+
end
|
19370
|
+
end
|
19371
|
+
|
19348
19372
|
# 视频转码播放信息(2017 版)
|
19349
19373
|
class TranscodePlayInfo2017 < TencentCloud::Common::AbstractModel
|
19350
19374
|
# @param Url: 播放地址。
|
@@ -19436,30 +19460,33 @@ module TencentCloud
|
|
19436
19460
|
# @type Definition: Integer
|
19437
19461
|
# @param WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
|
19438
19462
|
# @type WatermarkSet: Array
|
19439
|
-
# @param
|
19440
|
-
# @type
|
19463
|
+
# @param TraceWatermark: 溯源水印。
|
19464
|
+
# @type TraceWatermark: :class:`Tencentcloud::Vod.v20180717.models.TraceWatermarkInput`
|
19441
19465
|
# @param HeadTailSet: 片头片尾列表,支持多片头片尾,最大可支持 10 个。
|
19442
19466
|
# @type HeadTailSet: Array
|
19443
|
-
# @param
|
19444
|
-
#
|
19445
|
-
# <li>当数值大于0时(假设为 n),表示转码后的视频从原始视频的第 n 秒位置开始;</li>
|
19446
|
-
# <li>当数值小于0时(假设为 -n),表示转码后的视频从原始视频结束 n 秒前的位置开始。</li>
|
19447
|
-
# @type StartTimeOffset: Float
|
19467
|
+
# @param MosaicSet: 马赛克列表,最大可支持 10 张。
|
19468
|
+
# @type MosaicSet: Array
|
19448
19469
|
# @param EndTimeOffset: 转码后视频的终止时间偏移,单位:秒。
|
19449
19470
|
# <li>不填或填0,表示转码后的视频持续到原始视频的末尾终止;</li>
|
19450
19471
|
# <li>当数值大于0时(假设为 n),表示转码后的视频持续到原始视频第 n 秒时终止;</li>
|
19451
19472
|
# <li>当数值小于0时(假设为 -n),表示转码后的视频持续到原始视频结束 n 秒前终止。</li>
|
19452
19473
|
# @type EndTimeOffset: Float
|
19474
|
+
# @param StartTimeOffset: 转码后的视频的起始时间偏移,单位:秒。
|
19475
|
+
# <li>不填或填0,表示转码后的视频从原始视频的起始位置开始;</li>
|
19476
|
+
# <li>当数值大于0时(假设为 n),表示转码后的视频从原始视频的第 n 秒位置开始;</li>
|
19477
|
+
# <li>当数值小于0时(假设为 -n),表示转码后的视频从原始视频结束 n 秒前的位置开始。</li>
|
19478
|
+
# @type StartTimeOffset: Float
|
19453
19479
|
|
19454
|
-
attr_accessor :Definition, :WatermarkSet, :
|
19480
|
+
attr_accessor :Definition, :WatermarkSet, :TraceWatermark, :HeadTailSet, :MosaicSet, :EndTimeOffset, :StartTimeOffset
|
19455
19481
|
|
19456
|
-
def initialize(definition=nil, watermarkset=nil,
|
19482
|
+
def initialize(definition=nil, watermarkset=nil, tracewatermark=nil, headtailset=nil, mosaicset=nil, endtimeoffset=nil, starttimeoffset=nil)
|
19457
19483
|
@Definition = definition
|
19458
19484
|
@WatermarkSet = watermarkset
|
19459
|
-
@
|
19485
|
+
@TraceWatermark = tracewatermark
|
19460
19486
|
@HeadTailSet = headtailset
|
19461
|
-
@
|
19487
|
+
@MosaicSet = mosaicset
|
19462
19488
|
@EndTimeOffset = endtimeoffset
|
19489
|
+
@StartTimeOffset = starttimeoffset
|
19463
19490
|
end
|
19464
19491
|
|
19465
19492
|
def deserialize(params)
|
@@ -19472,13 +19499,9 @@ module TencentCloud
|
|
19472
19499
|
@WatermarkSet << watermarkinput_tmp
|
19473
19500
|
end
|
19474
19501
|
end
|
19475
|
-
unless params['
|
19476
|
-
@
|
19477
|
-
params['
|
19478
|
-
mosaicinput_tmp = MosaicInput.new
|
19479
|
-
mosaicinput_tmp.deserialize(i)
|
19480
|
-
@MosaicSet << mosaicinput_tmp
|
19481
|
-
end
|
19502
|
+
unless params['TraceWatermark'].nil?
|
19503
|
+
@TraceWatermark = TraceWatermarkInput.new
|
19504
|
+
@TraceWatermark.deserialize(params['TraceWatermark'])
|
19482
19505
|
end
|
19483
19506
|
unless params['HeadTailSet'].nil?
|
19484
19507
|
@HeadTailSet = []
|
@@ -19488,8 +19511,16 @@ module TencentCloud
|
|
19488
19511
|
@HeadTailSet << headtailtaskinput_tmp
|
19489
19512
|
end
|
19490
19513
|
end
|
19491
|
-
|
19514
|
+
unless params['MosaicSet'].nil?
|
19515
|
+
@MosaicSet = []
|
19516
|
+
params['MosaicSet'].each do |i|
|
19517
|
+
mosaicinput_tmp = MosaicInput.new
|
19518
|
+
mosaicinput_tmp.deserialize(i)
|
19519
|
+
@MosaicSet << mosaicinput_tmp
|
19520
|
+
end
|
19521
|
+
end
|
19492
19522
|
@EndTimeOffset = params['EndTimeOffset']
|
19523
|
+
@StartTimeOffset = params['StartTimeOffset']
|
19493
19524
|
end
|
19494
19525
|
end
|
19495
19526
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-vod
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.340
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|