tencentcloud-sdk-mps 3.0.1110 → 3.0.1112
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 +53 -9
- 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: 3d64568ee3bc54bef9c091e360c7182173e369e1
|
4
|
+
data.tar.gz: 3c6a1d93713e9060b78943377d4174717951c3d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 607237c3cf590a353ed478399bd058adb0e7a81d84d7c577246b4a88ccfdddac67a86bece71ac93ffdd6719744a491354b30352267bd5b17c17fac948de3a1b0
|
7
|
+
data.tar.gz: 0ef78aac728643bfc969c119d4863a4749a1c774cf74bbfa864854dfd45bea19dbac1fea115e5d9732c5967614b60ca870e2f80286fd0f2b95f3b4b7717b2529
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1112
|
data/lib/v20190612/models.rb
CHANGED
@@ -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
|
@@ -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: 帧率。
|
@@ -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
|
|
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.1112
|
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-07-
|
11
|
+
date: 2025-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|