tencentcloud-sdk-mps 3.0.535 → 3.0.537

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +18 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 784a0899ee9a78bb87aadb2d33902c17ad7d9217
4
- data.tar.gz: 131b5f7f2a2881969b91760a9418903bcbaa67e2
3
+ metadata.gz: f9ec5c60f32219cd36e6d046cb39b862c2e1bfc8
4
+ data.tar.gz: a60774eca9f7dd05f1a85707dabb48f90907b12d
5
5
  SHA512:
6
- metadata.gz: 0ae8c97587b2d4cc51c6c1ef9642e690b73e2acd6f5fcc711d18eeaa359540273f4cadb34daba4d5e87bc79ff7abe903df77bf7a40218d1b96ff7186f2ddac86
7
- data.tar.gz: 93c17c368f08661c47734cf163ed72b23cfdf756e799f6d3cdeccd1119a85a5e95037e7bce7bc857fccca72fa95ee5b0425d8297140795aad38d39a6e3caa63e
6
+ metadata.gz: 3b212c7dac5efcbfa85347433c6c17aa15ae523d11d206ece1a406c0c6925f6bcf042467cd33a8f3cce9525d93edac5286c4a1964df28d383521d3a7d2ce203e
7
+ data.tar.gz: c9138ac7fb5839e490f63f698362b62d69cdd069d093eac27ee644dc142ec28bef0dce93052c997e2f276381f03d5e89fbee571b603b2ba32582f63421a73123
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.535
1
+ 3.0.537
@@ -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.535
4
+ version: 3.0.537
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-22 00:00:00.000000000 Z
11
+ date: 2023-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common