tencentcloud-sdk-gme 3.0.464 → 3.0.465

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db084a445052f010ff3230611e19841afce67153
4
- data.tar.gz: 9628b62f1cd21cfe545ab48f42bac472aee38dd6
3
+ metadata.gz: 4ca81dbb40a630ac90d56677bae263a67790499c
4
+ data.tar.gz: 514119094930af5e15196280d1ecfe576ee0525e
5
5
  SHA512:
6
- metadata.gz: 8c6dfb3d20f511708986a52f1d07e1f4ccb6afe77e5615155a4503b7fd9812274ecb175334e6f74e51698941d24191d263ab3de07917fdce3c68c5701213b014
7
- data.tar.gz: 9fb22f1c21c57a1eddc91ce7155f4ea94bc96e59286db7eac051043d451884d9da1f8c660ee0dc7d4b9f13451e3f5edd581906487abe7068293193e85e10ada8
6
+ metadata.gz: 040ec65068f4388b62691d2fcc099f0f181c64413ace992c4b0c8490158c9be7c813d32ea222b03d9b4bfd3e2b4b9e7f51ea7d5a090e4c173ec509962226394b
7
+ data.tar.gz: becad4d2212dcbb945e6232b76d00788147af7f2c15db53132a6dbc682a7e6db34ccef1472847fa2ab623400fdc2b6cd321b323f03a7b70e1e03cb73f6016f5f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.464
1
+ 3.0.465
@@ -496,7 +496,9 @@ module TencentCloud
496
496
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
497
497
  end
498
498
 
499
- # 修改用户麦克风状态。
499
+ # **接口作用**:此接口用于修改房间用户的麦克风状态,例如房间内用户麦克风为打开状态,可调用此接口将该用户麦克风进行关闭,关闭后即使该用户使用客户端接口 EnableMic 打开麦克风,依然无法与房间内成员通话,属于被禁言状态。该状态持续到此用户退房后失效,或者调用该接口重新打开此用户麦克风状态。
500
+ # **接口应用场景**:此接口多用于游戏业务中台或者风控后台,对一些发表不当言论的玩家进行禁言处理。
501
+ # **接口使用前提**:目前 ModifyUserMicStatus 接口通过白名单开放,如需使用,需要 [提交工单申请](https://console.cloud.tencent.com/workorder/category?level1_id=438&level2_id=445&source=0&data_title=%E6%B8%B8%E6%88%8F%E5%A4%9A%E5%AA%92%E4%BD%93%E5%BC%95%E6%93%8EGME&step=1)。
500
502
 
501
503
  # @param request: Request instance for ModifyUserMicStatus.
502
504
  # @type request: :class:`Tencentcloud::gme::V20180711::ModifyUserMicStatusRequest`
@@ -1594,11 +1594,11 @@ module TencentCloud
1594
1594
 
1595
1595
  # ModifyUserMicStatus请求参数结构体
1596
1596
  class ModifyUserMicStatusRequest < TencentCloud::Common::AbstractModel
1597
- # @param BizId: 应用ID
1597
+ # @param BizId: 来自 [腾讯云控制台](https://console.cloud.tencent.com/gamegme) 的 GME 服务提供的 AppID,获取请参考 [语音服务开通指引](https://cloud.tencent.com/document/product/607/10782#.E9.87.8D.E7.82.B9.E5.8F.82.E6.95.B0)。
1598
1598
  # @type BizId: Integer
1599
- # @param RoomId: 房间ID
1599
+ # @param RoomId: 实时语音房间号。
1600
1600
  # @type RoomId: String
1601
- # @param Users: 用户麦克风状态,数组长度不超过20
1601
+ # @param Users: 需要操作的房间内用户以及该用户的目标麦克风状态。
1602
1602
  # @type Users: Array
1603
1603
 
1604
1604
  attr_accessor :BizId, :RoomId, :Users
@@ -1625,9 +1625,9 @@ module TencentCloud
1625
1625
 
1626
1626
  # ModifyUserMicStatus返回参数结构体
1627
1627
  class ModifyUserMicStatusResponse < TencentCloud::Common::AbstractModel
1628
- # @param Result: 返回结果:0为成功,非0为失败
1628
+ # @param Result: 返回结果:0为成功,非0为失败。
1629
1629
  # @type Result: Integer
1630
- # @param ErrMsg: 错误信息
1630
+ # @param ErrMsg: 错误信息。
1631
1631
  # @type ErrMsg: String
1632
1632
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1633
1633
  # @type RequestId: String
@@ -2201,9 +2201,9 @@ module TencentCloud
2201
2201
 
2202
2202
  # 用户麦克风状态
2203
2203
  class UserMicStatus < TencentCloud::Common::AbstractModel
2204
- # @param Uid: 用户ID
2204
+ # @param Uid: 客户端用于标识用户的Openid。
2205
2205
  # @type Uid: Integer
2206
- # @param EnableMic: 是否开麦 。1闭麦 2开麦
2206
+ # @param EnableMic: 开麦状态。1表示关闭麦克风,2表示打开麦克风。
2207
2207
  # @type EnableMic: Integer
2208
2208
 
2209
2209
  attr_accessor :Uid, :EnableMic
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.464
4
+ version: 3.0.465
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-12-02 00:00:00.000000000 Z
11
+ date: 2022-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common