tencentcloud-sdk-vod 1.0.357 → 1.0.358

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 +22 -14
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aee93a7237904f34e799e642ce13d844a4fbae01
4
- data.tar.gz: f6ffcaaaedd3161c508bf5d042bc346f3a591ea9
3
+ metadata.gz: f58d5bb49b7f166bdaf7966ebc48068c90ae47d5
4
+ data.tar.gz: f970270e1312b08cda1077fc999b796dbcae2726
5
5
  SHA512:
6
- metadata.gz: 7fcbfde5c125f8314ab692f0b006f4d4721fa4f314f0d3ef0563330c98bb3c154311f84e735e7a660f394ab6bc662160b43590ea945656596a7eb54c646cda67
7
- data.tar.gz: 6b261e791e18388843114d36a11fe9f66576c0d7cdea723f49bba963d5e8fe7dd9ca9210477f4d9ae35806dacfde53591225c55d93b0e2b2a057d800bcb84388
6
+ metadata.gz: b20a66e543e5553bfd58dd76335980a3635c3a0d19076acc0678791490da2c759189cbf4772db179e12030074aad13326f3c8c1999bf43e61e70f4aff3e11af6
7
+ data.tar.gz: 6786fa65b0ea82cde83755990bfcc3dc2fb2bc083e3d12ff0daf7a67645b1f0fa551bb9cb7da8d268ef10cb723ec16982e6cb9d2e5ecd26e1b7d6ddda8328c16
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.357
1
+ 1.0.358
@@ -11964,33 +11964,37 @@ module TencentCloud
11964
11964
 
11965
11965
  # 分类信息描述
11966
11966
  class MediaClassInfo < TencentCloud::Common::AbstractModel
11967
- # @param ClassId: 分类 ID
11967
+ # @param ClassId: 分类 ID
11968
11968
  # @type ClassId: Integer
11969
11969
  # @param ParentId: 父类 ID,一级分类的父类 ID 为 -1。
11970
11970
  # @type ParentId: Integer
11971
- # @param ClassName: 分类名称
11972
- # @type ClassName: String
11971
+ # @param Name: 分类名称。
11972
+ # @type Name: String
11973
11973
  # @param Level: 分类级别,一级分类为 0,最大值为 3,即最多允许 4 级分类层次。
11974
11974
  # @type Level: Integer
11975
- # @param SubClassIdSet: 当前分类的第一级子类 ID 集合
11975
+ # @param SubClassIdSet: 当前分类的第一级子类 ID 集合。
11976
11976
  # @type SubClassIdSet: Array
11977
+ # @param ClassName: 分类名称(该字段已不推荐使用,建议使用新的分类名称字段 Name)。
11978
+ # @type ClassName: String
11977
11979
 
11978
- attr_accessor :ClassId, :ParentId, :ClassName, :Level, :SubClassIdSet
11980
+ attr_accessor :ClassId, :ParentId, :Name, :Level, :SubClassIdSet, :ClassName
11979
11981
 
11980
- def initialize(classid=nil, parentid=nil, classname=nil, level=nil, subclassidset=nil)
11982
+ def initialize(classid=nil, parentid=nil, name=nil, level=nil, subclassidset=nil, classname=nil)
11981
11983
  @ClassId = classid
11982
11984
  @ParentId = parentid
11983
- @ClassName = classname
11985
+ @Name = name
11984
11986
  @Level = level
11985
11987
  @SubClassIdSet = subclassidset
11988
+ @ClassName = classname
11986
11989
  end
11987
11990
 
11988
11991
  def deserialize(params)
11989
11992
  @ClassId = params['ClassId']
11990
11993
  @ParentId = params['ParentId']
11991
- @ClassName = params['ClassName']
11994
+ @Name = params['Name']
11992
11995
  @Level = params['Level']
11993
11996
  @SubClassIdSet = params['SubClassIdSet']
11997
+ @ClassName = params['ClassName']
11994
11998
  end
11995
11999
  end
11996
12000
 
@@ -18651,8 +18655,8 @@ module TencentCloud
18651
18655
  class SubAppIdInfo < TencentCloud::Common::AbstractModel
18652
18656
  # @param SubAppId: 子应用 ID。
18653
18657
  # @type SubAppId: Integer
18654
- # @param Name: 子应用名称。
18655
- # @type Name: String
18658
+ # @param SubAppIdName: 子应用名称。
18659
+ # @type SubAppIdName: String
18656
18660
  # @param Description: 子应用简介。
18657
18661
  # @type Description: String
18658
18662
  # @param CreateTime: 子应用创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
@@ -18663,23 +18667,27 @@ module TencentCloud
18663
18667
  # <li>Destroying:销毁中。</li>
18664
18668
  # <li>Destroyed:销毁完成。</li>
18665
18669
  # @type Status: String
18670
+ # @param Name: 子应用名称(该字段已不推荐使用,建议使用新的子应用名称字段 SubAppIdName)。
18671
+ # @type Name: String
18666
18672
 
18667
- attr_accessor :SubAppId, :Name, :Description, :CreateTime, :Status
18673
+ attr_accessor :SubAppId, :SubAppIdName, :Description, :CreateTime, :Status, :Name
18668
18674
 
18669
- def initialize(subappid=nil, name=nil, description=nil, createtime=nil, status=nil)
18675
+ def initialize(subappid=nil, subappidname=nil, description=nil, createtime=nil, status=nil, name=nil)
18670
18676
  @SubAppId = subappid
18671
- @Name = name
18677
+ @SubAppIdName = subappidname
18672
18678
  @Description = description
18673
18679
  @CreateTime = createtime
18674
18680
  @Status = status
18681
+ @Name = name
18675
18682
  end
18676
18683
 
18677
18684
  def deserialize(params)
18678
18685
  @SubAppId = params['SubAppId']
18679
- @Name = params['Name']
18686
+ @SubAppIdName = params['SubAppIdName']
18680
18687
  @Description = params['Description']
18681
18688
  @CreateTime = params['CreateTime']
18682
18689
  @Status = params['Status']
18690
+ @Name = params['Name']
18683
18691
  end
18684
18692
  end
18685
18693
 
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.357
4
+ version: 1.0.358
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-17 00:00:00.000000000 Z
11
+ date: 2022-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common