tencentcloud-sdk-lcic 3.0.681 → 3.0.683
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220817/models.rb +73 -10
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d179e0fedb5b5937e9cb4ab4a28e77e5a1e2f3b1
|
4
|
+
data.tar.gz: 15ef5fb45d7f311776e2671d680914811142175c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6314146a36e0b73b3cdc1298b10b74b46fdc1d612d9a99f855d8f4d7c114339a8654632af8de90bd8ba1e1602dfe85bce87b9ea6f6dd0bdf51097cbaa7cca181
|
7
|
+
data.tar.gz: b2191ec091ae059fe821faccf09ad4c0c7c9ae4f943d3522a5acb65e6508013a9bb4ac514c37bc7dbfae50f34e82970365790f9c5e67ce7837dc7ff16443e713
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.683
|
data/lib/v20220817/models.rb
CHANGED
@@ -882,10 +882,16 @@ module TencentCloud
|
|
882
882
|
# @type RoomType: Integer
|
883
883
|
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
884
884
|
# @type EndDelayTime: Integer
|
885
|
+
# @param LiveType: 直播方式:0 常规模式(默认)1 回放直播模式(伪直播)
|
886
|
+
# @type LiveType: Integer
|
887
|
+
# @param RecordLiveUrl: 伪直播链接
|
888
|
+
# @type RecordLiveUrl: String
|
889
|
+
# @param EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
|
890
|
+
# @type EnableAutoStart: Integer
|
885
891
|
|
886
|
-
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
|
892
|
+
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, :LiveType, :RecordLiveUrl, :EnableAutoStart
|
887
893
|
|
888
|
-
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)
|
894
|
+
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, livetype=nil, recordliveurl=nil, enableautostart=nil)
|
889
895
|
@Name = name
|
890
896
|
@StartTime = starttime
|
891
897
|
@EndTime = endtime
|
@@ -909,6 +915,9 @@ module TencentCloud
|
|
909
915
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
910
916
|
@RoomType = roomtype
|
911
917
|
@EndDelayTime = enddelaytime
|
918
|
+
@LiveType = livetype
|
919
|
+
@RecordLiveUrl = recordliveurl
|
920
|
+
@EnableAutoStart = enableautostart
|
912
921
|
end
|
913
922
|
|
914
923
|
def deserialize(params)
|
@@ -935,6 +944,9 @@ module TencentCloud
|
|
935
944
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
936
945
|
@RoomType = params['RoomType']
|
937
946
|
@EndDelayTime = params['EndDelayTime']
|
947
|
+
@LiveType = params['LiveType']
|
948
|
+
@RecordLiveUrl = params['RecordLiveUrl']
|
949
|
+
@EnableAutoStart = params['EnableAutoStart']
|
938
950
|
end
|
939
951
|
end
|
940
952
|
|
@@ -2030,12 +2042,18 @@ module TencentCloud
|
|
2030
2042
|
# @type VideoDuration: Integer
|
2031
2043
|
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
2032
2044
|
# @type EndDelayTime: Integer
|
2045
|
+
# @param LiveType: 直播方式:0 常规模式(默认)1 回放直播模式(伪直播)
|
2046
|
+
# @type LiveType: Integer
|
2047
|
+
# @param RecordLiveUrl: 伪直播链接
|
2048
|
+
# @type RecordLiveUrl: String
|
2049
|
+
# @param EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
|
2050
|
+
# @type EnableAutoStart: Integer
|
2033
2051
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2034
2052
|
# @type RequestId: String
|
2035
2053
|
|
2036
|
-
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
|
2054
|
+
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, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RequestId
|
2037
2055
|
|
2038
|
-
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)
|
2056
|
+
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, livetype=nil, recordliveurl=nil, enableautostart=nil, requestid=nil)
|
2039
2057
|
@Name = name
|
2040
2058
|
@StartTime = starttime
|
2041
2059
|
@EndTime = endtime
|
@@ -2059,6 +2077,9 @@ module TencentCloud
|
|
2059
2077
|
@RoomType = roomtype
|
2060
2078
|
@VideoDuration = videoduration
|
2061
2079
|
@EndDelayTime = enddelaytime
|
2080
|
+
@LiveType = livetype
|
2081
|
+
@RecordLiveUrl = recordliveurl
|
2082
|
+
@EnableAutoStart = enableautostart
|
2062
2083
|
@RequestId = requestid
|
2063
2084
|
end
|
2064
2085
|
|
@@ -2086,6 +2107,9 @@ module TencentCloud
|
|
2086
2107
|
@RoomType = params['RoomType']
|
2087
2108
|
@VideoDuration = params['VideoDuration']
|
2088
2109
|
@EndDelayTime = params['EndDelayTime']
|
2110
|
+
@LiveType = params['LiveType']
|
2111
|
+
@RecordLiveUrl = params['RecordLiveUrl']
|
2112
|
+
@EnableAutoStart = params['EnableAutoStart']
|
2089
2113
|
@RequestId = params['RequestId']
|
2090
2114
|
end
|
2091
2115
|
end
|
@@ -3469,10 +3493,16 @@ module TencentCloud
|
|
3469
3493
|
# @type RecordLayout: Integer
|
3470
3494
|
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
3471
3495
|
# @type EndDelayTime: Integer
|
3496
|
+
# @param LiveType: 直播方式:0 常规模式(默认)1 回放直播模式(伪直播)
|
3497
|
+
# @type LiveType: Integer
|
3498
|
+
# @param RecordLiveUrl: 伪直播链接
|
3499
|
+
# @type RecordLiveUrl: String
|
3500
|
+
# @param EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
|
3501
|
+
# @type EnableAutoStart: Integer
|
3472
3502
|
|
3473
|
-
attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RecordLayout, :EndDelayTime
|
3503
|
+
attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :RecordLayout, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart
|
3474
3504
|
|
3475
|
-
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)
|
3505
|
+
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, livetype=nil, recordliveurl=nil, enableautostart=nil)
|
3476
3506
|
@RoomId = roomid
|
3477
3507
|
@SdkAppId = sdkappid
|
3478
3508
|
@StartTime = starttime
|
@@ -3494,6 +3524,9 @@ module TencentCloud
|
|
3494
3524
|
@RoomType = roomtype
|
3495
3525
|
@RecordLayout = recordlayout
|
3496
3526
|
@EndDelayTime = enddelaytime
|
3527
|
+
@LiveType = livetype
|
3528
|
+
@RecordLiveUrl = recordliveurl
|
3529
|
+
@EnableAutoStart = enableautostart
|
3497
3530
|
end
|
3498
3531
|
|
3499
3532
|
def deserialize(params)
|
@@ -3518,6 +3551,9 @@ module TencentCloud
|
|
3518
3551
|
@RoomType = params['RoomType']
|
3519
3552
|
@RecordLayout = params['RecordLayout']
|
3520
3553
|
@EndDelayTime = params['EndDelayTime']
|
3554
|
+
@LiveType = params['LiveType']
|
3555
|
+
@RecordLiveUrl = params['RecordLiveUrl']
|
3556
|
+
@EnableAutoStart = params['EnableAutoStart']
|
3521
3557
|
end
|
3522
3558
|
end
|
3523
3559
|
|
@@ -3755,10 +3791,16 @@ module TencentCloud
|
|
3755
3791
|
# @type RoomType: Integer
|
3756
3792
|
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
3757
3793
|
# @type EndDelayTime: Integer
|
3794
|
+
# @param LiveType: 直播方式:0 常规模式(默认)1 回放直播模式(伪直播)
|
3795
|
+
# @type LiveType: Integer
|
3796
|
+
# @param RecordLiveUrl: 伪直播回放链接
|
3797
|
+
# @type RecordLiveUrl: String
|
3798
|
+
# @param EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
|
3799
|
+
# @type EnableAutoStart: Integer
|
3758
3800
|
|
3759
|
-
attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime
|
3801
|
+
attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart
|
3760
3802
|
|
3761
|
-
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)
|
3803
|
+
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, livetype=nil, recordliveurl=nil, enableautostart=nil)
|
3762
3804
|
@Name = name
|
3763
3805
|
@StartTime = starttime
|
3764
3806
|
@EndTime = endtime
|
@@ -3781,6 +3823,9 @@ module TencentCloud
|
|
3781
3823
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
3782
3824
|
@RoomType = roomtype
|
3783
3825
|
@EndDelayTime = enddelaytime
|
3826
|
+
@LiveType = livetype
|
3827
|
+
@RecordLiveUrl = recordliveurl
|
3828
|
+
@EnableAutoStart = enableautostart
|
3784
3829
|
end
|
3785
3830
|
|
3786
3831
|
def deserialize(params)
|
@@ -3806,6 +3851,9 @@ module TencentCloud
|
|
3806
3851
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
3807
3852
|
@RoomType = params['RoomType']
|
3808
3853
|
@EndDelayTime = params['EndDelayTime']
|
3854
|
+
@LiveType = params['LiveType']
|
3855
|
+
@RecordLiveUrl = params['RecordLiveUrl']
|
3856
|
+
@EnableAutoStart = params['EnableAutoStart']
|
3809
3857
|
end
|
3810
3858
|
end
|
3811
3859
|
|
@@ -3867,10 +3915,19 @@ module TencentCloud
|
|
3867
3915
|
# @param EndDelayTime: 拖堂时间:单位分钟,0为不限制(默认值), -1为不能拖堂,大于0为拖堂的时间,最大值120分钟
|
3868
3916
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3869
3917
|
# @type EndDelayTime: Integer
|
3918
|
+
# @param LiveType: 直播方式:0 常规模式(默认)1 回放直播模式(伪直播)
|
3919
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3920
|
+
# @type LiveType: Integer
|
3921
|
+
# @param RecordLiveUrl: 伪直播回放链接
|
3922
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3923
|
+
# @type RecordLiveUrl: String
|
3924
|
+
# @param EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
|
3925
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3926
|
+
# @type EnableAutoStart: Integer
|
3870
3927
|
|
3871
|
-
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime
|
3928
|
+
attr_accessor :Name, :RoomId, :Status, :StartTime, :EndTime, :RealStartTime, :RealEndTime, :Resolution, :MaxRTCMember, :ReplayUrl, :RecordUrl, :MaxMicNumber, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart
|
3872
3929
|
|
3873
|
-
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)
|
3930
|
+
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, livetype=nil, recordliveurl=nil, enableautostart=nil)
|
3874
3931
|
@Name = name
|
3875
3932
|
@RoomId = roomid
|
3876
3933
|
@Status = status
|
@@ -3889,6 +3946,9 @@ module TencentCloud
|
|
3889
3946
|
@IsGradingRequiredPostClass = isgradingrequiredpostclass
|
3890
3947
|
@RoomType = roomtype
|
3891
3948
|
@EndDelayTime = enddelaytime
|
3949
|
+
@LiveType = livetype
|
3950
|
+
@RecordLiveUrl = recordliveurl
|
3951
|
+
@EnableAutoStart = enableautostart
|
3892
3952
|
end
|
3893
3953
|
|
3894
3954
|
def deserialize(params)
|
@@ -3910,6 +3970,9 @@ module TencentCloud
|
|
3910
3970
|
@IsGradingRequiredPostClass = params['IsGradingRequiredPostClass']
|
3911
3971
|
@RoomType = params['RoomType']
|
3912
3972
|
@EndDelayTime = params['EndDelayTime']
|
3973
|
+
@LiveType = params['LiveType']
|
3974
|
+
@RecordLiveUrl = params['RecordLiveUrl']
|
3975
|
+
@EnableAutoStart = params['EnableAutoStart']
|
3913
3976
|
end
|
3914
3977
|
end
|
3915
3978
|
|
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.683
|
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-10-
|
11
|
+
date: 2023-10-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20220817/client.rb
|
37
|
-
- lib/v20220817/models.rb
|
38
36
|
- lib/tencentcloud-sdk-lcic.rb
|
37
|
+
- lib/v20220817/models.rb
|
38
|
+
- lib/v20220817/client.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|