tencentcloud-sdk-ame 3.0.510 → 3.0.512

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/v20190916/models.rb +21 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b918c729570b9a6d45fcefbaaf513863ed6b95d
4
- data.tar.gz: a19e438294b9d477a21128cfe69942a3ea73ee07
3
+ metadata.gz: 8027546521e3ac5399d896eebecea96f3e3a6d5c
4
+ data.tar.gz: fa9c3d6ec0e0df4b31107b03dccd492847d201c8
5
5
  SHA512:
6
- metadata.gz: 4495fcbd7816a5bb3fe81bf26009bd1fbafd0aba5224117cfe62b9461da48df3a636d0d54ac95a3892ca58cbf5a9b12283eb77cdcbbd5a88361be85e409f5688
7
- data.tar.gz: 52139ed98f666531d2392b0835022d324f64deeb1e42b5950bbc34704bfc7798c360ef66e74b474211d7375afa7e18368fc5334f37163b09327bd9b961a717af
6
+ metadata.gz: 5aa64efce7d473453acdfd9dad7f87b96bbf052756ddbbce47ca897212af91722949bb8ab705e84c873ff1610bf9f3c6a3294d65f4cd4d2226adf2305d8d79ed
7
+ data.tar.gz: f114e3a00541d0b47c7362abd1e475a0f71bfc4e18902ca15885f13d23b9e2cf88239c4b1aa5743f43a651a282b45a11ba67e233d4643388709e6b603c652505
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.510
1
+ 3.0.512
@@ -2750,16 +2750,20 @@ module TencentCloud
2750
2750
  # @type Index: Integer
2751
2751
  # @param ChangedIndex: 当 Type 取 Move 时,必填,表示移动歌曲的目标位置。
2752
2752
  # @type ChangedIndex: Integer
2753
- # @param MusicIds: 歌曲 ID 列表,当 Type 取 Add 时,必填。
2753
+ # @param MusicIds: 歌曲 ID 列表,当 Type 取 Add 时,与MusicURLs必填其中一项。
2754
2754
  # @type MusicIds: Array
2755
+ # @param MusicURLs: 歌曲 URL 列表,当 Type 取 Add 时,与MusicIds必填其中一项。
2756
+ # 注:URL必须以.mp3结尾且必须是mp3编码文件。
2757
+ # @type MusicURLs: Array
2755
2758
 
2756
- attr_accessor :Type, :Index, :ChangedIndex, :MusicIds
2759
+ attr_accessor :Type, :Index, :ChangedIndex, :MusicIds, :MusicURLs
2757
2760
 
2758
- def initialize(type=nil, index=nil, changedindex=nil, musicids=nil)
2761
+ def initialize(type=nil, index=nil, changedindex=nil, musicids=nil, musicurls=nil)
2759
2762
  @Type = type
2760
2763
  @Index = index
2761
2764
  @ChangedIndex = changedindex
2762
2765
  @MusicIds = musicids
2766
+ @MusicURLs = musicurls
2763
2767
  end
2764
2768
 
2765
2769
  def deserialize(params)
@@ -2767,6 +2771,7 @@ module TencentCloud
2767
2771
  @Index = params['Index']
2768
2772
  @ChangedIndex = params['ChangedIndex']
2769
2773
  @MusicIds = params['MusicIds']
2774
+ @MusicURLs = params['MusicURLs']
2770
2775
  end
2771
2776
  end
2772
2777
 
@@ -3045,14 +3050,23 @@ module TencentCloud
3045
3050
  # @type SdkAppId: String
3046
3051
  # @param UserId: 用户唯一标识。
3047
3052
  # @type UserId: String
3053
+ # @param PrivateMapKey: 进房钥匙,若需要权限控制请携带该参数。
3054
+ # [privateMapKey 权限设置](/document/product/647/32240)
3055
+ # @type PrivateMapKey: String
3056
+ # @param Role: 用户角色,目前支持两种角色:
3057
+ # <li>anchor:主播</li>
3058
+ # <li>audience:观众</li>
3059
+ # @type Role: String
3048
3060
 
3049
- attr_accessor :Sign, :RoomId, :SdkAppId, :UserId
3061
+ attr_accessor :Sign, :RoomId, :SdkAppId, :UserId, :PrivateMapKey, :Role
3050
3062
 
3051
- def initialize(sign=nil, roomid=nil, sdkappid=nil, userid=nil)
3063
+ def initialize(sign=nil, roomid=nil, sdkappid=nil, userid=nil, privatemapkey=nil, role=nil)
3052
3064
  @Sign = sign
3053
3065
  @RoomId = roomid
3054
3066
  @SdkAppId = sdkappid
3055
3067
  @UserId = userid
3068
+ @PrivateMapKey = privatemapkey
3069
+ @Role = role
3056
3070
  end
3057
3071
 
3058
3072
  def deserialize(params)
@@ -3060,6 +3074,8 @@ module TencentCloud
3060
3074
  @RoomId = params['RoomId']
3061
3075
  @SdkAppId = params['SdkAppId']
3062
3076
  @UserId = params['UserId']
3077
+ @PrivateMapKey = params['PrivateMapKey']
3078
+ @Role = params['Role']
3063
3079
  end
3064
3080
  end
3065
3081
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ame
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.510
4
+ version: 3.0.512
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-16 00:00:00.000000000 Z
11
+ date: 2023-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common