tencentcloud-sdk-live 3.0.605 → 3.0.606
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/v20180801/models.rb +26 -8
- 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: 6a836a2e40819a4cfed7fa053ecf7a1d3c9bd74c
|
4
|
+
data.tar.gz: 0b759ba1b504973cdb62b3ab7d9f237d71ceb573
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 013f7d56fb79d085fe60c79a36dd9b98498ba8cb90f5fe84149904446e49e3278739da05dff49f1200d341e772882071fb45334700c56988e55d61a8de365407
|
7
|
+
data.tar.gz: a9092e3a147ff382fc837fb48ff06a9e2adc7fb40b07f9a31e6236d7bbf0fed9d2a4c1b399f91357f1026c9d911bb138c34f3cbdcc62b3eed6fb23af7886b283
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.606
|
data/lib/v20180801/models.rb
CHANGED
@@ -1822,10 +1822,12 @@ module TencentCloud
|
|
1822
1822
|
# @type CheckStreamLowFrameRate: Integer
|
1823
1823
|
# @param AllowMonitorReport: 是否存储监播事件到监播报告,以及是否允许查询监播报告。
|
1824
1824
|
# @type AllowMonitorReport: Integer
|
1825
|
+
# @param AiFormatDiagnose: 是否开启格式诊断。
|
1826
|
+
# @type AiFormatDiagnose: Integer
|
1825
1827
|
|
1826
|
-
attr_accessor :OutputInfo, :InputList, :MonitorName, :NotifyPolicy, :AsrLanguage, :OcrLanguage, :AiAsrInputIndexList, :AiOcrInputIndexList, :CheckStreamBroken, :CheckStreamLowFrameRate, :AllowMonitorReport
|
1828
|
+
attr_accessor :OutputInfo, :InputList, :MonitorName, :NotifyPolicy, :AsrLanguage, :OcrLanguage, :AiAsrInputIndexList, :AiOcrInputIndexList, :CheckStreamBroken, :CheckStreamLowFrameRate, :AllowMonitorReport, :AiFormatDiagnose
|
1827
1829
|
|
1828
|
-
def initialize(outputinfo=nil, inputlist=nil, monitorname=nil, notifypolicy=nil, asrlanguage=nil, ocrlanguage=nil, aiasrinputindexlist=nil, aiocrinputindexlist=nil, checkstreambroken=nil, checkstreamlowframerate=nil, allowmonitorreport=nil)
|
1830
|
+
def initialize(outputinfo=nil, inputlist=nil, monitorname=nil, notifypolicy=nil, asrlanguage=nil, ocrlanguage=nil, aiasrinputindexlist=nil, aiocrinputindexlist=nil, checkstreambroken=nil, checkstreamlowframerate=nil, allowmonitorreport=nil, aiformatdiagnose=nil)
|
1829
1831
|
@OutputInfo = outputinfo
|
1830
1832
|
@InputList = inputlist
|
1831
1833
|
@MonitorName = monitorname
|
@@ -1837,6 +1839,7 @@ module TencentCloud
|
|
1837
1839
|
@CheckStreamBroken = checkstreambroken
|
1838
1840
|
@CheckStreamLowFrameRate = checkstreamlowframerate
|
1839
1841
|
@AllowMonitorReport = allowmonitorreport
|
1842
|
+
@AiFormatDiagnose = aiformatdiagnose
|
1840
1843
|
end
|
1841
1844
|
|
1842
1845
|
def deserialize(params)
|
@@ -1864,6 +1867,7 @@ module TencentCloud
|
|
1864
1867
|
@CheckStreamBroken = params['CheckStreamBroken']
|
1865
1868
|
@CheckStreamLowFrameRate = params['CheckStreamLowFrameRate']
|
1866
1869
|
@AllowMonitorReport = params['AllowMonitorReport']
|
1870
|
+
@AiFormatDiagnose = params['AiFormatDiagnose']
|
1867
1871
|
end
|
1868
1872
|
end
|
1869
1873
|
|
@@ -7735,17 +7739,22 @@ module TencentCloud
|
|
7735
7739
|
# @param LowFrameRateResults: 低帧率信息
|
7736
7740
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7737
7741
|
# @type LowFrameRateResults: Array
|
7742
|
+
# @param StreamFormatResults: 流格式诊断信息
|
7743
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7744
|
+
# @type StreamFormatResults: Array
|
7738
7745
|
|
7739
|
-
attr_accessor :StreamBrokenResults, :LowFrameRateResults
|
7746
|
+
attr_accessor :StreamBrokenResults, :LowFrameRateResults, :StreamFormatResults
|
7740
7747
|
|
7741
|
-
def initialize(streambrokenresults=nil, lowframerateresults=nil)
|
7748
|
+
def initialize(streambrokenresults=nil, lowframerateresults=nil, streamformatresults=nil)
|
7742
7749
|
@StreamBrokenResults = streambrokenresults
|
7743
7750
|
@LowFrameRateResults = lowframerateresults
|
7751
|
+
@StreamFormatResults = streamformatresults
|
7744
7752
|
end
|
7745
7753
|
|
7746
7754
|
def deserialize(params)
|
7747
7755
|
@StreamBrokenResults = params['StreamBrokenResults']
|
7748
7756
|
@LowFrameRateResults = params['LowFrameRateResults']
|
7757
|
+
@StreamFormatResults = params['StreamFormatResults']
|
7749
7758
|
end
|
7750
7759
|
end
|
7751
7760
|
|
@@ -8516,10 +8525,13 @@ module TencentCloud
|
|
8516
8525
|
# @param AllowMonitorReport: 是否存储监播事件到监播报告,以及是否允许查询监播报告
|
8517
8526
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8518
8527
|
# @type AllowMonitorReport: Integer
|
8528
|
+
# @param AiFormatDiagnose: 是否开启格式诊断
|
8529
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8530
|
+
# @type AiFormatDiagnose: Integer
|
8519
8531
|
|
8520
|
-
attr_accessor :MonitorId, :MonitorName, :OutputInfo, :InputList, :Status, :StartTime, :StopTime, :CreateTime, :UpdateTime, :NotifyPolicy, :AudibleInputIndexList, :AiAsrInputIndexList, :CheckStreamBroken, :CheckStreamLowFrameRate, :AsrLanguage, :OcrLanguage, :AiOcrInputIndexList, :AllowMonitorReport
|
8532
|
+
attr_accessor :MonitorId, :MonitorName, :OutputInfo, :InputList, :Status, :StartTime, :StopTime, :CreateTime, :UpdateTime, :NotifyPolicy, :AudibleInputIndexList, :AiAsrInputIndexList, :CheckStreamBroken, :CheckStreamLowFrameRate, :AsrLanguage, :OcrLanguage, :AiOcrInputIndexList, :AllowMonitorReport, :AiFormatDiagnose
|
8521
8533
|
|
8522
|
-
def initialize(monitorid=nil, monitorname=nil, outputinfo=nil, inputlist=nil, status=nil, starttime=nil, stoptime=nil, createtime=nil, updatetime=nil, notifypolicy=nil, audibleinputindexlist=nil, aiasrinputindexlist=nil, checkstreambroken=nil, checkstreamlowframerate=nil, asrlanguage=nil, ocrlanguage=nil, aiocrinputindexlist=nil, allowmonitorreport=nil)
|
8534
|
+
def initialize(monitorid=nil, monitorname=nil, outputinfo=nil, inputlist=nil, status=nil, starttime=nil, stoptime=nil, createtime=nil, updatetime=nil, notifypolicy=nil, audibleinputindexlist=nil, aiasrinputindexlist=nil, checkstreambroken=nil, checkstreamlowframerate=nil, asrlanguage=nil, ocrlanguage=nil, aiocrinputindexlist=nil, allowmonitorreport=nil, aiformatdiagnose=nil)
|
8523
8535
|
@MonitorId = monitorid
|
8524
8536
|
@MonitorName = monitorname
|
8525
8537
|
@OutputInfo = outputinfo
|
@@ -8538,6 +8550,7 @@ module TencentCloud
|
|
8538
8550
|
@OcrLanguage = ocrlanguage
|
8539
8551
|
@AiOcrInputIndexList = aiocrinputindexlist
|
8540
8552
|
@AllowMonitorReport = allowmonitorreport
|
8553
|
+
@AiFormatDiagnose = aiformatdiagnose
|
8541
8554
|
end
|
8542
8555
|
|
8543
8556
|
def deserialize(params)
|
@@ -8572,6 +8585,7 @@ module TencentCloud
|
|
8572
8585
|
@OcrLanguage = params['OcrLanguage']
|
8573
8586
|
@AiOcrInputIndexList = params['AiOcrInputIndexList']
|
8574
8587
|
@AllowMonitorReport = params['AllowMonitorReport']
|
8588
|
+
@AiFormatDiagnose = params['AiFormatDiagnose']
|
8575
8589
|
end
|
8576
8590
|
end
|
8577
8591
|
|
@@ -9483,10 +9497,12 @@ module TencentCloud
|
|
9483
9497
|
# @type CheckStreamLowFrameRate: Integer
|
9484
9498
|
# @param AllowMonitorReport: 是否存储监播事件到监播报告,以及是否允许查询监播报告。
|
9485
9499
|
# @type AllowMonitorReport: Integer
|
9500
|
+
# @param AiFormatDiagnose: 是否开启格式诊断。
|
9501
|
+
# @type AiFormatDiagnose: Integer
|
9486
9502
|
|
9487
|
-
attr_accessor :MonitorId, :MonitorName, :OutputInfo, :InputList, :NotifyPolicy, :AsrLanguage, :OcrLanguage, :AiAsrInputIndexList, :AiOcrInputIndexList, :CheckStreamBroken, :CheckStreamLowFrameRate, :AllowMonitorReport
|
9503
|
+
attr_accessor :MonitorId, :MonitorName, :OutputInfo, :InputList, :NotifyPolicy, :AsrLanguage, :OcrLanguage, :AiAsrInputIndexList, :AiOcrInputIndexList, :CheckStreamBroken, :CheckStreamLowFrameRate, :AllowMonitorReport, :AiFormatDiagnose
|
9488
9504
|
|
9489
|
-
def initialize(monitorid=nil, monitorname=nil, outputinfo=nil, inputlist=nil, notifypolicy=nil, asrlanguage=nil, ocrlanguage=nil, aiasrinputindexlist=nil, aiocrinputindexlist=nil, checkstreambroken=nil, checkstreamlowframerate=nil, allowmonitorreport=nil)
|
9505
|
+
def initialize(monitorid=nil, monitorname=nil, outputinfo=nil, inputlist=nil, notifypolicy=nil, asrlanguage=nil, ocrlanguage=nil, aiasrinputindexlist=nil, aiocrinputindexlist=nil, checkstreambroken=nil, checkstreamlowframerate=nil, allowmonitorreport=nil, aiformatdiagnose=nil)
|
9490
9506
|
@MonitorId = monitorid
|
9491
9507
|
@MonitorName = monitorname
|
9492
9508
|
@OutputInfo = outputinfo
|
@@ -9499,6 +9515,7 @@ module TencentCloud
|
|
9499
9515
|
@CheckStreamBroken = checkstreambroken
|
9500
9516
|
@CheckStreamLowFrameRate = checkstreamlowframerate
|
9501
9517
|
@AllowMonitorReport = allowmonitorreport
|
9518
|
+
@AiFormatDiagnose = aiformatdiagnose
|
9502
9519
|
end
|
9503
9520
|
|
9504
9521
|
def deserialize(params)
|
@@ -9527,6 +9544,7 @@ module TencentCloud
|
|
9527
9544
|
@CheckStreamBroken = params['CheckStreamBroken']
|
9528
9545
|
@CheckStreamLowFrameRate = params['CheckStreamLowFrameRate']
|
9529
9546
|
@AllowMonitorReport = params['AllowMonitorReport']
|
9547
|
+
@AiFormatDiagnose = params['AiFormatDiagnose']
|
9530
9548
|
end
|
9531
9549
|
end
|
9532
9550
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-live
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.606
|
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-07-
|
11
|
+
date: 2023-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|