tencentcloud-sdk-mps 3.0.1110 → 3.0.1115
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/v20190612/models.rb +73 -21
- 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: 8ed56f77a80d6219243d7838eb7ebc21c82c7523
|
4
|
+
data.tar.gz: b85fc059ab122a1d674fed18bec6bc963b95892c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8efd109034b0290b0bab1a281f9eaff68d624f8514586b58f7f24ce764ee16a81729408f834d2d2c08b7f6309e5d79ff82fd32b25be5f13c4237f2bb6752c264
|
7
|
+
data.tar.gz: d379fcf021bb2f1a47e38cf048e58784e67bd626fcdc03dd7809159f1b0704e244fe6284c1f519160b65b38d91ab0d29774fe2947f5bcd7750a649e5c03985cb
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1115
|
data/lib/v20190612/models.rb
CHANGED
@@ -2129,8 +2129,8 @@ module TencentCloud
|
|
2129
2129
|
|
2130
2130
|
attr_accessor :SegmentSet, :SubtitlePath, :OutputStorage
|
2131
2131
|
extend Gem::Deprecate
|
2132
|
-
deprecate :OutputStorage, :none, 2025,
|
2133
|
-
deprecate :OutputStorage=, :none, 2025,
|
2132
|
+
deprecate :OutputStorage, :none, 2025, 8
|
2133
|
+
deprecate :OutputStorage=, :none, 2025, 8
|
2134
2134
|
|
2135
2135
|
def initialize(segmentset=nil, subtitlepath=nil, outputstorage=nil)
|
2136
2136
|
@SegmentSet = segmentset
|
@@ -7041,10 +7041,12 @@ module TencentCloud
|
|
7041
7041
|
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRISTSettings`
|
7042
7042
|
# @param InputRegion: 输入节点的地区
|
7043
7043
|
# @type InputRegion: String
|
7044
|
+
# @param FailOverOption: 冷热备相关
|
7045
|
+
# @type FailOverOption: :class:`Tencentcloud::Mps.v20190612.models.FailOverOption`
|
7044
7046
|
|
7045
|
-
attr_accessor :InputName, :Protocol, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones, :RISTSettings, :InputRegion
|
7047
|
+
attr_accessor :InputName, :Protocol, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones, :RISTSettings, :InputRegion, :FailOverOption
|
7046
7048
|
|
7047
|
-
def initialize(inputname=nil, protocol=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil, securitygroupids=nil, zones=nil, ristsettings=nil, inputregion=nil)
|
7049
|
+
def initialize(inputname=nil, protocol=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil, securitygroupids=nil, zones=nil, ristsettings=nil, inputregion=nil, failoveroption=nil)
|
7048
7050
|
@InputName = inputname
|
7049
7051
|
@Protocol = protocol
|
7050
7052
|
@Description = description
|
@@ -7060,6 +7062,7 @@ module TencentCloud
|
|
7060
7062
|
@Zones = zones
|
7061
7063
|
@RISTSettings = ristsettings
|
7062
7064
|
@InputRegion = inputregion
|
7065
|
+
@FailOverOption = failoveroption
|
7063
7066
|
end
|
7064
7067
|
|
7065
7068
|
def deserialize(params)
|
@@ -7099,6 +7102,10 @@ module TencentCloud
|
|
7099
7102
|
@RISTSettings.deserialize(params['RISTSettings'])
|
7100
7103
|
end
|
7101
7104
|
@InputRegion = params['InputRegion']
|
7105
|
+
unless params['FailOverOption'].nil?
|
7106
|
+
@FailOverOption = FailOverOption.new
|
7107
|
+
@FailOverOption.deserialize(params['FailOverOption'])
|
7108
|
+
end
|
7102
7109
|
end
|
7103
7110
|
end
|
7104
7111
|
|
@@ -7782,14 +7789,17 @@ module TencentCloud
|
|
7782
7789
|
# @param RecordFormat: 录制文件格式。可选值:
|
7783
7790
|
# <li>PNG: PNG图片</li>
|
7784
7791
|
# @type RecordFormat: String
|
7792
|
+
# @param Strategy: 媒体质检抽检策略。
|
7793
|
+
# @type Strategy: :class:`Tencentcloud::Mps.v20190612.models.QualityControlStrategy`
|
7785
7794
|
|
7786
|
-
attr_accessor :Name, :QualityControlItemSet, :Comment, :RecordFormat
|
7795
|
+
attr_accessor :Name, :QualityControlItemSet, :Comment, :RecordFormat, :Strategy
|
7787
7796
|
|
7788
|
-
def initialize(name=nil, qualitycontrolitemset=nil, comment=nil, recordformat=nil)
|
7797
|
+
def initialize(name=nil, qualitycontrolitemset=nil, comment=nil, recordformat=nil, strategy=nil)
|
7789
7798
|
@Name = name
|
7790
7799
|
@QualityControlItemSet = qualitycontrolitemset
|
7791
7800
|
@Comment = comment
|
7792
7801
|
@RecordFormat = recordformat
|
7802
|
+
@Strategy = strategy
|
7793
7803
|
end
|
7794
7804
|
|
7795
7805
|
def deserialize(params)
|
@@ -7804,6 +7814,10 @@ module TencentCloud
|
|
7804
7814
|
end
|
7805
7815
|
@Comment = params['Comment']
|
7806
7816
|
@RecordFormat = params['RecordFormat']
|
7817
|
+
unless params['Strategy'].nil?
|
7818
|
+
@Strategy = QualityControlStrategy.new
|
7819
|
+
@Strategy.deserialize(params['Strategy'])
|
7820
|
+
end
|
7807
7821
|
end
|
7808
7822
|
end
|
7809
7823
|
|
@@ -11526,7 +11540,6 @@ module TencentCloud
|
|
11526
11540
|
# @param TotalCount: 符合过滤条件的记录总数。
|
11527
11541
|
# @type TotalCount: Integer
|
11528
11542
|
# @param QualityControlTemplateSet: 媒体质检模板详情列表。
|
11529
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
11530
11543
|
# @type QualityControlTemplateSet: Array
|
11531
11544
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11532
11545
|
# @type RequestId: String
|
@@ -13841,8 +13854,8 @@ module TencentCloud
|
|
13841
13854
|
|
13842
13855
|
attr_accessor :TaskType, :EvaluationTypeSet, :EvaluationRangeType, :ContrastInfoSet, :ContrastMediaSet, :ContrastTemplateSet, :StartTime, :EndTime, :StartFrameIndex, :EndFrameIndex, :ResolutionAlignmentMode, :BitrateSet, :VCRFSet
|
13843
13856
|
extend Gem::Deprecate
|
13844
|
-
deprecate :ContrastInfoSet, :none, 2025,
|
13845
|
-
deprecate :ContrastInfoSet=, :none, 2025,
|
13857
|
+
deprecate :ContrastInfoSet, :none, 2025, 8
|
13858
|
+
deprecate :ContrastInfoSet=, :none, 2025, 8
|
13846
13859
|
|
13847
13860
|
def initialize(tasktype=nil, evaluationtypeset=nil, evaluationrangetype=nil, contrastinfoset=nil, contrastmediaset=nil, contrasttemplateset=nil, starttime=nil, endtime=nil, startframeindex=nil, endframeindex=nil, resolutionalignmentmode=nil, bitrateset=nil, vcrfset=nil)
|
13848
13861
|
@TaskType = tasktype
|
@@ -14141,6 +14154,23 @@ module TencentCloud
|
|
14141
14154
|
end
|
14142
14155
|
end
|
14143
14156
|
|
14157
|
+
# type FailOverOption struct
|
14158
|
+
# { FailOverType string json:"FailOverType" // 新增 冷/热备 COLDSTANDBY、HOTSTANDBY }
|
14159
|
+
class FailOverOption < TencentCloud::Common::AbstractModel
|
14160
|
+
# @param FailOverType: 热备
|
14161
|
+
# @type FailOverType: String
|
14162
|
+
|
14163
|
+
attr_accessor :FailOverType
|
14164
|
+
|
14165
|
+
def initialize(failovertype=nil)
|
14166
|
+
@FailOverType = failovertype
|
14167
|
+
end
|
14168
|
+
|
14169
|
+
def deserialize(params)
|
14170
|
+
@FailOverType = params['FailOverType']
|
14171
|
+
end
|
14172
|
+
end
|
14173
|
+
|
14144
14174
|
# 流的音频数据。
|
14145
14175
|
class FlowAudio < TencentCloud::Common::AbstractModel
|
14146
14176
|
# @param Fps: 帧率。
|
@@ -15894,10 +15924,10 @@ module TencentCloud
|
|
15894
15924
|
|
15895
15925
|
attr_accessor :QualityControlResults, :DiagnoseResults, :QualityControlResultSet, :DiagnoseResultSet
|
15896
15926
|
extend Gem::Deprecate
|
15897
|
-
deprecate :QualityControlResults, :none, 2025,
|
15898
|
-
deprecate :QualityControlResults=, :none, 2025,
|
15899
|
-
deprecate :DiagnoseResults, :none, 2025,
|
15900
|
-
deprecate :DiagnoseResults=, :none, 2025,
|
15927
|
+
deprecate :QualityControlResults, :none, 2025, 8
|
15928
|
+
deprecate :QualityControlResults=, :none, 2025, 8
|
15929
|
+
deprecate :DiagnoseResults, :none, 2025, 8
|
15930
|
+
deprecate :DiagnoseResults=, :none, 2025, 8
|
15901
15931
|
|
15902
15932
|
def initialize(qualitycontrolresults=nil, diagnoseresults=nil, qualitycontrolresultset=nil, diagnoseresultset=nil)
|
15903
15933
|
@QualityControlResults = qualitycontrolresults
|
@@ -18825,10 +18855,12 @@ module TencentCloud
|
|
18825
18855
|
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRISTSettings`
|
18826
18856
|
# @param InputRegion: 输入节点的地区
|
18827
18857
|
# @type InputRegion: String
|
18858
|
+
# @param FailOverOption: 冷热备相关
|
18859
|
+
# @type FailOverOption: :class:`Tencentcloud::Mps.v20190612.models.FailOverOption`
|
18828
18860
|
|
18829
|
-
attr_accessor :InputId, :InputName, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :Protocol, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones, :RISTSettings, :InputRegion
|
18861
|
+
attr_accessor :InputId, :InputName, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :Protocol, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones, :RISTSettings, :InputRegion, :FailOverOption
|
18830
18862
|
|
18831
|
-
def initialize(inputid=nil, inputname=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, protocol=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil, securitygroupids=nil, zones=nil, ristsettings=nil, inputregion=nil)
|
18863
|
+
def initialize(inputid=nil, inputname=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, protocol=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil, securitygroupids=nil, zones=nil, ristsettings=nil, inputregion=nil, failoveroption=nil)
|
18832
18864
|
@InputId = inputid
|
18833
18865
|
@InputName = inputname
|
18834
18866
|
@Description = description
|
@@ -18845,6 +18877,7 @@ module TencentCloud
|
|
18845
18877
|
@Zones = zones
|
18846
18878
|
@RISTSettings = ristsettings
|
18847
18879
|
@InputRegion = inputregion
|
18880
|
+
@FailOverOption = failoveroption
|
18848
18881
|
end
|
18849
18882
|
|
18850
18883
|
def deserialize(params)
|
@@ -18885,6 +18918,10 @@ module TencentCloud
|
|
18885
18918
|
@RISTSettings.deserialize(params['RISTSettings'])
|
18886
18919
|
end
|
18887
18920
|
@InputRegion = params['InputRegion']
|
18921
|
+
unless params['FailOverOption'].nil?
|
18922
|
+
@FailOverOption = FailOverOption.new
|
18923
|
+
@FailOverOption.deserialize(params['FailOverOption'])
|
18924
|
+
end
|
18888
18925
|
end
|
18889
18926
|
end
|
18890
18927
|
|
@@ -19122,15 +19159,18 @@ module TencentCloud
|
|
19122
19159
|
# @param RecordFormat: 录制文件格式。可选值:
|
19123
19160
|
# <li>PNG: PNG图片</li>
|
19124
19161
|
# @type RecordFormat: String
|
19162
|
+
# @param Strategy: 媒体质检抽检策略。
|
19163
|
+
# @type Strategy: :class:`Tencentcloud::Mps.v20190612.models.QualityControlStrategy`
|
19125
19164
|
|
19126
|
-
attr_accessor :Definition, :Name, :Comment, :QualityControlItemSet, :RecordFormat
|
19165
|
+
attr_accessor :Definition, :Name, :Comment, :QualityControlItemSet, :RecordFormat, :Strategy
|
19127
19166
|
|
19128
|
-
def initialize(definition=nil, name=nil, comment=nil, qualitycontrolitemset=nil, recordformat=nil)
|
19167
|
+
def initialize(definition=nil, name=nil, comment=nil, qualitycontrolitemset=nil, recordformat=nil, strategy=nil)
|
19129
19168
|
@Definition = definition
|
19130
19169
|
@Name = name
|
19131
19170
|
@Comment = comment
|
19132
19171
|
@QualityControlItemSet = qualitycontrolitemset
|
19133
19172
|
@RecordFormat = recordformat
|
19173
|
+
@Strategy = strategy
|
19134
19174
|
end
|
19135
19175
|
|
19136
19176
|
def deserialize(params)
|
@@ -19146,6 +19186,10 @@ module TencentCloud
|
|
19146
19186
|
end
|
19147
19187
|
end
|
19148
19188
|
@RecordFormat = params['RecordFormat']
|
19189
|
+
unless params['Strategy'].nil?
|
19190
|
+
@Strategy = QualityControlStrategy.new
|
19191
|
+
@Strategy.deserialize(params['Strategy'])
|
19192
|
+
end
|
19149
19193
|
end
|
19150
19194
|
end
|
19151
19195
|
|
@@ -24894,16 +24938,24 @@ module TencentCloud
|
|
24894
24938
|
|
24895
24939
|
# 媒体质检的检测策略。
|
24896
24940
|
class TimeSpotCheck < TencentCloud::Common::AbstractModel
|
24897
|
-
# @param CheckDuration:
|
24941
|
+
# @param CheckDuration: 每次循环检测的时长。取值范围(单位s):
|
24898
24942
|
|
24899
24943
|
# - 最小值:10
|
24900
24944
|
# - 最大值:86400
|
24901
24945
|
# @type CheckDuration: Integer
|
24902
|
-
# @param CheckInterval:
|
24946
|
+
# @param CheckInterval: 抽检间隔,表示在一次检测结束后,等待多长时间后,再次检测。取值范围(单位 s):
|
24947
|
+
# - 最小值:10
|
24948
|
+
# - 最大值:3600
|
24903
24949
|
# @type CheckInterval: Integer
|
24904
|
-
# @param SkipDuration:
|
24950
|
+
# @param SkipDuration: 片头跳过时长。取值范围(单位 s):
|
24951
|
+
# - 最小值:1
|
24952
|
+
# - 最大值:1800
|
24905
24953
|
# @type SkipDuration: Integer
|
24906
|
-
# @param CirclesNumber:
|
24954
|
+
# @param CirclesNumber: 循环次数。取值范围:
|
24955
|
+
# - 最小值:0
|
24956
|
+
# - 最大值:1000
|
24957
|
+
|
24958
|
+
# 取值为 0 或为空时,表示循环至视频结束。
|
24907
24959
|
# @type CirclesNumber: Integer
|
24908
24960
|
|
24909
24961
|
attr_accessor :CheckDuration, :CheckInterval, :SkipDuration, :CirclesNumber
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1115
|
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-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|