tencentcloud-sdk-trtc 3.0.922 → 3.0.923

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/v20190722/models.rb +12 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2aa6063a726708c9a14485d69757aad74b6ac57
4
- data.tar.gz: 784f249a39ca52e46a085c539cd64e541c52c551
3
+ metadata.gz: ada92e040d66cc5456db4fddaf52e015505683b6
4
+ data.tar.gz: 1fd23df1cff632510e254af5e5e55ba593716ab4
5
5
  SHA512:
6
- metadata.gz: 6595d9735ce44cd395f45b7f0f53b5a7e0eb7538527860671643a51a9b3720edcb3b5eb715891d7fb1aabe278924a7946d3ad89c5c7daf81b19dfd371a372a23
7
- data.tar.gz: 6634b298fc68caa2baa1245976f620eb4e54e938a0b8b89c01af2bbc1b63d6ef3e10a595641617f77d20d636a8879afc1ed803e221f0660fc9ada83b5a56a24b
6
+ metadata.gz: 2ac29d2ddd72b0ce247b44a43baf986ebb1eac2b0f137f42f9aad545d4139f4159d5324c9f238421dcdea9114fd92af3afe2178d5f8a8c9aa26556f696a6e3c4
7
+ data.tar.gz: 00fd448cf64af0e04aa01ba42f8fac6aede481503d42824fdcd84ba783e7f30cd1aed2327179361c2d424b193839e4ce717a3c9e92e6f396818cf4199537e60a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.922
1
+ 3.0.923
@@ -239,26 +239,21 @@ module TencentCloud
239
239
  # 0:腾讯云对象存储 COS
240
240
  # 1:AWS
241
241
  # 【注意】目前第三方云存储仅支持AWS,更多第三方云存储陆续支持中
242
- # 示例值:0
243
242
  # @type Vendor: Integer
244
243
  # @param Region: 腾讯云对象存储的[地域信息](https://cloud.tencent.com/document/product/436/6224#.E5.9C.B0.E5.9F.9F)。
245
244
  # 示例值:cn-shanghai-1
246
245
 
247
246
  # AWS S3[地域信息](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-regions)
248
- # 示例值:ap-southeast-3
249
247
  # @type Region: String
250
248
  # @param Bucket: 云存储桶名称。
251
249
  # @type Bucket: String
252
250
  # @param AccessKey: 云存储的access_key账号信息。
253
251
  # 若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretId值。
254
- # 示例值:test-accesskey
255
252
  # @type AccessKey: String
256
253
  # @param SecretKey: 云存储的secret_key账号信息。
257
254
  # 若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretKey值。
258
- # 示例值:test-secretkey
259
255
  # @type SecretKey: String
260
256
  # @param FileNamePrefix: 云存储bucket 的指定位置,由字符串数组组成。合法的字符串范围az,AZ,0~9,'_'和'-',举个例子,录制文件xxx.m3u8在 ["prefix1", "prefix2"]作用下,会变成prefix1/prefix2/TaskId/xxx.m3u8。
261
- # 示例值:["prefix1", "prefix2"]
262
257
  # @type FileNamePrefix: Array
263
258
 
264
259
  attr_accessor :Vendor, :Region, :Bucket, :AccessKey, :SecretKey, :FileNamePrefix
@@ -4584,10 +4579,12 @@ module TencentCloud
4584
4579
  # @type RecordId: String
4585
4580
  # @param PublishCdnParams: 若您想要推流到CDN,可以使用PublishCdnParams.N参数设置,支持最多同时推流到10个CDN地址。若转推地址是腾讯云CDN时,请将IsTencentCdn明确设置为1
4586
4581
  # @type PublishCdnParams: Array
4582
+ # @param ReadyTimeout: 录制页面资源加载的超时时间,单位:秒。默认值为 0 秒,该值需大于等于 0秒,且小于等于 60秒。录制页面未启用页面加载超时检测时,请勿设置此参数。
4583
+ # @type ReadyTimeout: Integer
4587
4584
 
4588
- attr_accessor :RecordUrl, :MaxDurationLimit, :StorageParams, :WebRecordVideoParams, :SdkAppId, :RecordId, :PublishCdnParams
4585
+ attr_accessor :RecordUrl, :MaxDurationLimit, :StorageParams, :WebRecordVideoParams, :SdkAppId, :RecordId, :PublishCdnParams, :ReadyTimeout
4589
4586
 
4590
- def initialize(recordurl=nil, maxdurationlimit=nil, storageparams=nil, webrecordvideoparams=nil, sdkappid=nil, recordid=nil, publishcdnparams=nil)
4587
+ def initialize(recordurl=nil, maxdurationlimit=nil, storageparams=nil, webrecordvideoparams=nil, sdkappid=nil, recordid=nil, publishcdnparams=nil, readytimeout=nil)
4591
4588
  @RecordUrl = recordurl
4592
4589
  @MaxDurationLimit = maxdurationlimit
4593
4590
  @StorageParams = storageparams
@@ -4595,6 +4592,7 @@ module TencentCloud
4595
4592
  @SdkAppId = sdkappid
4596
4593
  @RecordId = recordid
4597
4594
  @PublishCdnParams = publishcdnparams
4595
+ @ReadyTimeout = readytimeout
4598
4596
  end
4599
4597
 
4600
4598
  def deserialize(params)
@@ -4618,6 +4616,7 @@ module TencentCloud
4618
4616
  @PublishCdnParams << mcupublishcdnparam_tmp
4619
4617
  end
4620
4618
  end
4619
+ @ReadyTimeout = params['ReadyTimeout']
4621
4620
  end
4622
4621
  end
4623
4622
 
@@ -5154,15 +5153,17 @@ module TencentCloud
5154
5153
  # @type TranscriptionMode: Integer
5155
5154
  # @param TargetUserId: TranscriptionMode为1时必填,机器人只会拉该userid的流,忽略房间里其他用户。
5156
5155
  # @type TargetUserId: String
5156
+ # @param TargetUserIdList: 机器人订阅的用户列表
5157
+ # @type TargetUserIdList: Array
5157
5158
 
5158
- attr_accessor :UserId, :UserSig, :IMAdminUserId, :IMAdminUserSig, :MaxIdleTime, :TranscriptionMode, :TargetUserId
5159
+ attr_accessor :UserId, :UserSig, :IMAdminUserId, :IMAdminUserSig, :MaxIdleTime, :TranscriptionMode, :TargetUserId, :TargetUserIdList
5159
5160
  extend Gem::Deprecate
5160
5161
  deprecate :IMAdminUserId, :none, 2024, 10
5161
5162
  deprecate :IMAdminUserId=, :none, 2024, 10
5162
5163
  deprecate :IMAdminUserSig, :none, 2024, 10
5163
5164
  deprecate :IMAdminUserSig=, :none, 2024, 10
5164
5165
 
5165
- def initialize(userid=nil, usersig=nil, imadminuserid=nil, imadminusersig=nil, maxidletime=nil, transcriptionmode=nil, targetuserid=nil)
5166
+ def initialize(userid=nil, usersig=nil, imadminuserid=nil, imadminusersig=nil, maxidletime=nil, transcriptionmode=nil, targetuserid=nil, targetuseridlist=nil)
5166
5167
  @UserId = userid
5167
5168
  @UserSig = usersig
5168
5169
  @IMAdminUserId = imadminuserid
@@ -5170,6 +5171,7 @@ module TencentCloud
5170
5171
  @MaxIdleTime = maxidletime
5171
5172
  @TranscriptionMode = transcriptionmode
5172
5173
  @TargetUserId = targetuserid
5174
+ @TargetUserIdList = targetuseridlist
5173
5175
  end
5174
5176
 
5175
5177
  def deserialize(params)
@@ -5180,6 +5182,7 @@ module TencentCloud
5180
5182
  @MaxIdleTime = params['MaxIdleTime']
5181
5183
  @TranscriptionMode = params['TranscriptionMode']
5182
5184
  @TargetUserId = params['TargetUserId']
5185
+ @TargetUserIdList = params['TargetUserIdList']
5183
5186
  end
5184
5187
  end
5185
5188
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-trtc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.922
4
+ version: 3.0.923
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-12 00:00:00.000000000 Z
11
+ date: 2024-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common