tencentcloud-sdk-vod 3.0.450 → 3.0.451

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 +25 -6
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 78e9014b78e42e2a0d8d86ac4f4f9cb1a03b49ff
4
- data.tar.gz: 5be33648fc0ecafa75b617efe3d94f7ad8fa5f20
3
+ metadata.gz: 2f3b9eea9a87c4cee673eef88da278727f75830b
4
+ data.tar.gz: f0005d884bab60b416070cf349a8c0ec0af253a1
5
5
  SHA512:
6
- metadata.gz: b075d57b9b9cddb649fab180beb1b971fbf37ad5567fa48e2ffa94dac9cbd438112518766bc1e646d041569f5598089857b5d59006cdbebfdfb7544e6d3a86e0
7
- data.tar.gz: 22afb199e825d9ac47d7cfdf373f3a1543a89f65cff00609eccbf6df4991091655ac5fca5b287212bd48cd30aaf9b1bddd6eff59abdb1c98399f5be219937dc6
6
+ metadata.gz: 720772cd6c5028d6725bab5ea5815a04516bf36641a7b00ca8b14420a1fc55d78bc8d88d57c0767743fd2ee8d8fb19b6e054ff711076ba1c49866a8b6b1d7b99
7
+ data.tar.gz: a053fa14d25e89fd0a838b8f0b7aa495b74ed54578f0c0c022ba9f0fc7291b9fe8330616308238dffe6cf32c1ded5106ad6470e2486b07c428a7e1752d9df85e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.450
1
+ 3.0.451
@@ -5682,10 +5682,16 @@ module TencentCloud
5682
5682
  # <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
5683
5683
  # 默认值:open。
5684
5684
  # @type ResolutionAdaptive: String
5685
+ # @param Format: 图片格式,取值:
5686
+ # <li> jpg:jpg 格式;</li>
5687
+ # <li> png:png 格式;</li>
5688
+ # <li> webp:webp 格式。</li>
5689
+ # 默认值:jpg。
5690
+ # @type Format: String
5685
5691
 
5686
- attr_accessor :SampleType, :SampleInterval, :RowCount, :ColumnCount, :SubAppId, :Name, :Comment, :FillType, :Width, :Height, :ResolutionAdaptive
5692
+ attr_accessor :SampleType, :SampleInterval, :RowCount, :ColumnCount, :SubAppId, :Name, :Comment, :FillType, :Width, :Height, :ResolutionAdaptive, :Format
5687
5693
 
5688
- def initialize(sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, subappid=nil, name=nil, comment=nil, filltype=nil, width=nil, height=nil, resolutionadaptive=nil)
5694
+ def initialize(sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, subappid=nil, name=nil, comment=nil, filltype=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil)
5689
5695
  @SampleType = sampletype
5690
5696
  @SampleInterval = sampleinterval
5691
5697
  @RowCount = rowcount
@@ -5697,6 +5703,7 @@ module TencentCloud
5697
5703
  @Width = width
5698
5704
  @Height = height
5699
5705
  @ResolutionAdaptive = resolutionadaptive
5706
+ @Format = format
5700
5707
  end
5701
5708
 
5702
5709
  def deserialize(params)
@@ -5711,6 +5718,7 @@ module TencentCloud
5711
5718
  @Width = params['Width']
5712
5719
  @Height = params['Height']
5713
5720
  @ResolutionAdaptive = params['ResolutionAdaptive']
5721
+ @Format = params['Format']
5714
5722
  end
5715
5723
  end
5716
5724
 
@@ -11621,10 +11629,12 @@ module TencentCloud
11621
11629
  # @type FillType: String
11622
11630
  # @param Comment: 模板描述信息。
11623
11631
  # @type Comment: String
11632
+ # @param Format: 图片格式。
11633
+ # @type Format: String
11624
11634
 
11625
- attr_accessor :Definition, :Type, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :CreateTime, :UpdateTime, :FillType, :Comment
11635
+ attr_accessor :Definition, :Type, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :CreateTime, :UpdateTime, :FillType, :Comment, :Format
11626
11636
 
11627
- def initialize(definition=nil, type=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, createtime=nil, updatetime=nil, filltype=nil, comment=nil)
11637
+ def initialize(definition=nil, type=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, createtime=nil, updatetime=nil, filltype=nil, comment=nil, format=nil)
11628
11638
  @Definition = definition
11629
11639
  @Type = type
11630
11640
  @Name = name
@@ -11639,6 +11649,7 @@ module TencentCloud
11639
11649
  @UpdateTime = updatetime
11640
11650
  @FillType = filltype
11641
11651
  @Comment = comment
11652
+ @Format = format
11642
11653
  end
11643
11654
 
11644
11655
  def deserialize(params)
@@ -11656,6 +11667,7 @@ module TencentCloud
11656
11667
  @UpdateTime = params['UpdateTime']
11657
11668
  @FillType = params['FillType']
11658
11669
  @Comment = params['Comment']
11670
+ @Format = params['Format']
11659
11671
  end
11660
11672
  end
11661
11673
 
@@ -14773,10 +14785,15 @@ module TencentCloud
14773
14785
  # @type FillType: String
14774
14786
  # @param Comment: 模板描述信息,长度限制:256 个字符。
14775
14787
  # @type Comment: String
14788
+ # @param Format: 图片格式,取值:
14789
+ # <li> jpg:jpg 格式;</li>
14790
+ # <li> png:png 格式;</li>
14791
+ # <li> webp:webp 格式。</li>
14792
+ # @type Format: String
14776
14793
 
14777
- attr_accessor :Definition, :SubAppId, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :FillType, :Comment
14794
+ attr_accessor :Definition, :SubAppId, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :FillType, :Comment, :Format
14778
14795
 
14779
- def initialize(definition=nil, subappid=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, filltype=nil, comment=nil)
14796
+ def initialize(definition=nil, subappid=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, filltype=nil, comment=nil, format=nil)
14780
14797
  @Definition = definition
14781
14798
  @SubAppId = subappid
14782
14799
  @Name = name
@@ -14789,6 +14806,7 @@ module TencentCloud
14789
14806
  @ColumnCount = columncount
14790
14807
  @FillType = filltype
14791
14808
  @Comment = comment
14809
+ @Format = format
14792
14810
  end
14793
14811
 
14794
14812
  def deserialize(params)
@@ -14804,6 +14822,7 @@ module TencentCloud
14804
14822
  @ColumnCount = params['ColumnCount']
14805
14823
  @FillType = params['FillType']
14806
14824
  @Comment = params['Comment']
14825
+ @Format = params['Format']
14807
14826
  end
14808
14827
  end
14809
14828
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-vod
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.450
4
+ version: 3.0.451
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud