tencentcloud-sdk-mps 3.0.535 → 3.0.536
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 +18 -6
- 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: 88424934d1eb5d81603722e6e30fd9db41f271f7
|
4
|
+
data.tar.gz: 0db01bd577fba4fff7804e0dba8299bccc630f3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 963477fd2e54bbd6c40e9f44cb67a875e4d6f2292ff32c8836c816f9da9191a092c148b7082b8495b8295a66c39086596dc380c447dbf5af42b3265df0d0d8ed
|
7
|
+
data.tar.gz: a257ccd04550a2eddeb642c79ded1ce67be62025f2e468466cec912c042f0a8a85c17dd8bb31e06709c473aa2ecd176ded89c2e7a5e03fe94f21c2a4f8cf36d2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.536
|
data/lib/v20190612/models.rb
CHANGED
@@ -4600,10 +4600,12 @@ module TencentCloud
|
|
4600
4600
|
# @param AllowIpList: IP白名单列表,格式为CIDR,如0.0.0.0/0。
|
4601
4601
|
# 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
|
4602
4602
|
# @type AllowIpList: Array
|
4603
|
+
# @param MaxConcurrent: 最大拉流并发数,最大4,默认4。
|
4604
|
+
# @type MaxConcurrent: Integer
|
4603
4605
|
|
4604
|
-
attr_accessor :OutputName, :Description, :Protocol, :OutputRegion, :SRTSettings, :RTMPSettings, :RTPSettings, :AllowIpList
|
4606
|
+
attr_accessor :OutputName, :Description, :Protocol, :OutputRegion, :SRTSettings, :RTMPSettings, :RTPSettings, :AllowIpList, :MaxConcurrent
|
4605
4607
|
|
4606
|
-
def initialize(outputname=nil, description=nil, protocol=nil, outputregion=nil, srtsettings=nil, rtmpsettings=nil, rtpsettings=nil, allowiplist=nil)
|
4608
|
+
def initialize(outputname=nil, description=nil, protocol=nil, outputregion=nil, srtsettings=nil, rtmpsettings=nil, rtpsettings=nil, allowiplist=nil, maxconcurrent=nil)
|
4607
4609
|
@OutputName = outputname
|
4608
4610
|
@Description = description
|
4609
4611
|
@Protocol = protocol
|
@@ -4612,6 +4614,7 @@ module TencentCloud
|
|
4612
4614
|
@RTMPSettings = rtmpsettings
|
4613
4615
|
@RTPSettings = rtpsettings
|
4614
4616
|
@AllowIpList = allowiplist
|
4617
|
+
@MaxConcurrent = maxconcurrent
|
4615
4618
|
end
|
4616
4619
|
|
4617
4620
|
def deserialize(params)
|
@@ -4632,6 +4635,7 @@ module TencentCloud
|
|
4632
4635
|
@RTPSettings.deserialize(params['RTPSettings'])
|
4633
4636
|
end
|
4634
4637
|
@AllowIpList = params['AllowIpList']
|
4638
|
+
@MaxConcurrent = params['MaxConcurrent']
|
4635
4639
|
end
|
4636
4640
|
end
|
4637
4641
|
|
@@ -6865,10 +6869,12 @@ module TencentCloud
|
|
6865
6869
|
# @param HLSPullSettings: 输出的HLS拉流配置信息。
|
6866
6870
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6867
6871
|
# @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputHLSPullSettings`
|
6872
|
+
# @param MaxConcurrent: 最大拉流并发数,最大为4,默认4。
|
6873
|
+
# @type MaxConcurrent: Integer
|
6868
6874
|
|
6869
|
-
attr_accessor :OutputId, :OutputName, :OutputType, :Description, :Protocol, :OutputAddressList, :OutputRegion, :SRTSettings, :RTPSettings, :RTMPSettings, :RTMPPullSettings, :AllowIpList, :RTSPPullSettings, :HLSPullSettings
|
6875
|
+
attr_accessor :OutputId, :OutputName, :OutputType, :Description, :Protocol, :OutputAddressList, :OutputRegion, :SRTSettings, :RTPSettings, :RTMPSettings, :RTMPPullSettings, :AllowIpList, :RTSPPullSettings, :HLSPullSettings, :MaxConcurrent
|
6870
6876
|
|
6871
|
-
def initialize(outputid=nil, outputname=nil, outputtype=nil, description=nil, protocol=nil, outputaddresslist=nil, outputregion=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, rtmppullsettings=nil, allowiplist=nil, rtsppullsettings=nil, hlspullsettings=nil)
|
6877
|
+
def initialize(outputid=nil, outputname=nil, outputtype=nil, description=nil, protocol=nil, outputaddresslist=nil, outputregion=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, rtmppullsettings=nil, allowiplist=nil, rtsppullsettings=nil, hlspullsettings=nil, maxconcurrent=nil)
|
6872
6878
|
@OutputId = outputid
|
6873
6879
|
@OutputName = outputname
|
6874
6880
|
@OutputType = outputtype
|
@@ -6883,6 +6889,7 @@ module TencentCloud
|
|
6883
6889
|
@AllowIpList = allowiplist
|
6884
6890
|
@RTSPPullSettings = rtsppullsettings
|
6885
6891
|
@HLSPullSettings = hlspullsettings
|
6892
|
+
@MaxConcurrent = maxconcurrent
|
6886
6893
|
end
|
6887
6894
|
|
6888
6895
|
def deserialize(params)
|
@@ -6925,6 +6932,7 @@ module TencentCloud
|
|
6925
6932
|
@HLSPullSettings = DescribeOutputHLSPullSettings.new
|
6926
6933
|
@HLSPullSettings.deserialize(params['HLSPullSettings'])
|
6927
6934
|
end
|
6935
|
+
@MaxConcurrent = params['MaxConcurrent']
|
6928
6936
|
end
|
6929
6937
|
end
|
6930
6938
|
|
@@ -12440,10 +12448,12 @@ module TencentCloud
|
|
12440
12448
|
# @param AllowIpList: IP白名单列表,格式为CIDR,如0.0.0.0/0。
|
12441
12449
|
# 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
|
12442
12450
|
# @type AllowIpList: Array
|
12451
|
+
# @param MaxConcurrent: 最大拉流并发数,最大4,默认4。
|
12452
|
+
# @type MaxConcurrent: Integer
|
12443
12453
|
|
12444
|
-
attr_accessor :OutputId, :OutputName, :Description, :Protocol, :SRTSettings, :RTPSettings, :RTMPSettings, :AllowIpList
|
12454
|
+
attr_accessor :OutputId, :OutputName, :Description, :Protocol, :SRTSettings, :RTPSettings, :RTMPSettings, :AllowIpList, :MaxConcurrent
|
12445
12455
|
|
12446
|
-
def initialize(outputid=nil, outputname=nil, description=nil, protocol=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, allowiplist=nil)
|
12456
|
+
def initialize(outputid=nil, outputname=nil, description=nil, protocol=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, allowiplist=nil, maxconcurrent=nil)
|
12447
12457
|
@OutputId = outputid
|
12448
12458
|
@OutputName = outputname
|
12449
12459
|
@Description = description
|
@@ -12452,6 +12462,7 @@ module TencentCloud
|
|
12452
12462
|
@RTPSettings = rtpsettings
|
12453
12463
|
@RTMPSettings = rtmpsettings
|
12454
12464
|
@AllowIpList = allowiplist
|
12465
|
+
@MaxConcurrent = maxconcurrent
|
12455
12466
|
end
|
12456
12467
|
|
12457
12468
|
def deserialize(params)
|
@@ -12472,6 +12483,7 @@ module TencentCloud
|
|
12472
12483
|
@RTMPSettings.deserialize(params['RTMPSettings'])
|
12473
12484
|
end
|
12474
12485
|
@AllowIpList = params['AllowIpList']
|
12486
|
+
@MaxConcurrent = params['MaxConcurrent']
|
12475
12487
|
end
|
12476
12488
|
end
|
12477
12489
|
|
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.536
|
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-03-
|
11
|
+
date: 2023-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|