tencentcloud-sdk-lcic 3.0.1123 → 3.0.1143
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 +38 -18
- 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: d308783aa62262cb7c533c1251f7244b5e314f6a
|
4
|
+
data.tar.gz: 62145d279f3dc1c54fc071632d8b8103f43e4da0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 443760d9c9cbdedf01865eece0fedbe3ee01ef182d26651924d2cde0028bfc608efa4c8f8a9cc2b1a77b74a0515451ec0177b5f5a54577525f001ab4f2287dd8
|
7
|
+
data.tar.gz: cb63965e25234f6444e516b862a14942eddf7119f6e6419a3c31b3ff28233f0ecb44359e941dbeb46193c5fed7975c66ea1524f07c53c8ae6564e4c4d4eb7b89
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1143
|
data/lib/v20220817/models.rb
CHANGED
@@ -934,15 +934,17 @@ module TencentCloud
|
|
934
934
|
# @type WhiteBoardSnapshotMode: Integer
|
935
935
|
# @param SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
|
936
936
|
# @type SubtitlesTranscription: Integer
|
937
|
+
# @param RecordMerge: 录制文件合并开关。0 关闭 1 开启 注:只有在一节课多次启用手动录制时,此功能才有效
|
938
|
+
# @type RecordMerge: Integer
|
937
939
|
|
938
|
-
attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :Guests, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang, :RecordStream, :WhiteBoardSnapshotMode, :SubtitlesTranscription
|
940
|
+
attr_accessor :Name, :StartTime, :EndTime, :SdkAppId, :Resolution, :MaxMicNumber, :SubType, :TeacherId, :AutoMic, :TurnOffMic, :AudioQuality, :DisableRecord, :Assistants, :RTCAudienceNumber, :AudienceType, :RecordLayout, :GroupId, :EnableDirectControl, :InteractionMode, :VideoOrientation, :IsGradingRequiredPostClass, :RoomType, :Guests, :EndDelayTime, :LiveType, :RecordLiveUrl, :EnableAutoStart, :RecordBackground, :RecordScene, :RecordLang, :RecordStream, :WhiteBoardSnapshotMode, :SubtitlesTranscription, :RecordMerge
|
939
941
|
extend Gem::Deprecate
|
940
|
-
deprecate :RTCAudienceNumber, :none, 2025,
|
941
|
-
deprecate :RTCAudienceNumber=, :none, 2025,
|
942
|
-
deprecate :RecordLang, :none, 2025,
|
943
|
-
deprecate :RecordLang=, :none, 2025,
|
942
|
+
deprecate :RTCAudienceNumber, :none, 2025, 9
|
943
|
+
deprecate :RTCAudienceNumber=, :none, 2025, 9
|
944
|
+
deprecate :RecordLang, :none, 2025, 9
|
945
|
+
deprecate :RecordLang=, :none, 2025, 9
|
944
946
|
|
945
|
-
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, guests=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil)
|
947
|
+
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, guests=nil, enddelaytime=nil, livetype=nil, recordliveurl=nil, enableautostart=nil, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil, recordmerge=nil)
|
946
948
|
@Name = name
|
947
949
|
@StartTime = starttime
|
948
950
|
@EndTime = endtime
|
@@ -976,6 +978,7 @@ module TencentCloud
|
|
976
978
|
@RecordStream = recordstream
|
977
979
|
@WhiteBoardSnapshotMode = whiteboardsnapshotmode
|
978
980
|
@SubtitlesTranscription = subtitlestranscription
|
981
|
+
@RecordMerge = recordmerge
|
979
982
|
end
|
980
983
|
|
981
984
|
def deserialize(params)
|
@@ -1012,6 +1015,7 @@ module TencentCloud
|
|
1012
1015
|
@RecordStream = params['RecordStream']
|
1013
1016
|
@WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
|
1014
1017
|
@SubtitlesTranscription = params['SubtitlesTranscription']
|
1018
|
+
@RecordMerge = params['RecordMerge']
|
1015
1019
|
end
|
1016
1020
|
end
|
1017
1021
|
|
@@ -2525,12 +2529,14 @@ module TencentCloud
|
|
2525
2529
|
# @type SubtitlesTranscription: Integer
|
2526
2530
|
# @param Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
2527
2531
|
# @type Guests: Array
|
2532
|
+
# @param RecordMerge: 录制文件合并开关。0 关闭 1 开启 注:只有在一节课多次启用手动录制时,此功能才有效
|
2533
|
+
# @type RecordMerge: Integer
|
2528
2534
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2529
2535
|
# @type RequestId: String
|
2530
2536
|
|
2531
|
-
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, :RecordBackground, :RTMPStreamingURL, :RecordScene, :RecordLang, :RecordStream, :RecordLayout, :WhiteBoardSnapshotMode, :SubtitlesTranscription, :Guests, :RequestId
|
2537
|
+
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, :RecordBackground, :RTMPStreamingURL, :RecordScene, :RecordLang, :RecordStream, :RecordLayout, :WhiteBoardSnapshotMode, :SubtitlesTranscription, :Guests, :RecordMerge, :RequestId
|
2532
2538
|
|
2533
|
-
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, recordbackground=nil, rtmpstreamingurl=nil, recordscene=nil, recordlang=nil, recordstream=nil, recordlayout=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil, guests=nil, requestid=nil)
|
2539
|
+
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, recordbackground=nil, rtmpstreamingurl=nil, recordscene=nil, recordlang=nil, recordstream=nil, recordlayout=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil, guests=nil, recordmerge=nil, requestid=nil)
|
2534
2540
|
@Name = name
|
2535
2541
|
@StartTime = starttime
|
2536
2542
|
@EndTime = endtime
|
@@ -2566,6 +2572,7 @@ module TencentCloud
|
|
2566
2572
|
@WhiteBoardSnapshotMode = whiteboardsnapshotmode
|
2567
2573
|
@SubtitlesTranscription = subtitlestranscription
|
2568
2574
|
@Guests = guests
|
2575
|
+
@RecordMerge = recordmerge
|
2569
2576
|
@RequestId = requestid
|
2570
2577
|
end
|
2571
2578
|
|
@@ -2605,6 +2612,7 @@ module TencentCloud
|
|
2605
2612
|
@WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
|
2606
2613
|
@SubtitlesTranscription = params['SubtitlesTranscription']
|
2607
2614
|
@Guests = params['Guests']
|
2615
|
+
@RecordMerge = params['RecordMerge']
|
2608
2616
|
@RequestId = params['RequestId']
|
2609
2617
|
end
|
2610
2618
|
end
|
@@ -4123,13 +4131,17 @@ module TencentCloud
|
|
4123
4131
|
# @type WhiteBoardSnapshotMode: Integer
|
4124
4132
|
# @param SubtitlesTranscription: 字幕转写功能开关:0关闭,1开启,默认关闭
|
4125
4133
|
# @type SubtitlesTranscription: Integer
|
4134
|
+
# @param Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
4135
|
+
# @type Guests: Array
|
4136
|
+
# @param RecordMerge: 录制文件合并开关。0 关闭 1 开启 注:只有在一节课多次启用手动录制时,此功能才有效
|
4137
|
+
# @type RecordMerge: Integer
|
4126
4138
|
|
4127
|
-
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, :RecordScene, :RecordLang, :WhiteBoardSnapshotMode, :SubtitlesTranscription
|
4139
|
+
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, :RecordScene, :RecordLang, :WhiteBoardSnapshotMode, :SubtitlesTranscription, :Guests, :RecordMerge
|
4128
4140
|
extend Gem::Deprecate
|
4129
|
-
deprecate :RecordLang, :none, 2025,
|
4130
|
-
deprecate :RecordLang=, :none, 2025,
|
4141
|
+
deprecate :RecordLang, :none, 2025, 9
|
4142
|
+
deprecate :RecordLang=, :none, 2025, 9
|
4131
4143
|
|
4132
|
-
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, recordscene=nil, recordlang=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil)
|
4144
|
+
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, recordscene=nil, recordlang=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil, guests=nil, recordmerge=nil)
|
4133
4145
|
@RoomId = roomid
|
4134
4146
|
@SdkAppId = sdkappid
|
4135
4147
|
@StartTime = starttime
|
@@ -4158,6 +4170,8 @@ module TencentCloud
|
|
4158
4170
|
@RecordLang = recordlang
|
4159
4171
|
@WhiteBoardSnapshotMode = whiteboardsnapshotmode
|
4160
4172
|
@SubtitlesTranscription = subtitlestranscription
|
4173
|
+
@Guests = guests
|
4174
|
+
@RecordMerge = recordmerge
|
4161
4175
|
end
|
4162
4176
|
|
4163
4177
|
def deserialize(params)
|
@@ -4189,6 +4203,8 @@ module TencentCloud
|
|
4189
4203
|
@RecordLang = params['RecordLang']
|
4190
4204
|
@WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
|
4191
4205
|
@SubtitlesTranscription = params['SubtitlesTranscription']
|
4206
|
+
@Guests = params['Guests']
|
4207
|
+
@RecordMerge = params['RecordMerge']
|
4192
4208
|
end
|
4193
4209
|
end
|
4194
4210
|
|
@@ -4476,15 +4492,17 @@ module TencentCloud
|
|
4476
4492
|
# @type SubtitlesTranscription: Integer
|
4477
4493
|
# @param Guests: 嘉宾Id列表。当圆桌会议模式(RoomType==3)时生效
|
4478
4494
|
# @type Guests: Array
|
4495
|
+
# @param RecordMerge: 录制文件合并开关。0 关闭 1 开启 注:只有在一节课多次启用手动录制时,此功能才有效
|
4496
|
+
# @type RecordMerge: Integer
|
4479
4497
|
|
4480
|
-
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, :RecordBackground, :RecordScene, :RecordLang, :RecordStream, :WhiteBoardSnapshotMode, :SubtitlesTranscription, :Guests
|
4498
|
+
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, :RecordBackground, :RecordScene, :RecordLang, :RecordStream, :WhiteBoardSnapshotMode, :SubtitlesTranscription, :Guests, :RecordMerge
|
4481
4499
|
extend Gem::Deprecate
|
4482
|
-
deprecate :RTCAudienceNumber, :none, 2025,
|
4483
|
-
deprecate :RTCAudienceNumber=, :none, 2025,
|
4484
|
-
deprecate :RecordLang, :none, 2025,
|
4485
|
-
deprecate :RecordLang=, :none, 2025,
|
4500
|
+
deprecate :RTCAudienceNumber, :none, 2025, 9
|
4501
|
+
deprecate :RTCAudienceNumber=, :none, 2025, 9
|
4502
|
+
deprecate :RecordLang, :none, 2025, 9
|
4503
|
+
deprecate :RecordLang=, :none, 2025, 9
|
4486
4504
|
|
4487
|
-
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, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil, guests=nil)
|
4505
|
+
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, recordbackground=nil, recordscene=nil, recordlang=nil, recordstream=nil, whiteboardsnapshotmode=nil, subtitlestranscription=nil, guests=nil, recordmerge=nil)
|
4488
4506
|
@Name = name
|
4489
4507
|
@StartTime = starttime
|
4490
4508
|
@EndTime = endtime
|
@@ -4517,6 +4535,7 @@ module TencentCloud
|
|
4517
4535
|
@WhiteBoardSnapshotMode = whiteboardsnapshotmode
|
4518
4536
|
@SubtitlesTranscription = subtitlestranscription
|
4519
4537
|
@Guests = guests
|
4538
|
+
@RecordMerge = recordmerge
|
4520
4539
|
end
|
4521
4540
|
|
4522
4541
|
def deserialize(params)
|
@@ -4552,6 +4571,7 @@ module TencentCloud
|
|
4552
4571
|
@WhiteBoardSnapshotMode = params['WhiteBoardSnapshotMode']
|
4553
4572
|
@SubtitlesTranscription = params['SubtitlesTranscription']
|
4554
4573
|
@Guests = params['Guests']
|
4574
|
+
@RecordMerge = params['RecordMerge']
|
4555
4575
|
end
|
4556
4576
|
end
|
4557
4577
|
|
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.1143
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|