tencentcloud-sdk-lcic 3.0.652 → 3.0.653
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220817/models.rb +38 -12
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0bd85fb1305630d4ed5d53187160d65aef7b6401
|
4
|
+
data.tar.gz: 273082be84e1f5786f72402115872b9af01d8525
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cf6d6089841ddf9c9d0e7dd614ebcaff6d18aae81f8b72b8f2c8e389952e84c1ca80af46d603b9de8bb64d77abc7042e3950b644686f9c0c703af808b5bff9f
|
7
|
+
data.tar.gz: fbfe4101ee4196b7b5028d2432cf1b0bb83f5ff5a2276c326b6d7d0bd922ca4a140faed2ac23ee83614711dad999ac9247d26859d4a6172e4277a19f7efa079e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.653
|
data/lib/v20220817/models.rb
CHANGED
@@ -835,10 +835,12 @@ module TencentCloud
|
|
835
835
|
# @type IsGradingRequiredPostClass: Integer
|
836
836
|
# @param RoomType: 房间类型: 0 小班课(默认值); 1 大班课; 2 1V1 (后续扩展)
|
837
837
|
# @type RoomType: Integer
|
838
|
+
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
839
|
+
# @type EndDelayTime: Integer
|
838
840
|
|
839
|
-
attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType
|
841
|
+
attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime
|
840
842
|
|
841
|
-
def initialize(name=nil, starttime=nil, endtime=nil, sdkappid=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil)
|
843
|
+
def initialize(name=nil, starttime=nil, endtime=nil, sdkappid=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil)
|
842
844
|
@Name = name
|
843
845
|
@StartTime = starttime
|
844
846
|
@EndTime = endtime
|
@@ -861,6 +863,7 @@ module TencentCloud
|
|
861
863
|
@VideoOrientation = videoorientation
|
862
864
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
863
865
|
@RoomType = roomtype
|
866
|
+
@EndDelayTime = enddelaytime
|
864
867
|
end
|
865
868
|
|
866
869
|
def deserialize(params)
|
@@ -886,6 +889,7 @@ module TencentCloud
|
|
886
889
|
@VideoOrientation = params['VideoOrientation']
|
887
890
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
888
891
|
@RoomType = params['RoomType']
|
892
|
+
@EndDelayTime = params['EndDelayTime']
|
889
893
|
end
|
890
894
|
end
|
891
895
|
|
@@ -1979,12 +1983,14 @@ module TencentCloud
|
|
1979
1983
|
# @type RoomType: Integer
|
1980
1984
|
# @param VideoDuration: 录制时长
|
1981
1985
|
# @type VideoDuration: Integer
|
1986
|
+
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
1987
|
+
# @type EndDelayTime: Integer
|
1982
1988
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1983
1989
|
# @type RequestId: String
|
1984
1990
|
|
1985
|
-
attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :AudienceType, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :VideoDuration, :RequestId
|
1991
|
+
attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :AudienceType, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :VideoDuration, :EndDelayTime, :RequestId
|
1986
1992
|
|
1987
|
-
def initialize(name=nil, starttime=nil, endtime=nil, teacherid=nil, sdkappid=nil, audiencetype=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, recordurl=nil, status=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, videoduration=nil, requestid=nil)
|
1993
|
+
def initialize(name=nil, starttime=nil, endtime=nil, teacherid=nil, sdkappid=nil, audiencetype=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, recordurl=nil, status=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, videoduration=nil, enddelaytime=nil, requestid=nil)
|
1988
1994
|
@Name = name
|
1989
1995
|
@StartTime = starttime
|
1990
1996
|
@EndTime = endtime
|
@@ -2007,6 +2013,7 @@ module TencentCloud
|
|
2007
2013
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
2008
2014
|
@RoomType = roomtype
|
2009
2015
|
@VideoDuration = videoduration
|
2016
|
+
@EndDelayTime = enddelaytime
|
2010
2017
|
@RequestId = requestid
|
2011
2018
|
end
|
2012
2019
|
|
@@ -2033,6 +2040,7 @@ module TencentCloud
|
|
2033
2040
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
2034
2041
|
@RoomType = params['RoomType']
|
2035
2042
|
@VideoDuration = params['VideoDuration']
|
2043
|
+
@EndDelayTime = params['EndDelayTime']
|
2036
2044
|
@RequestId = params['RequestId']
|
2037
2045
|
end
|
2038
2046
|
end
|
@@ -2339,10 +2347,13 @@ module TencentCloud
|
|
2339
2347
|
# @param Cover: 封面,仅转码的课件会生成封面
|
2340
2348
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2341
2349
|
# @type Cover: String
|
2350
|
+
# @param Preview: 课件预览地址
|
2351
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2352
|
+
# @type Preview: String
|
2342
2353
|
|
2343
|
-
attr_accessor :DocumentId, :DocumentUrl, :DocumentName, :Owner, :SdkAppId, :Permission, :TranscodeResult, :TranscodeType, :TranscodeProgress, :TranscodeState, :TranscodeInfo, :DocumentType, :DocumentSize, :UpdateTime, :Pages, :Width, :Height, :Cover
|
2354
|
+
attr_accessor :DocumentId, :DocumentUrl, :DocumentName, :Owner, :SdkAppId, :Permission, :TranscodeResult, :TranscodeType, :TranscodeProgress, :TranscodeState, :TranscodeInfo, :DocumentType, :DocumentSize, :UpdateTime, :Pages, :Width, :Height, :Cover, :Preview
|
2344
2355
|
|
2345
|
-
def initialize(documentid=nil, documenturl=nil, documentname=nil, owner=nil, sdkappid=nil, permission=nil, transcoderesult=nil, transcodetype=nil, transcodeprogress=nil, transcodestate=nil, transcodeinfo=nil, documenttype=nil, documentsize=nil, updatetime=nil, pages=nil, width=nil, height=nil, cover=nil)
|
2356
|
+
def initialize(documentid=nil, documenturl=nil, documentname=nil, owner=nil, sdkappid=nil, permission=nil, transcoderesult=nil, transcodetype=nil, transcodeprogress=nil, transcodestate=nil, transcodeinfo=nil, documenttype=nil, documentsize=nil, updatetime=nil, pages=nil, width=nil, height=nil, cover=nil, preview=nil)
|
2346
2357
|
@DocumentId = documentid
|
2347
2358
|
@DocumentUrl = documenturl
|
2348
2359
|
@DocumentName = documentname
|
@@ -2361,6 +2372,7 @@ module TencentCloud
|
|
2361
2372
|
@Width = width
|
2362
2373
|
@Height = height
|
2363
2374
|
@Cover = cover
|
2375
|
+
@Preview = preview
|
2364
2376
|
end
|
2365
2377
|
|
2366
2378
|
def deserialize(params)
|
@@ -2382,6 +2394,7 @@ module TencentCloud
|
|
2382
2394
|
@Width = params['Width']
|
2383
2395
|
@Height = params['Height']
|
2384
2396
|
@Cover = params['Cover']
|
2397
|
+
@Preview = params['Preview']
|
2385
2398
|
end
|
2386
2399
|
end
|
2387
2400
|
|
@@ -3262,10 +3275,12 @@ module TencentCloud
|
|
3262
3275
|
# @type RoomType: Integer
|
3263
3276
|
# @param RecordLayout: 录制模板。仅可修改还未开始的房间。录制模板枚举值参考:https://cloud.tencent.com/document/product/1639/89744
|
3264
3277
|
# @type RecordLayout: Integer
|
3278
|
+
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
3279
|
+
# @type EndDelayTime: Integer
|
3265
3280
|
|
3266
|
-
attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RecordLayout
|
3281
|
+
attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RecordLayout, :EndDelayTime
|
3267
3282
|
|
3268
|
-
def initialize(roomid=nil, sdkappid=nil, starttime=nil, endtime=nil, teacherid=nil, name=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, recordlayout=nil)
|
3283
|
+
def initialize(roomid=nil, sdkappid=nil, starttime=nil, endtime=nil, teacherid=nil, name=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, recordlayout=nil, enddelaytime=nil)
|
3269
3284
|
@RoomId = roomid
|
3270
3285
|
@SdkAppId = sdkappid
|
3271
3286
|
@StartTime = starttime
|
@@ -3286,6 +3301,7 @@ module TencentCloud
|
|
3286
3301
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
3287
3302
|
@RoomType = roomtype
|
3288
3303
|
@RecordLayout = recordlayout
|
3304
|
+
@EndDelayTime = enddelaytime
|
3289
3305
|
end
|
3290
3306
|
|
3291
3307
|
def deserialize(params)
|
@@ -3309,6 +3325,7 @@ module TencentCloud
|
|
3309
3325
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
3310
3326
|
@RoomType = params['RoomType']
|
3311
3327
|
@RecordLayout = params['RecordLayout']
|
3328
|
+
@EndDelayTime = params['EndDelayTime']
|
3312
3329
|
end
|
3313
3330
|
end
|
3314
3331
|
|
@@ -3504,10 +3521,12 @@ module TencentCloud
|
|
3504
3521
|
# @type IsGradingRequiredPostClass: Integer
|
3505
3522
|
# @param RoomType: 房间类型: 0 小班课(默认值); 1 大班课; 2 1V1 (后续扩展)
|
3506
3523
|
# @type RoomType: Integer
|
3524
|
+
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
3525
|
+
# @type EndDelayTime: Integer
|
3507
3526
|
|
3508
|
-
attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType
|
3527
|
+
attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime
|
3509
3528
|
|
3510
|
-
def initialize(name=nil, starttime=nil, endtime=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil)
|
3529
|
+
def initialize(name=nil, starttime=nil, endtime=nil, resolution=nil, maxmicnumber=nil, subtype=nil, teacherid=nil, automic=nil, turnoffmic=nil, audioquality=nil, disablerecord=nil, assistants=nil, rtcaudiencenumber=nil, audiencetype=nil, recordlayout=nil, groupid=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil)
|
3511
3530
|
@Name = name
|
3512
3531
|
@StartTime = starttime
|
3513
3532
|
@EndTime = endtime
|
@@ -3529,6 +3548,7 @@ module TencentCloud
|
|
3529
3548
|
@VideoOrientation = videoorientation
|
3530
3549
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
3531
3550
|
@RoomType = roomtype
|
3551
|
+
@EndDelayTime = enddelaytime
|
3532
3552
|
end
|
3533
3553
|
|
3534
3554
|
def deserialize(params)
|
@@ -3553,6 +3573,7 @@ module TencentCloud
|
|
3553
3573
|
@VideoOrientation = params['VideoOrientation']
|
3554
3574
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
3555
3575
|
@RoomType = params['RoomType']
|
3576
|
+
@EndDelayTime = params['EndDelayTime']
|
3556
3577
|
end
|
3557
3578
|
end
|
3558
3579
|
|
@@ -3611,10 +3632,13 @@ module TencentCloud
|
|
3611
3632
|
# @param RoomType: 房间类型。0:小班课(默认值);1:大班课;2:1V1(后续扩展)
|
3612
3633
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3613
3634
|
# @type RoomType: Integer
|
3635
|
+
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
3636
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3637
|
+
# @type EndDelayTime: Integer
|
3614
3638
|
|
3615
|
-
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType
|
3639
|
+
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime
|
3616
3640
|
|
3617
|
-
def initialize(name=nil, roomid=nil, status=nil, starttime=nil, endtime=nil, realstarttime=nil, realendtime=nil, resolution=nil, maxrtcmember=nil, replayurl=nil, recordurl=nil, maxmicnumber=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil)
|
3641
|
+
def initialize(name=nil, roomid=nil, status=nil, starttime=nil, endtime=nil, realstarttime=nil, realendtime=nil, resolution=nil, maxrtcmember=nil, replayurl=nil, recordurl=nil, maxmicnumber=nil, enabledirectcontrol=nil, interactionmode=nil, videoorientation=nil, isgradingrequiredpostclass=nil, roomtype=nil, enddelaytime=nil)
|
3618
3642
|
@Name = name
|
3619
3643
|
@RoomId = roomid
|
3620
3644
|
@Status = status
|
@@ -3632,6 +3656,7 @@ module TencentCloud
|
|
3632
3656
|
@VideoOrientation = videoorientation
|
3633
3657
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
3634
3658
|
@RoomType = roomtype
|
3659
|
+
@EndDelayTime = enddelaytime
|
3635
3660
|
end
|
3636
3661
|
|
3637
3662
|
def deserialize(params)
|
@@ -3652,6 +3677,7 @@ module TencentCloud
|
|
3652
3677
|
@VideoOrientation = params['VideoOrientation']
|
3653
3678
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
3654
3679
|
@RoomType = params['RoomType']
|
3680
|
+
@EndDelayTime = params['EndDelayTime']
|
3655
3681
|
end
|
3656
3682
|
end
|
3657
3683
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lcic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.653
|
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-09-
|
11
|
+
date: 2023-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|