tencentcloud-sdk-vod 3.0.438 → 3.0.439

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180717/models.rb +47 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c66db1f01f592d8f245508db02f95c41f7e6c088
4
- data.tar.gz: 0142dc704e405b0d4a88e9e6b279865a3fa37adc
3
+ metadata.gz: 1f376d6d167cf78d304d93e5edc2e5d94c1312f0
4
+ data.tar.gz: 8de05429ec6d7b081824e084138b6739d8992d2f
5
5
  SHA512:
6
- metadata.gz: 4735676c409c261cd3de1ab25cac2a9e6e4bba7b46726c1ba6e2f178cfb1a4327f934779d5ae4bb0fc6fdf02de5880731d369c93882ccdc75e5cab5590d635f9
7
- data.tar.gz: 60ef9e12de2925a2d879946e7ed420ea335f59e884907a696bde4617e70eb3cfcf75c95a7a8817114ae607cd7ef1771f78ad8330141a00ba6e99dd75eac9f863
6
+ metadata.gz: b1da0ac5b49b80186a3a3f1a28e85690c2d77f8c3d010ebb73bb44ac0e0ef4fab78d92f2172bcd1045a01ca822b773a6dd88578689ddb6fe36fcff8d5cfa3ef2
7
+ data.tar.gz: 9c2011d13e484b50c5f0765195acfad647e80b73058a58458a0ef271160af4e317053a51e25d57d2b8f5770064e8716a055322570c0bb80aacb26614e79ba079
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.438
1
+ 3.0.439
@@ -335,10 +335,12 @@ module TencentCloud
335
335
  # @type CreateTime: String
336
336
  # @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
337
337
  # @type UpdateTime: String
338
+ # @param SegmentType: 切片类型,仅当 Format 为 HLS 时有效。
339
+ # @type SegmentType: String
338
340
 
339
- attr_accessor :Definition, :Type, :Name, :Comment, :Format, :DrmType, :DrmKeyProvider, :StreamInfos, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :CreateTime, :UpdateTime
341
+ attr_accessor :Definition, :Type, :Name, :Comment, :Format, :DrmType, :DrmKeyProvider, :StreamInfos, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :CreateTime, :UpdateTime, :SegmentType
340
342
 
341
- def initialize(definition=nil, type=nil, name=nil, comment=nil, format=nil, drmtype=nil, drmkeyprovider=nil, streaminfos=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, createtime=nil, updatetime=nil)
343
+ def initialize(definition=nil, type=nil, name=nil, comment=nil, format=nil, drmtype=nil, drmkeyprovider=nil, streaminfos=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, createtime=nil, updatetime=nil, segmenttype=nil)
342
344
  @Definition = definition
343
345
  @Type = type
344
346
  @Name = name
@@ -351,6 +353,7 @@ module TencentCloud
351
353
  @DisableHigherVideoResolution = disablehighervideoresolution
352
354
  @CreateTime = createtime
353
355
  @UpdateTime = updatetime
356
+ @SegmentType = segmenttype
354
357
  end
355
358
 
356
359
  def deserialize(params)
@@ -373,6 +376,7 @@ module TencentCloud
373
376
  @DisableHigherVideoResolution = params['DisableHigherVideoResolution']
374
377
  @CreateTime = params['CreateTime']
375
378
  @UpdateTime = params['UpdateTime']
379
+ @SegmentType = params['SegmentType']
376
380
  end
377
381
  end
378
382
 
@@ -5187,10 +5191,15 @@ module TencentCloud
5187
5191
  # @type DisableHigherVideoResolution: Integer
5188
5192
  # @param Comment: 模板描述信息,长度限制:256 个字符。
5189
5193
  # @type Comment: String
5194
+ # @param SegmentType: 切片类型,当 Format 为 HLS 时有效,可选值:
5195
+ # <li>ts:ts 切片;</li>
5196
+ # <li>fmp4:fmp4 切片。</li>
5197
+ # 默认值:ts。
5198
+ # @type SegmentType: String
5190
5199
 
5191
- attr_accessor :Format, :StreamInfos, :SubAppId, :Name, :DrmType, :DrmKeyProvider, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :Comment
5200
+ attr_accessor :Format, :StreamInfos, :SubAppId, :Name, :DrmType, :DrmKeyProvider, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :Comment, :SegmentType
5192
5201
 
5193
- def initialize(format=nil, streaminfos=nil, subappid=nil, name=nil, drmtype=nil, drmkeyprovider=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, comment=nil)
5202
+ def initialize(format=nil, streaminfos=nil, subappid=nil, name=nil, drmtype=nil, drmkeyprovider=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, comment=nil, segmenttype=nil)
5194
5203
  @Format = format
5195
5204
  @StreamInfos = streaminfos
5196
5205
  @SubAppId = subappid
@@ -5200,6 +5209,7 @@ module TencentCloud
5200
5209
  @DisableHigherVideoBitrate = disablehighervideobitrate
5201
5210
  @DisableHigherVideoResolution = disablehighervideoresolution
5202
5211
  @Comment = comment
5212
+ @SegmentType = segmenttype
5203
5213
  end
5204
5214
 
5205
5215
  def deserialize(params)
@@ -5219,6 +5229,7 @@ module TencentCloud
5219
5229
  @DisableHigherVideoBitrate = params['DisableHigherVideoBitrate']
5220
5230
  @DisableHigherVideoResolution = params['DisableHigherVideoResolution']
5221
5231
  @Comment = params['Comment']
5232
+ @SegmentType = params['SegmentType']
5222
5233
  end
5223
5234
  end
5224
5235
 
@@ -6248,10 +6259,15 @@ module TencentCloud
6248
6259
  # @type AudioTemplate: :class:`Tencentcloud::Vod.v20180717.models.AudioTemplateInfo`
6249
6260
  # @param TEHDConfig: 极速高清转码参数。
6250
6261
  # @type TEHDConfig: :class:`Tencentcloud::Vod.v20180717.models.TEHDConfig`
6262
+ # @param SegmentType: 切片类型,当 Container 为 hls 时有效,可选值:
6263
+ # <li>ts:ts 切片;</li>
6264
+ # <li>fmp4:fmp4 切片。</li>
6265
+ # 默认值:ts。
6266
+ # @type SegmentType: String
6251
6267
 
6252
- attr_accessor :Container, :SubAppId, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig
6268
+ attr_accessor :Container, :SubAppId, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :SegmentType
6253
6269
 
6254
- def initialize(container=nil, subappid=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil)
6270
+ def initialize(container=nil, subappid=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, segmenttype=nil)
6255
6271
  @Container = container
6256
6272
  @SubAppId = subappid
6257
6273
  @Name = name
@@ -6261,6 +6277,7 @@ module TencentCloud
6261
6277
  @VideoTemplate = videotemplate
6262
6278
  @AudioTemplate = audiotemplate
6263
6279
  @TEHDConfig = tehdconfig
6280
+ @SegmentType = segmenttype
6264
6281
  end
6265
6282
 
6266
6283
  def deserialize(params)
@@ -6282,6 +6299,7 @@ module TencentCloud
6282
6299
  @TEHDConfig = TEHDConfig.new
6283
6300
  @TEHDConfig.deserialize(params['TEHDConfig'])
6284
6301
  end
6302
+ @SegmentType = params['SegmentType']
6285
6303
  end
6286
6304
  end
6287
6305
 
@@ -14293,10 +14311,14 @@ module TencentCloud
14293
14311
  # @type StreamInfos: Array
14294
14312
  # @param Comment: 模板描述信息,长度限制:256 个字符。
14295
14313
  # @type Comment: String
14314
+ # @param SegmentType: 切片类型,当 Format 为 HLS 时有效,可选值:
14315
+ # <li>ts:ts 切片;</li>
14316
+ # <li>fmp4:fmp4 切片。</li>
14317
+ # @type SegmentType: String
14296
14318
 
14297
- attr_accessor :Definition, :SubAppId, :Name, :Format, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :StreamInfos, :Comment
14319
+ attr_accessor :Definition, :SubAppId, :Name, :Format, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :StreamInfos, :Comment, :SegmentType
14298
14320
 
14299
- def initialize(definition=nil, subappid=nil, name=nil, format=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, streaminfos=nil, comment=nil)
14321
+ def initialize(definition=nil, subappid=nil, name=nil, format=nil, disablehighervideobitrate=nil, disablehighervideoresolution=nil, streaminfos=nil, comment=nil, segmenttype=nil)
14300
14322
  @Definition = definition
14301
14323
  @SubAppId = subappid
14302
14324
  @Name = name
@@ -14305,6 +14327,7 @@ module TencentCloud
14305
14327
  @DisableHigherVideoResolution = disablehighervideoresolution
14306
14328
  @StreamInfos = streaminfos
14307
14329
  @Comment = comment
14330
+ @SegmentType = segmenttype
14308
14331
  end
14309
14332
 
14310
14333
  def deserialize(params)
@@ -14323,6 +14346,7 @@ module TencentCloud
14323
14346
  end
14324
14347
  end
14325
14348
  @Comment = params['Comment']
14349
+ @SegmentType = params['SegmentType']
14326
14350
  end
14327
14351
  end
14328
14352
 
@@ -15428,10 +15452,14 @@ module TencentCloud
15428
15452
  # @type AudioTemplate: :class:`Tencentcloud::Vod.v20180717.models.AudioTemplateInfoForUpdate`
15429
15453
  # @param TEHDConfig: 极速高清转码参数。
15430
15454
  # @type TEHDConfig: :class:`Tencentcloud::Vod.v20180717.models.TEHDConfigForUpdate`
15455
+ # @param SegmentType: 切片类型,当 Container 为 hls 时有效,可选值:
15456
+ # <li>ts:ts 切片;</li>
15457
+ # <li>fmp4:fmp4 切片。</li>
15458
+ # @type SegmentType: String
15431
15459
 
15432
- attr_accessor :Definition, :SubAppId, :Container, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig
15460
+ attr_accessor :Definition, :SubAppId, :Container, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :SegmentType
15433
15461
 
15434
- def initialize(definition=nil, subappid=nil, container=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil)
15462
+ def initialize(definition=nil, subappid=nil, container=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, segmenttype=nil)
15435
15463
  @Definition = definition
15436
15464
  @SubAppId = subappid
15437
15465
  @Container = container
@@ -15442,6 +15470,7 @@ module TencentCloud
15442
15470
  @VideoTemplate = videotemplate
15443
15471
  @AudioTemplate = audiotemplate
15444
15472
  @TEHDConfig = tehdconfig
15473
+ @SegmentType = segmenttype
15445
15474
  end
15446
15475
 
15447
15476
  def deserialize(params)
@@ -15464,6 +15493,7 @@ module TencentCloud
15464
15493
  @TEHDConfig = TEHDConfigForUpdate.new
15465
15494
  @TEHDConfig.deserialize(params['TEHDConfig'])
15466
15495
  end
15496
+ @SegmentType = params['SegmentType']
15467
15497
  end
15468
15498
  end
15469
15499
 
@@ -19677,6 +19707,7 @@ module TencentCloud
19677
19707
  # <li>转码时长的数据,单位是秒。</li>
19678
19708
  # <li>流量数据,单位是字节。</li>
19679
19709
  # <li>带宽数据,单位是比特每秒。</li>
19710
+ # <li>直播剪辑数据,单位是秒。</li>
19680
19711
  # @type Value: Integer
19681
19712
 
19682
19713
  attr_accessor :Time, :Value
@@ -20815,10 +20846,12 @@ module TencentCloud
20815
20846
  # @type CreateTime: String
20816
20847
  # @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
20817
20848
  # @type UpdateTime: String
20849
+ # @param SegmentType: 切片类型,仅当 Container 为 hls 时有效。
20850
+ # @type SegmentType: String
20818
20851
 
20819
- attr_accessor :Definition, :Container, :Name, :Comment, :Type, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :ContainerType, :CreateTime, :UpdateTime
20852
+ attr_accessor :Definition, :Container, :Name, :Comment, :Type, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :ContainerType, :CreateTime, :UpdateTime, :SegmentType
20820
20853
 
20821
- def initialize(definition=nil, container=nil, name=nil, comment=nil, type=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, containertype=nil, createtime=nil, updatetime=nil)
20854
+ def initialize(definition=nil, container=nil, name=nil, comment=nil, type=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, containertype=nil, createtime=nil, updatetime=nil, segmenttype=nil)
20822
20855
  @Definition = definition
20823
20856
  @Container = container
20824
20857
  @Name = name
@@ -20832,6 +20865,7 @@ module TencentCloud
20832
20865
  @ContainerType = containertype
20833
20866
  @CreateTime = createtime
20834
20867
  @UpdateTime = updatetime
20868
+ @SegmentType = segmenttype
20835
20869
  end
20836
20870
 
20837
20871
  def deserialize(params)
@@ -20857,6 +20891,7 @@ module TencentCloud
20857
20891
  @ContainerType = params['ContainerType']
20858
20892
  @CreateTime = params['CreateTime']
20859
20893
  @UpdateTime = params['UpdateTime']
20894
+ @SegmentType = params['SegmentType']
20860
20895
  end
20861
20896
  end
20862
20897
 
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: 3.0.438
4
+ version: 3.0.439
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-10-27 00:00:00.000000000 Z
11
+ date: 2022-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common