tencentcloud-sdk-lcic 3.0.601 → 3.0.602
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 +56 -14
- 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: 8aab7a2737fd5909d10df3b6911471398e60d62d
|
4
|
+
data.tar.gz: 3d40a3bf4ba7a3ecaabca64fa7f19fd20a28a2c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b3794703f4058e70c3fe673a5cec91ec95a234b8658e889cf5e1f73d86cf27827fea0923e739e00bd0f023066d38524a88cf9b82ada9fcbb80a754bd2d40632
|
7
|
+
data.tar.gz: 9d20a71c232a83406c1b9cd9e97ca392b16d88b9beba3e5690cf77a2eba0850c74d8b9ad1f7ae05a78416728c034d6fe31df5caf987046f95fc159e1ea714d0c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.602
|
data/lib/v20220817/models.rb
CHANGED
@@ -815,7 +815,7 @@ module TencentCloud
|
|
815
815
|
# @type Assistants: Array
|
816
816
|
# @param RTCAudienceNumber: rtc人数。
|
817
817
|
# @type RTCAudienceNumber: Integer
|
818
|
-
# @param AudienceType:
|
818
|
+
# @param AudienceType: 观看类型。互动观看 (默认)
|
819
819
|
# @type AudienceType: Integer
|
820
820
|
# @param RecordLayout: 录制布局。录制模板枚举值参考:https://cloud.tencent.com/document/product/1639/89744
|
821
821
|
# @type RecordLayout: Integer
|
@@ -825,10 +825,16 @@ module TencentCloud
|
|
825
825
|
# 0 不允许直接控制(需同意,默认值)
|
826
826
|
# 1 允许直接控制(无需同意)
|
827
827
|
# @type EnableDirectControl: Integer
|
828
|
+
# @param InteractionMode: 开启专注模式。
|
829
|
+
# 0 收看全部角色音视频(默认)
|
830
|
+
# 1 只看老师和助教
|
831
|
+
# @type InteractionMode: Integer
|
832
|
+
# @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
|
833
|
+
# @type VideoOrientation: Integer
|
828
834
|
|
829
|
-
attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl
|
835
|
+
attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation
|
830
836
|
|
831
|
-
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)
|
837
|
+
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)
|
832
838
|
@Name = name
|
833
839
|
@StartTime = starttime
|
834
840
|
@EndTime = endtime
|
@@ -847,6 +853,8 @@ module TencentCloud
|
|
847
853
|
@RecordLayout = recordlayout
|
848
854
|
@GroupId = groupid
|
849
855
|
@EnableDirectControl = enabledirectcontrol
|
856
|
+
@InteractionMode = interactionmode
|
857
|
+
@VideoOrientation = videoorientation
|
850
858
|
end
|
851
859
|
|
852
860
|
def deserialize(params)
|
@@ -868,6 +876,8 @@ module TencentCloud
|
|
868
876
|
@RecordLayout = params['RecordLayout']
|
869
877
|
@GroupId = params['GroupId']
|
870
878
|
@EnableDirectControl = params['EnableDirectControl']
|
879
|
+
@InteractionMode = params['InteractionMode']
|
880
|
+
@VideoOrientation = params['VideoOrientation']
|
871
881
|
end
|
872
882
|
end
|
873
883
|
|
@@ -1907,12 +1917,18 @@ module TencentCloud
|
|
1907
1917
|
# @type GroupId: String
|
1908
1918
|
# @param EnableDirectControl: 打开学生麦克风/摄像头的授权开关
|
1909
1919
|
# @type EnableDirectControl: Integer
|
1920
|
+
# @param InteractionMode: 开启专注模式。
|
1921
|
+
# 0 收看全部角色音视频(默认)
|
1922
|
+
# 1 只看老师和助教
|
1923
|
+
# @type InteractionMode: Integer
|
1924
|
+
# @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
|
1925
|
+
# @type VideoOrientation: Integer
|
1910
1926
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1911
1927
|
# @type RequestId: String
|
1912
1928
|
|
1913
|
-
attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :RequestId
|
1929
|
+
attr_accessor :Name, :StartTime, :EndTime, :TeacherId, :SdkAppId, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :RecordUrl, :Status, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :RequestId
|
1914
1930
|
|
1915
|
-
def initialize(name=nil, starttime=nil, endtime=nil, teacherid=nil, sdkappid=nil, resolution=nil, maxmicnumber=nil, automic=nil, audioquality=nil, subtype=nil, disablerecord=nil, assistants=nil, recordurl=nil, status=nil, groupid=nil, enabledirectcontrol=nil, requestid=nil)
|
1931
|
+
def initialize(name=nil, starttime=nil, endtime=nil, teacherid=nil, sdkappid=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, requestid=nil)
|
1916
1932
|
@Name = name
|
1917
1933
|
@StartTime = starttime
|
1918
1934
|
@EndTime = endtime
|
@@ -1929,6 +1945,8 @@ module TencentCloud
|
|
1929
1945
|
@Status = status
|
1930
1946
|
@GroupId = groupid
|
1931
1947
|
@EnableDirectControl = enabledirectcontrol
|
1948
|
+
@InteractionMode = interactionmode
|
1949
|
+
@VideoOrientation = videoorientation
|
1932
1950
|
@RequestId = requestid
|
1933
1951
|
end
|
1934
1952
|
|
@@ -1949,6 +1967,8 @@ module TencentCloud
|
|
1949
1967
|
@Status = params['Status']
|
1950
1968
|
@GroupId = params['GroupId']
|
1951
1969
|
@EnableDirectControl = params['EnableDirectControl']
|
1970
|
+
@InteractionMode = params['InteractionMode']
|
1971
|
+
@VideoOrientation = params['VideoOrientation']
|
1952
1972
|
@RequestId = params['RequestId']
|
1953
1973
|
end
|
1954
1974
|
end
|
@@ -2875,10 +2895,13 @@ module TencentCloud
|
|
2875
2895
|
# @param Stage: 用户的上台状态
|
2876
2896
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2877
2897
|
# @type Stage: Integer
|
2898
|
+
# @param CurrentState: 用户状态。0为未到,1为在线,2为离线,3为被踢,4为永久被踢,5为暂时掉线
|
2899
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2900
|
+
# @type CurrentState: Integer
|
2878
2901
|
|
2879
|
-
attr_accessor :UserId, :UserName, :PresentTime, :Camera, :Mic, :Silence, :AnswerQuestions, :HandUps, :FirstJoinTimestamp, :LastQuitTimestamp, :Rewords, :IPAddress, :Location, :Device, :PerMemberMicCount, :PerMemberMessageCount, :Role, :GroupId, :SubGroupId, :Stage
|
2902
|
+
attr_accessor :UserId, :UserName, :PresentTime, :Camera, :Mic, :Silence, :AnswerQuestions, :HandUps, :FirstJoinTimestamp, :LastQuitTimestamp, :Rewords, :IPAddress, :Location, :Device, :PerMemberMicCount, :PerMemberMessageCount, :Role, :GroupId, :SubGroupId, :Stage, :CurrentState
|
2880
2903
|
|
2881
|
-
def initialize(userid=nil, username=nil, presenttime=nil, camera=nil, mic=nil, silence=nil, answerquestions=nil, handups=nil, firstjointimestamp=nil, lastquittimestamp=nil, rewords=nil, ipaddress=nil, location=nil, device=nil, permembermiccount=nil, permembermessagecount=nil, role=nil, groupid=nil, subgroupid=nil, stage=nil)
|
2904
|
+
def initialize(userid=nil, username=nil, presenttime=nil, camera=nil, mic=nil, silence=nil, answerquestions=nil, handups=nil, firstjointimestamp=nil, lastquittimestamp=nil, rewords=nil, ipaddress=nil, location=nil, device=nil, permembermiccount=nil, permembermessagecount=nil, role=nil, groupid=nil, subgroupid=nil, stage=nil, currentstate=nil)
|
2882
2905
|
@UserId = userid
|
2883
2906
|
@UserName = username
|
2884
2907
|
@PresentTime = presenttime
|
@@ -2899,6 +2922,7 @@ module TencentCloud
|
|
2899
2922
|
@GroupId = groupid
|
2900
2923
|
@SubGroupId = subgroupid
|
2901
2924
|
@Stage = stage
|
2925
|
+
@CurrentState = currentstate
|
2902
2926
|
end
|
2903
2927
|
|
2904
2928
|
def deserialize(params)
|
@@ -2922,6 +2946,7 @@ module TencentCloud
|
|
2922
2946
|
@GroupId = params['GroupId']
|
2923
2947
|
@SubGroupId = params['SubGroupId']
|
2924
2948
|
@Stage = params['Stage']
|
2949
|
+
@CurrentState = params['CurrentState']
|
2925
2950
|
end
|
2926
2951
|
end
|
2927
2952
|
|
@@ -3111,7 +3136,6 @@ module TencentCloud
|
|
3111
3136
|
# @param SubType: 房间子类型,可以有以下取值:
|
3112
3137
|
# videodoc 文档+视频
|
3113
3138
|
# video 纯视频
|
3114
|
-
# coteaching 双师
|
3115
3139
|
# 直播开始后不允许修改。
|
3116
3140
|
# @type SubType: String
|
3117
3141
|
# @param DisableRecord: 禁止录制。可以有以下取值:
|
@@ -3121,14 +3145,20 @@ module TencentCloud
|
|
3121
3145
|
# @type DisableRecord: Integer
|
3122
3146
|
# @param Assistants: 助教Id列表。直播开始后不允许修改。
|
3123
3147
|
# @type Assistants: Array
|
3124
|
-
# @param GroupId: 房间绑定的群组ID
|
3148
|
+
# @param GroupId: 房间绑定的群组ID。直播开始后不允许修改。
|
3125
3149
|
# @type GroupId: String
|
3126
|
-
# @param EnableDirectControl:
|
3150
|
+
# @param EnableDirectControl: 打开学生麦克风/摄像头的授权开关。直播开始后不允许修改。
|
3127
3151
|
# @type EnableDirectControl: Integer
|
3152
|
+
# @param InteractionMode: 开启专注模式。
|
3153
|
+
# 0 收看全部角色音视频(默认)
|
3154
|
+
# 1 只看老师和助教
|
3155
|
+
# @type InteractionMode: Integer
|
3156
|
+
# @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
|
3157
|
+
# @type VideoOrientation: Integer
|
3128
3158
|
|
3129
|
-
attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl
|
3159
|
+
attr_accessor :RoomId, :SdkAppId, :StartTime, :EndTime, :TeacherId, :Name, :Resolution, :MaxMicNumber, :AutoMic, :AudioQuality, :SubType, :DisableRecord, :Assistants, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation
|
3130
3160
|
|
3131
|
-
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)
|
3161
|
+
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)
|
3132
3162
|
@RoomId = roomid
|
3133
3163
|
@SdkAppId = sdkappid
|
3134
3164
|
@StartTime = starttime
|
@@ -3144,6 +3174,8 @@ module TencentCloud
|
|
3144
3174
|
@Assistants = assistants
|
3145
3175
|
@GroupId = groupid
|
3146
3176
|
@EnableDirectControl = enabledirectcontrol
|
3177
|
+
@InteractionMode = interactionmode
|
3178
|
+
@VideoOrientation = videoorientation
|
3147
3179
|
end
|
3148
3180
|
|
3149
3181
|
def deserialize(params)
|
@@ -3162,6 +3194,8 @@ module TencentCloud
|
|
3162
3194
|
@Assistants = params['Assistants']
|
3163
3195
|
@GroupId = params['GroupId']
|
3164
3196
|
@EnableDirectControl = params['EnableDirectControl']
|
3197
|
+
@InteractionMode = params['InteractionMode']
|
3198
|
+
@VideoOrientation = params['VideoOrientation']
|
3165
3199
|
end
|
3166
3200
|
end
|
3167
3201
|
|
@@ -3349,10 +3383,14 @@ module TencentCloud
|
|
3349
3383
|
# @type GroupId: String
|
3350
3384
|
# @param EnableDirectControl: 打开学生麦克风/摄像头的授权开关
|
3351
3385
|
# @type EnableDirectControl: Integer
|
3386
|
+
# @param InteractionMode: 开启专注模式。 0 收看全部角色音视频(默认) 1 只看老师和助教
|
3387
|
+
# @type InteractionMode: Integer
|
3388
|
+
# @param VideoOrientation: 横竖屏。0:横屏开播(默认值); 1:竖屏开播,当前仅支持移动端的纯视频类型
|
3389
|
+
# @type VideoOrientation: Integer
|
3352
3390
|
|
3353
|
-
attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl
|
3391
|
+
attr_accessor :Name, :StartTime, :EndTime, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation
|
3354
3392
|
|
3355
|
-
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)
|
3393
|
+
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)
|
3356
3394
|
@Name = name
|
3357
3395
|
@StartTime = starttime
|
3358
3396
|
@EndTime = endtime
|
@@ -3370,6 +3408,8 @@ module TencentCloud
|
|
3370
3408
|
@RecordLayout = recordlayout
|
3371
3409
|
@GroupId = groupid
|
3372
3410
|
@EnableDirectControl = enabledirectcontrol
|
3411
|
+
@InteractionMode = interactionmode
|
3412
|
+
@VideoOrientation = videoorientation
|
3373
3413
|
end
|
3374
3414
|
|
3375
3415
|
def deserialize(params)
|
@@ -3390,6 +3430,8 @@ module TencentCloud
|
|
3390
3430
|
@RecordLayout = params['RecordLayout']
|
3391
3431
|
@GroupId = params['GroupId']
|
3392
3432
|
@EnableDirectControl = params['EnableDirectControl']
|
3433
|
+
@InteractionMode = params['InteractionMode']
|
3434
|
+
@VideoOrientation = params['VideoOrientation']
|
3393
3435
|
end
|
3394
3436
|
end
|
3395
3437
|
|
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.602
|
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-06-
|
11
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|