tencentcloud-sdk-vod 1.0.352 → 1.0.355

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/v20180717/models.rb +33 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94e784f1dd7017f7ea541d1b4a1b801f131162ba
4
- data.tar.gz: 85d66634f4f898b3189fc8f868f9638a5e109411
3
+ metadata.gz: 97e5543bf51861db8dd52e4168fa60fa66a1be8a
4
+ data.tar.gz: d5f5ee9bacebf741378e8c91bab8e0abfb975cc4
5
5
  SHA512:
6
- metadata.gz: 2f44844857f207cd2639da38b10c8571d7b47030ff7d181abf26ffbf8bd3b12255a4989ac82ea4490457fcbc7e3824a550b7e521009fc71dfda4c2418dec2af3
7
- data.tar.gz: 0fd02ddc481440023816e12fa13e4b3fe07b56c88dac65870bbaa846f4afcdfd579ef00205c113df97575fa19e5ba2ab1ecc900dfcdad76f6207f13e0605f9db
6
+ metadata.gz: 42035d14840656e98bbcd4b67f0784cb39e8ef2320d092fb62a54188fcb47aa356af580da5381baaff906bf0b0410f7f0a668c4f33e1649c254818aa2d6669f7
7
+ data.tar.gz: c2d77947dc9c569f53fc40ca0c6e928801ba04a77243c49409a8e512ebf632cbe869a77381511e3b69a6b93febab72c03aa25af4218635596406e81d74e1dcf0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.352
1
+ 1.0.355
@@ -8518,6 +8518,8 @@ module TencentCloud
8518
8518
  # @type StartTime: String
8519
8519
  # @param EndTime: 结束日期,需大于等于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#52)。
8520
8520
  # @type EndTime: String
8521
+ # @param SubAppId: <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8522
+ # @type SubAppId: Integer
8521
8523
  # @param Type: 查询视频处理任务类型,目前支持的任务类型包括:
8522
8524
  # <li> Transcoding: 普通转码</li>
8523
8525
  # <li> Transcoding-TESHD: 极速高清转码</li>
@@ -8525,26 +8527,26 @@ module TencentCloud
8525
8527
  # <li> Editing-TESHD: 极速高清视频编辑</li>
8526
8528
  # <li> AdaptiveBitrateStreaming: 自适应码流</li>
8527
8529
  # <li> ContentAudit: 内容审核</li>
8530
+ # <li> ContentRecognition: 内容识别</li>
8528
8531
  # <li> RemoveWatermark: 去除水印</li>
8532
+ # <li> ExtractTraceWatermark: 提取水印</li>
8529
8533
  # <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
8530
8534
  # @type Type: String
8531
- # @param SubAppId: 点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
8532
- # @type SubAppId: Integer
8533
8535
 
8534
- attr_accessor :StartTime, :EndTime, :Type, :SubAppId
8536
+ attr_accessor :StartTime, :EndTime, :SubAppId, :Type
8535
8537
 
8536
- def initialize(starttime=nil, endtime=nil, type=nil, subappid=nil)
8538
+ def initialize(starttime=nil, endtime=nil, subappid=nil, type=nil)
8537
8539
  @StartTime = starttime
8538
8540
  @EndTime = endtime
8539
- @Type = type
8540
8541
  @SubAppId = subappid
8542
+ @Type = type
8541
8543
  end
8542
8544
 
8543
8545
  def deserialize(params)
8544
8546
  @StartTime = params['StartTime']
8545
8547
  @EndTime = params['EndTime']
8546
- @Type = params['Type']
8547
8548
  @SubAppId = params['SubAppId']
8549
+ @Type = params['Type']
8548
8550
  end
8549
8551
  end
8550
8552
 
@@ -11298,14 +11300,20 @@ module TencentCloud
11298
11300
  # <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
11299
11301
  # <li>repeat:水印循环播放,直到视频结束(默认值)。</li>
11300
11302
  # @type RepeatType: String
11303
+ # @param Transparency: 图片透明度,取值范围:[0, 100]
11304
+ # <li>0:完全不透明</li>
11305
+ # <li>100:完全透明</li>
11306
+ # 默认值:0。
11307
+ # @type Transparency: Integer
11301
11308
 
11302
- attr_accessor :ImageContent, :Width, :Height, :RepeatType
11309
+ attr_accessor :ImageContent, :Width, :Height, :RepeatType, :Transparency
11303
11310
 
11304
- def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
11311
+ def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
11305
11312
  @ImageContent = imagecontent
11306
11313
  @Width = width
11307
11314
  @Height = height
11308
11315
  @RepeatType = repeattype
11316
+ @Transparency = transparency
11309
11317
  end
11310
11318
 
11311
11319
  def deserialize(params)
@@ -11313,6 +11321,7 @@ module TencentCloud
11313
11321
  @Width = params['Width']
11314
11322
  @Height = params['Height']
11315
11323
  @RepeatType = params['RepeatType']
11324
+ @Transparency = params['Transparency']
11316
11325
  end
11317
11326
  end
11318
11327
 
@@ -11333,14 +11342,19 @@ module TencentCloud
11333
11342
  # <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
11334
11343
  # <li>repeat:水印循环播放,直到视频结束。</li>
11335
11344
  # @type RepeatType: String
11345
+ # @param Transparency: 图片透明度,取值范围:[0, 100]
11346
+ # <li>0:完全不透明</li>
11347
+ # <li>100:完全透明。</li>
11348
+ # @type Transparency: Integer
11336
11349
 
11337
- attr_accessor :ImageContent, :Width, :Height, :RepeatType
11350
+ attr_accessor :ImageContent, :Width, :Height, :RepeatType, :Transparency
11338
11351
 
11339
- def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
11352
+ def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
11340
11353
  @ImageContent = imagecontent
11341
11354
  @Width = width
11342
11355
  @Height = height
11343
11356
  @RepeatType = repeattype
11357
+ @Transparency = transparency
11344
11358
  end
11345
11359
 
11346
11360
  def deserialize(params)
@@ -11348,6 +11362,7 @@ module TencentCloud
11348
11362
  @Width = params['Width']
11349
11363
  @Height = params['Height']
11350
11364
  @RepeatType = params['RepeatType']
11365
+ @Transparency = params['Transparency']
11351
11366
  end
11352
11367
  end
11353
11368
 
@@ -11369,14 +11384,19 @@ module TencentCloud
11369
11384
  # <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
11370
11385
  # <li>repeat:水印循环播放,直到视频结束。</li>
11371
11386
  # @type RepeatType: String
11387
+ # @param Transparency: 图片透明度,取值范围:[0, 100]
11388
+ # <li>0:完全不透明</li>
11389
+ # <li>100:完全透明。</li>
11390
+ # @type Transparency: Integer
11372
11391
 
11373
- attr_accessor :ImageUrl, :Width, :Height, :RepeatType
11392
+ attr_accessor :ImageUrl, :Width, :Height, :RepeatType, :Transparency
11374
11393
 
11375
- def initialize(imageurl=nil, width=nil, height=nil, repeattype=nil)
11394
+ def initialize(imageurl=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
11376
11395
  @ImageUrl = imageurl
11377
11396
  @Width = width
11378
11397
  @Height = height
11379
11398
  @RepeatType = repeattype
11399
+ @Transparency = transparency
11380
11400
  end
11381
11401
 
11382
11402
  def deserialize(params)
@@ -11384,6 +11404,7 @@ module TencentCloud
11384
11404
  @Width = params['Width']
11385
11405
  @Height = params['Height']
11386
11406
  @RepeatType = params['RepeatType']
11407
+ @Transparency = params['Transparency']
11387
11408
  end
11388
11409
  end
11389
11410
 
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.352
4
+ version: 1.0.355
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-07-10 00:00:00.000000000 Z
11
+ date: 2022-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common