tencentcloud-sdk-mps 3.0.1083 → 3.0.1085
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 +85 -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: b11a0a14b49ba33502517b712a6833dcc45fd34b
|
4
|
+
data.tar.gz: 58a0e555c30e055b349138138ae55666e6e1423e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e685b7058a343bf62901bda90fd45f59d4e62fd86dccb55b6889ff9ef7abc841186dd3d01819a0b7ad85327a82f85d832e74a7c12ea1f7641be2ede8e9371a5a
|
7
|
+
data.tar.gz: 918466ae2d7d19525e0aaa2b5f17b86a80a0e3479e7e6baf32f086a745313d319ea7c5086f8c4548ef8d943f0fff7bd7ba7589402eedbd75a8805ccae2eae571
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1085
|
data/lib/v20190612/models.rb
CHANGED
@@ -5248,7 +5248,7 @@ module TencentCloud
|
|
5248
5248
|
|
5249
5249
|
# 嵌入盲水印配置
|
5250
5250
|
class BlindWatermarkEmbedInfo < TencentCloud::Common::AbstractModel
|
5251
|
-
# @param EmbedText:
|
5251
|
+
# @param EmbedText: 盲水印文字,经过URL安全的Base64编码的4Byte数据。Base64解码之后,少于4Byte将会填充0x00到4Byte,超过4Byte将会截断为4Byte。
|
5252
5252
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5253
5253
|
# @type EmbedText: String
|
5254
5254
|
|
@@ -7214,10 +7214,12 @@ module TencentCloud
|
|
7214
7214
|
# @type PbKeyLen: Integer
|
7215
7215
|
# @param SourceAddresses: SRT对端地址,当Mode为CALLER时必填,且只能填1组。
|
7216
7216
|
# @type SourceAddresses: Array
|
7217
|
+
# @param FEC: SRT FEC 设置
|
7218
|
+
# @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECSimpleOptions`
|
7217
7219
|
|
7218
|
-
attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses
|
7220
|
+
attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses, :FEC
|
7219
7221
|
|
7220
|
-
def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil)
|
7222
|
+
def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil, fec=nil)
|
7221
7223
|
@Mode = mode
|
7222
7224
|
@StreamId = streamid
|
7223
7225
|
@Latency = latency
|
@@ -7227,6 +7229,7 @@ module TencentCloud
|
|
7227
7229
|
@Passphrase = passphrase
|
7228
7230
|
@PbKeyLen = pbkeylen
|
7229
7231
|
@SourceAddresses = sourceaddresses
|
7232
|
+
@FEC = fec
|
7230
7233
|
end
|
7231
7234
|
|
7232
7235
|
def deserialize(params)
|
@@ -7246,6 +7249,10 @@ module TencentCloud
|
|
7246
7249
|
@SourceAddresses << srtsourceaddressreq_tmp
|
7247
7250
|
end
|
7248
7251
|
end
|
7252
|
+
unless params['FEC'].nil?
|
7253
|
+
@FEC = SRTFECSimpleOptions.new
|
7254
|
+
@FEC.deserialize(params['FEC'])
|
7255
|
+
end
|
7249
7256
|
end
|
7250
7257
|
end
|
7251
7258
|
|
@@ -7533,10 +7540,12 @@ module TencentCloud
|
|
7533
7540
|
# @type PbKeyLen: Integer
|
7534
7541
|
# @param Mode: SRT模式,可选[LISTENER|CALLER],默认为CALLER。
|
7535
7542
|
# @type Mode: String
|
7543
|
+
# @param FEC: SRT FEC 设置
|
7544
|
+
# @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECFullOptions`
|
7536
7545
|
|
7537
|
-
attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode
|
7546
|
+
attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode, :FEC
|
7538
7547
|
|
7539
|
-
def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil)
|
7548
|
+
def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil, fec=nil)
|
7540
7549
|
@Destinations = destinations
|
7541
7550
|
@StreamId = streamid
|
7542
7551
|
@Latency = latency
|
@@ -7546,6 +7555,7 @@ module TencentCloud
|
|
7546
7555
|
@Passphrase = passphrase
|
7547
7556
|
@PbKeyLen = pbkeylen
|
7548
7557
|
@Mode = mode
|
7558
|
+
@FEC = fec
|
7549
7559
|
end
|
7550
7560
|
|
7551
7561
|
def deserialize(params)
|
@@ -7565,6 +7575,10 @@ module TencentCloud
|
|
7565
7575
|
@Passphrase = params['Passphrase']
|
7566
7576
|
@PbKeyLen = params['PbKeyLen']
|
7567
7577
|
@Mode = params['Mode']
|
7578
|
+
unless params['FEC'].nil?
|
7579
|
+
@FEC = SRTFECFullOptions.new
|
7580
|
+
@FEC.deserialize(params['FEC'])
|
7581
|
+
end
|
7568
7582
|
end
|
7569
7583
|
end
|
7570
7584
|
|
@@ -10705,10 +10719,12 @@ module TencentCloud
|
|
10705
10719
|
# @param SourceAddresses: SRT对端地址。
|
10706
10720
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10707
10721
|
# @type SourceAddresses: Array
|
10722
|
+
# @param FEC: FEC 设置
|
10723
|
+
# @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECSimpleOptions`
|
10708
10724
|
|
10709
|
-
attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses
|
10725
|
+
attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses, :FEC
|
10710
10726
|
|
10711
|
-
def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil)
|
10727
|
+
def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil, fec=nil)
|
10712
10728
|
@Mode = mode
|
10713
10729
|
@StreamId = streamid
|
10714
10730
|
@Latency = latency
|
@@ -10718,6 +10734,7 @@ module TencentCloud
|
|
10718
10734
|
@Passphrase = passphrase
|
10719
10735
|
@PbKeyLen = pbkeylen
|
10720
10736
|
@SourceAddresses = sourceaddresses
|
10737
|
+
@FEC = fec
|
10721
10738
|
end
|
10722
10739
|
|
10723
10740
|
def deserialize(params)
|
@@ -10737,6 +10754,10 @@ module TencentCloud
|
|
10737
10754
|
@SourceAddresses << srtsourceaddressresp_tmp
|
10738
10755
|
end
|
10739
10756
|
end
|
10757
|
+
unless params['FEC'].nil?
|
10758
|
+
@FEC = SRTFECSimpleOptions.new
|
10759
|
+
@FEC.deserialize(params['FEC'])
|
10760
|
+
end
|
10740
10761
|
end
|
10741
10762
|
end
|
10742
10763
|
|
@@ -11253,10 +11274,12 @@ module TencentCloud
|
|
11253
11274
|
# @param SourceAddresses: 服务器监听地址,SRT模式为LISTENER时使用。
|
11254
11275
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11255
11276
|
# @type SourceAddresses: Array
|
11277
|
+
# @param FEC: FEC 配置
|
11278
|
+
# @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECFullOptions`
|
11256
11279
|
|
11257
|
-
attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode, :SourceAddresses
|
11280
|
+
attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode, :SourceAddresses, :FEC
|
11258
11281
|
|
11259
|
-
def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil, sourceaddresses=nil)
|
11282
|
+
def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil, sourceaddresses=nil, fec=nil)
|
11260
11283
|
@Destinations = destinations
|
11261
11284
|
@StreamId = streamid
|
11262
11285
|
@Latency = latency
|
@@ -11267,6 +11290,7 @@ module TencentCloud
|
|
11267
11290
|
@PbKeyLen = pbkeylen
|
11268
11291
|
@Mode = mode
|
11269
11292
|
@SourceAddresses = sourceaddresses
|
11293
|
+
@FEC = fec
|
11270
11294
|
end
|
11271
11295
|
|
11272
11296
|
def deserialize(params)
|
@@ -11294,6 +11318,10 @@ module TencentCloud
|
|
11294
11318
|
@SourceAddresses << outputsrtsourceaddressresp_tmp
|
11295
11319
|
end
|
11296
11320
|
end
|
11321
|
+
unless params['FEC'].nil?
|
11322
|
+
@FEC = SRTFECFullOptions.new
|
11323
|
+
@FEC.deserialize(params['FEC'])
|
11324
|
+
end
|
11297
11325
|
end
|
11298
11326
|
end
|
11299
11327
|
|
@@ -22017,6 +22045,54 @@ module TencentCloud
|
|
22017
22045
|
end
|
22018
22046
|
end
|
22019
22047
|
|
22048
|
+
# SRT FEC 高级配置
|
22049
|
+
class SRTFECFullOptions < TencentCloud::Common::AbstractModel
|
22050
|
+
# @param Enable: 是否开启 FEC
|
22051
|
+
# @type Enable: Boolean
|
22052
|
+
# @param Cols: FEC 数据包 Layout 列数量. 取值范围>0
|
22053
|
+
# @type Cols: Integer
|
22054
|
+
# @param Rows: FEC 数据包 Layout 行数量. 取值范围 >=2 或者 <=-2
|
22055
|
+
# @type Rows: Integer
|
22056
|
+
# @param ARQ: FEC 开启的情况下,ARQ的策略。取值 "always", "onreq", "never"
|
22057
|
+
# @type ARQ: String
|
22058
|
+
# @param Layout: FEC 数据包 Layout 组织形式,取值 "even", "staircase"
|
22059
|
+
# @type Layout: String
|
22060
|
+
|
22061
|
+
attr_accessor :Enable, :Cols, :Rows, :ARQ, :Layout
|
22062
|
+
|
22063
|
+
def initialize(enable=nil, cols=nil, rows=nil, arq=nil, layout=nil)
|
22064
|
+
@Enable = enable
|
22065
|
+
@Cols = cols
|
22066
|
+
@Rows = rows
|
22067
|
+
@ARQ = arq
|
22068
|
+
@Layout = layout
|
22069
|
+
end
|
22070
|
+
|
22071
|
+
def deserialize(params)
|
22072
|
+
@Enable = params['Enable']
|
22073
|
+
@Cols = params['Cols']
|
22074
|
+
@Rows = params['Rows']
|
22075
|
+
@ARQ = params['ARQ']
|
22076
|
+
@Layout = params['Layout']
|
22077
|
+
end
|
22078
|
+
end
|
22079
|
+
|
22080
|
+
# SRT FEC 设置
|
22081
|
+
class SRTFECSimpleOptions < TencentCloud::Common::AbstractModel
|
22082
|
+
# @param Enable: 是否开启 FEC
|
22083
|
+
# @type Enable: Boolean
|
22084
|
+
|
22085
|
+
attr_accessor :Enable
|
22086
|
+
|
22087
|
+
def initialize(enable=nil)
|
22088
|
+
@Enable = enable
|
22089
|
+
end
|
22090
|
+
|
22091
|
+
def deserialize(params)
|
22092
|
+
@Enable = params['Enable']
|
22093
|
+
end
|
22094
|
+
end
|
22095
|
+
|
22020
22096
|
# SRT输入源地址。
|
22021
22097
|
class SRTSourceAddressReq < TencentCloud::Common::AbstractModel
|
22022
22098
|
# @param Ip: 对端IP或域名。
|
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.1085
|
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-06-
|
11
|
+
date: 2025-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|