tencentcloud-sdk-mps 3.0.944 → 3.0.945
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 +202 -16
- 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: f19e6bdf9c40e7525e29f99485b7ae8ee76e43df
|
4
|
+
data.tar.gz: 31fddf280e17e783cf2461674694c86522839b51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab566cbe953124c7fd89e6893742d8f915dd8fa3e24a203e0cf7fd0da4fa8cb127a581d776a3dab1e72e374fbdf247395427c089e26809ad9e07f8192037e726
|
7
|
+
data.tar.gz: 3fc8d60dcc0a09eefb387aa873a909a674bb2c96d9a5ec8207f9920c781151a4facb5b5a43fc883c66c904faef5bc16c06c0435b6825d915b106feb6ccdee7e8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.945
|
data/lib/v20190612/models.rb
CHANGED
@@ -6456,7 +6456,7 @@ module TencentCloud
|
|
6456
6456
|
class CreateInput < TencentCloud::Common::AbstractModel
|
6457
6457
|
# @param InputName: 输入名称,可填大小写、数字和下划线,长度为[1, 32]。
|
6458
6458
|
# @type InputName: String
|
6459
|
-
# @param Protocol: 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL]。
|
6459
|
+
# @param Protocol: 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
|
6460
6460
|
# @type Protocol: String
|
6461
6461
|
# @param Description: 输入描述,长度为[0, 255]。
|
6462
6462
|
# @type Description: String
|
@@ -6480,10 +6480,14 @@ module TencentCloud
|
|
6480
6480
|
# @type SecurityGroupIds: Array
|
6481
6481
|
# @param Zones: 可用区,非必填,如果开启容灾必须输入两个不同的可用区,否则最多只允许输入一个可用区。
|
6482
6482
|
# @type Zones: Array
|
6483
|
+
# @param RISTSettings: 输入的RIST配置信息。
|
6484
|
+
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRISTSettings`
|
6485
|
+
# @param InputRegion: 输入节点的地区
|
6486
|
+
# @type InputRegion: String
|
6483
6487
|
|
6484
|
-
attr_accessor :InputName, :Protocol, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones
|
6488
|
+
attr_accessor :InputName, :Protocol, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones, :RISTSettings, :InputRegion
|
6485
6489
|
|
6486
|
-
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)
|
6490
|
+
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)
|
6487
6491
|
@InputName = inputname
|
6488
6492
|
@Protocol = protocol
|
6489
6493
|
@Description = description
|
@@ -6497,6 +6501,8 @@ module TencentCloud
|
|
6497
6501
|
@ResilientStream = resilientstream
|
6498
6502
|
@SecurityGroupIds = securitygroupids
|
6499
6503
|
@Zones = zones
|
6504
|
+
@RISTSettings = ristsettings
|
6505
|
+
@InputRegion = inputregion
|
6500
6506
|
end
|
6501
6507
|
|
6502
6508
|
def deserialize(params)
|
@@ -6531,6 +6537,11 @@ module TencentCloud
|
|
6531
6537
|
end
|
6532
6538
|
@SecurityGroupIds = params['SecurityGroupIds']
|
6533
6539
|
@Zones = params['Zones']
|
6540
|
+
unless params['RISTSettings'].nil?
|
6541
|
+
@RISTSettings = CreateInputRISTSettings.new
|
6542
|
+
@RISTSettings.deserialize(params['RISTSettings'])
|
6543
|
+
end
|
6544
|
+
@InputRegion = params['InputRegion']
|
6534
6545
|
end
|
6535
6546
|
end
|
6536
6547
|
|
@@ -6557,6 +6568,30 @@ module TencentCloud
|
|
6557
6568
|
end
|
6558
6569
|
end
|
6559
6570
|
|
6571
|
+
# 创建的输入RIST的配置信息。
|
6572
|
+
class CreateInputRISTSettings < TencentCloud::Common::AbstractModel
|
6573
|
+
# @param Mode: RIST模式,可选[LISTENER],默认为LISTENER。
|
6574
|
+
# @type Mode: String
|
6575
|
+
# @param Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
6576
|
+
# @type Profile: String
|
6577
|
+
# @param Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
6578
|
+
# @type Buffer: Integer
|
6579
|
+
|
6580
|
+
attr_accessor :Mode, :Profile, :Buffer
|
6581
|
+
|
6582
|
+
def initialize(mode=nil, profile=nil, buffer=nil)
|
6583
|
+
@Mode = mode
|
6584
|
+
@Profile = profile
|
6585
|
+
@Buffer = buffer
|
6586
|
+
end
|
6587
|
+
|
6588
|
+
def deserialize(params)
|
6589
|
+
@Mode = params['Mode']
|
6590
|
+
@Profile = params['Profile']
|
6591
|
+
@Buffer = params['Buffer']
|
6592
|
+
end
|
6593
|
+
end
|
6594
|
+
|
6560
6595
|
# 创建的输入RTMP拉流的配置信息。
|
6561
6596
|
class CreateInputRTMPPullSettings < TencentCloud::Common::AbstractModel
|
6562
6597
|
# @param SourceAddresses: RTMP源站的源站地址,有且只能有一个。
|
@@ -6684,7 +6719,7 @@ module TencentCloud
|
|
6684
6719
|
# @type OutputName: String
|
6685
6720
|
# @param Description: 输出描述。
|
6686
6721
|
# @type Description: String
|
6687
|
-
# @param Protocol:
|
6722
|
+
# @param Protocol: 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP|RIST。
|
6688
6723
|
# @type Protocol: String
|
6689
6724
|
# @param OutputRegion: 输出地区。
|
6690
6725
|
# @type OutputRegion: String
|
@@ -6703,10 +6738,14 @@ module TencentCloud
|
|
6703
6738
|
# @type SecurityGroupIds: Array
|
6704
6739
|
# @param Zones: 可用区,output最多只支持输入一个可用区。
|
6705
6740
|
# @type Zones: Array
|
6741
|
+
# @param OutputType: 输出类型:Internet/TencentCSS/StreamLive
|
6742
|
+
# @type OutputType: String
|
6743
|
+
# @param RISTSettings: 输出的RIST的配置。
|
6744
|
+
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputRistSettings`
|
6706
6745
|
|
6707
|
-
attr_accessor :OutputName, :Description, :Protocol, :OutputRegion, :SRTSettings, :RTMPSettings, :RTPSettings, :AllowIpList, :MaxConcurrent, :SecurityGroupIds, :Zones
|
6746
|
+
attr_accessor :OutputName, :Description, :Protocol, :OutputRegion, :SRTSettings, :RTMPSettings, :RTPSettings, :AllowIpList, :MaxConcurrent, :SecurityGroupIds, :Zones, :OutputType, :RISTSettings
|
6708
6747
|
|
6709
|
-
def initialize(outputname=nil, description=nil, protocol=nil, outputregion=nil, srtsettings=nil, rtmpsettings=nil, rtpsettings=nil, allowiplist=nil, maxconcurrent=nil, securitygroupids=nil, zones=nil)
|
6748
|
+
def initialize(outputname=nil, description=nil, protocol=nil, outputregion=nil, srtsettings=nil, rtmpsettings=nil, rtpsettings=nil, allowiplist=nil, maxconcurrent=nil, securitygroupids=nil, zones=nil, outputtype=nil, ristsettings=nil)
|
6710
6749
|
@OutputName = outputname
|
6711
6750
|
@Description = description
|
6712
6751
|
@Protocol = protocol
|
@@ -6718,6 +6757,8 @@ module TencentCloud
|
|
6718
6757
|
@MaxConcurrent = maxconcurrent
|
6719
6758
|
@SecurityGroupIds = securitygroupids
|
6720
6759
|
@Zones = zones
|
6760
|
+
@OutputType = outputtype
|
6761
|
+
@RISTSettings = ristsettings
|
6721
6762
|
end
|
6722
6763
|
|
6723
6764
|
def deserialize(params)
|
@@ -6741,6 +6782,11 @@ module TencentCloud
|
|
6741
6782
|
@MaxConcurrent = params['MaxConcurrent']
|
6742
6783
|
@SecurityGroupIds = params['SecurityGroupIds']
|
6743
6784
|
@Zones = params['Zones']
|
6785
|
+
@OutputType = params['OutputType']
|
6786
|
+
unless params['RISTSettings'].nil?
|
6787
|
+
@RISTSettings = CreateOutputRistSettings.new
|
6788
|
+
@RISTSettings.deserialize(params['RISTSettings'])
|
6789
|
+
end
|
6744
6790
|
end
|
6745
6791
|
end
|
6746
6792
|
|
@@ -6822,6 +6868,30 @@ module TencentCloud
|
|
6822
6868
|
end
|
6823
6869
|
end
|
6824
6870
|
|
6871
|
+
# 创建媒体传输流的输出的RIST配置。
|
6872
|
+
class CreateOutputRistSettings < TencentCloud::Common::AbstractModel
|
6873
|
+
# @param Mode: RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
6874
|
+
# @type Mode: String
|
6875
|
+
# @param Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
6876
|
+
# @type Profile: String
|
6877
|
+
# @param Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
6878
|
+
# @type Buffer: Integer
|
6879
|
+
|
6880
|
+
attr_accessor :Mode, :Profile, :Buffer
|
6881
|
+
|
6882
|
+
def initialize(mode=nil, profile=nil, buffer=nil)
|
6883
|
+
@Mode = mode
|
6884
|
+
@Profile = profile
|
6885
|
+
@Buffer = buffer
|
6886
|
+
end
|
6887
|
+
|
6888
|
+
def deserialize(params)
|
6889
|
+
@Mode = params['Mode']
|
6890
|
+
@Profile = params['Profile']
|
6891
|
+
@Buffer = params['Buffer']
|
6892
|
+
end
|
6893
|
+
end
|
6894
|
+
|
6825
6895
|
# 创建媒体传输流的输出的RTMP的目标地址。
|
6826
6896
|
class CreateOutputRtmpSettingsDestinations < TencentCloud::Common::AbstractModel
|
6827
6897
|
# @param Url: 转推的URL,格式如:rtmp://domain/live。
|
@@ -9067,10 +9137,13 @@ module TencentCloud
|
|
9067
9137
|
# @type SecurityGroupIds: Array
|
9068
9138
|
# @param Zones: 可用区配置,开启容灾情况下最多有两个,顺序和pipeline 0、1对应,否则最多只有一个可用区。
|
9069
9139
|
# @type Zones: Array
|
9140
|
+
# @param RISTSettings: 输入的RIST配置信息。
|
9141
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9142
|
+
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputRISTSettings`
|
9070
9143
|
|
9071
|
-
attr_accessor :InputId, :InputName, :Description, :Protocol, :InputAddressList, :AllowIpList, :SRTSettings, :RTPSettings, :InputRegion, :RTMPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones
|
9144
|
+
attr_accessor :InputId, :InputName, :Description, :Protocol, :InputAddressList, :AllowIpList, :SRTSettings, :RTPSettings, :InputRegion, :RTMPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones, :RISTSettings
|
9072
9145
|
|
9073
|
-
def initialize(inputid=nil, inputname=nil, description=nil, protocol=nil, inputaddresslist=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, inputregion=nil, rtmpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil, securitygroupids=nil, zones=nil)
|
9146
|
+
def initialize(inputid=nil, inputname=nil, description=nil, protocol=nil, inputaddresslist=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, inputregion=nil, rtmpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil, resilientstream=nil, securitygroupids=nil, zones=nil, ristsettings=nil)
|
9074
9147
|
@InputId = inputid
|
9075
9148
|
@InputName = inputname
|
9076
9149
|
@Description = description
|
@@ -9088,6 +9161,7 @@ module TencentCloud
|
|
9088
9161
|
@ResilientStream = resilientstream
|
9089
9162
|
@SecurityGroupIds = securitygroupids
|
9090
9163
|
@Zones = zones
|
9164
|
+
@RISTSettings = ristsettings
|
9091
9165
|
end
|
9092
9166
|
|
9093
9167
|
def deserialize(params)
|
@@ -9136,6 +9210,10 @@ module TencentCloud
|
|
9136
9210
|
end
|
9137
9211
|
@SecurityGroupIds = params['SecurityGroupIds']
|
9138
9212
|
@Zones = params['Zones']
|
9213
|
+
unless params['RISTSettings'].nil?
|
9214
|
+
@RISTSettings = DescribeInputRISTSettings.new
|
9215
|
+
@RISTSettings.deserialize(params['RISTSettings'])
|
9216
|
+
end
|
9139
9217
|
end
|
9140
9218
|
end
|
9141
9219
|
|
@@ -9162,6 +9240,30 @@ module TencentCloud
|
|
9162
9240
|
end
|
9163
9241
|
end
|
9164
9242
|
|
9243
|
+
# 查询输入的RIST配置信息。
|
9244
|
+
class DescribeInputRISTSettings < TencentCloud::Common::AbstractModel
|
9245
|
+
# @param Mode: RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
9246
|
+
# @type Mode: String
|
9247
|
+
# @param Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
9248
|
+
# @type Profile: String
|
9249
|
+
# @param Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
9250
|
+
# @type Buffer: Integer
|
9251
|
+
|
9252
|
+
attr_accessor :Mode, :Profile, :Buffer
|
9253
|
+
|
9254
|
+
def initialize(mode=nil, profile=nil, buffer=nil)
|
9255
|
+
@Mode = mode
|
9256
|
+
@Profile = profile
|
9257
|
+
@Buffer = buffer
|
9258
|
+
end
|
9259
|
+
|
9260
|
+
def deserialize(params)
|
9261
|
+
@Mode = params['Mode']
|
9262
|
+
@Profile = params['Profile']
|
9263
|
+
@Buffer = params['Buffer']
|
9264
|
+
end
|
9265
|
+
end
|
9266
|
+
|
9165
9267
|
# 查询输入的RTMP配置信息。
|
9166
9268
|
class DescribeInputRTMPPullSettings < TencentCloud::Common::AbstractModel
|
9167
9269
|
# @param SourceAddresses: RTMP源站地址信息。
|
@@ -9396,10 +9498,13 @@ module TencentCloud
|
|
9396
9498
|
# @type SecurityGroupIds: Array
|
9397
9499
|
# @param Zones: 可用区,output目前最多只支持一个。
|
9398
9500
|
# @type Zones: Array
|
9501
|
+
# @param RISTSettings: 输出的RIST配置信息。
|
9502
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9503
|
+
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputRISTSettings`
|
9399
9504
|
|
9400
|
-
attr_accessor :OutputId, :OutputName, :OutputType, :Description, :Protocol, :OutputAddressList, :OutputRegion, :SRTSettings, :RTPSettings, :RTMPSettings, :RTMPPullSettings, :AllowIpList, :RTSPPullSettings, :HLSPullSettings, :MaxConcurrent, :SecurityGroupIds, :Zones
|
9505
|
+
attr_accessor :OutputId, :OutputName, :OutputType, :Description, :Protocol, :OutputAddressList, :OutputRegion, :SRTSettings, :RTPSettings, :RTMPSettings, :RTMPPullSettings, :AllowIpList, :RTSPPullSettings, :HLSPullSettings, :MaxConcurrent, :SecurityGroupIds, :Zones, :RISTSettings
|
9401
9506
|
|
9402
|
-
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, securitygroupids=nil, zones=nil)
|
9507
|
+
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, securitygroupids=nil, zones=nil, ristsettings=nil)
|
9403
9508
|
@OutputId = outputid
|
9404
9509
|
@OutputName = outputname
|
9405
9510
|
@OutputType = outputtype
|
@@ -9417,6 +9522,7 @@ module TencentCloud
|
|
9417
9522
|
@MaxConcurrent = maxconcurrent
|
9418
9523
|
@SecurityGroupIds = securitygroupids
|
9419
9524
|
@Zones = zones
|
9525
|
+
@RISTSettings = ristsettings
|
9420
9526
|
end
|
9421
9527
|
|
9422
9528
|
def deserialize(params)
|
@@ -9462,6 +9568,10 @@ module TencentCloud
|
|
9462
9568
|
@MaxConcurrent = params['MaxConcurrent']
|
9463
9569
|
@SecurityGroupIds = params['SecurityGroupIds']
|
9464
9570
|
@Zones = params['Zones']
|
9571
|
+
unless params['RISTSettings'].nil?
|
9572
|
+
@RISTSettings = DescribeOutputRISTSettings.new
|
9573
|
+
@RISTSettings.deserialize(params['RISTSettings'])
|
9574
|
+
end
|
9465
9575
|
end
|
9466
9576
|
end
|
9467
9577
|
|
@@ -9505,6 +9615,42 @@ module TencentCloud
|
|
9505
9615
|
end
|
9506
9616
|
end
|
9507
9617
|
|
9618
|
+
# 查询输出的RIST拉流配置信息。
|
9619
|
+
class DescribeOutputRISTSettings < TencentCloud::Common::AbstractModel
|
9620
|
+
# @param Mode: RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
9621
|
+
# @type Mode: String
|
9622
|
+
# @param Profile: RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
9623
|
+
# @type Profile: String
|
9624
|
+
# @param Buffer: RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
9625
|
+
# @type Buffer: Integer
|
9626
|
+
# @param SourceAddresses: 服务器监听地址,RIST模式为LISTENER时使用。
|
9627
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9628
|
+
# @type SourceAddresses: Array
|
9629
|
+
|
9630
|
+
attr_accessor :Mode, :Profile, :Buffer, :SourceAddresses
|
9631
|
+
|
9632
|
+
def initialize(mode=nil, profile=nil, buffer=nil, sourceaddresses=nil)
|
9633
|
+
@Mode = mode
|
9634
|
+
@Profile = profile
|
9635
|
+
@Buffer = buffer
|
9636
|
+
@SourceAddresses = sourceaddresses
|
9637
|
+
end
|
9638
|
+
|
9639
|
+
def deserialize(params)
|
9640
|
+
@Mode = params['Mode']
|
9641
|
+
@Profile = params['Profile']
|
9642
|
+
@Buffer = params['Buffer']
|
9643
|
+
unless params['SourceAddresses'].nil?
|
9644
|
+
@SourceAddresses = []
|
9645
|
+
params['SourceAddresses'].each do |i|
|
9646
|
+
outputristsourceaddressresp_tmp = OutputRISTSourceAddressResp.new
|
9647
|
+
outputristsourceaddressresp_tmp.deserialize(i)
|
9648
|
+
@SourceAddresses << outputristsourceaddressresp_tmp
|
9649
|
+
end
|
9650
|
+
end
|
9651
|
+
end
|
9652
|
+
end
|
9653
|
+
|
9508
9654
|
# 查询输出的RTMP拉流URL信息。
|
9509
9655
|
class DescribeOutputRTMPPullServerUrl < TencentCloud::Common::AbstractModel
|
9510
9656
|
# @param TcUrl: RTMP拉流地址的tcUrl。
|
@@ -16162,7 +16308,7 @@ module TencentCloud
|
|
16162
16308
|
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputSRTSettings`
|
16163
16309
|
# @param RTPSettings: RTP的配置信息。
|
16164
16310
|
# @type RTPSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTPSettings`
|
16165
|
-
# @param Protocol: 输入的协议,可选[SRT|RTP|RTMP]。
|
16311
|
+
# @param Protocol: 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
|
16166
16312
|
# 当输出包含RTP时,输入只能是RTP。
|
16167
16313
|
# 当输出包含RTMP时,输入可以是SRT/RTMP。
|
16168
16314
|
# 当输出包含SRT时,输入只能是SRT。
|
@@ -16181,10 +16327,14 @@ module TencentCloud
|
|
16181
16327
|
# @type SecurityGroupIds: Array
|
16182
16328
|
# @param Zones: 可用区,非必填,最多支持输入两个可用区,对于需改接口,只要第二个可用区会参与到资源分配。如果input开启容灾或者涉及RTSP_PULL协议切换时有效(会重新分配地址)。
|
16183
16329
|
# @type Zones: Array
|
16330
|
+
# @param RISTSettings: RIST的配置信息。
|
16331
|
+
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRISTSettings`
|
16332
|
+
# @param InputRegion: 输入节点的地区
|
16333
|
+
# @type InputRegion: String
|
16184
16334
|
|
16185
|
-
attr_accessor :InputId, :InputName, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :Protocol, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones
|
16335
|
+
attr_accessor :InputId, :InputName, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :Protocol, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings, :ResilientStream, :SecurityGroupIds, :Zones, :RISTSettings, :InputRegion
|
16186
16336
|
|
16187
|
-
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)
|
16337
|
+
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)
|
16188
16338
|
@InputId = inputid
|
16189
16339
|
@InputName = inputname
|
16190
16340
|
@Description = description
|
@@ -16199,6 +16349,8 @@ module TencentCloud
|
|
16199
16349
|
@ResilientStream = resilientstream
|
16200
16350
|
@SecurityGroupIds = securitygroupids
|
16201
16351
|
@Zones = zones
|
16352
|
+
@RISTSettings = ristsettings
|
16353
|
+
@InputRegion = inputregion
|
16202
16354
|
end
|
16203
16355
|
|
16204
16356
|
def deserialize(params)
|
@@ -16234,6 +16386,11 @@ module TencentCloud
|
|
16234
16386
|
end
|
16235
16387
|
@SecurityGroupIds = params['SecurityGroupIds']
|
16236
16388
|
@Zones = params['Zones']
|
16389
|
+
unless params['RISTSettings'].nil?
|
16390
|
+
@RISTSettings = CreateInputRISTSettings.new
|
16391
|
+
@RISTSettings.deserialize(params['RISTSettings'])
|
16392
|
+
end
|
16393
|
+
@InputRegion = params['InputRegion']
|
16237
16394
|
end
|
16238
16395
|
end
|
16239
16396
|
|
@@ -16245,7 +16402,7 @@ module TencentCloud
|
|
16245
16402
|
# @type OutputName: String
|
16246
16403
|
# @param Description: 输出的描述。
|
16247
16404
|
# @type Description: String
|
16248
|
-
# @param Protocol: 输出的转推协议,支持SRT|RTP|RTMP。
|
16405
|
+
# @param Protocol: 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP|RIST。
|
16249
16406
|
# @type Protocol: String
|
16250
16407
|
# @param SRTSettings: 转推SRT的配置。
|
16251
16408
|
# @type SRTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputSRTSettings`
|
@@ -16262,10 +16419,12 @@ module TencentCloud
|
|
16262
16419
|
# @type SecurityGroupIds: Array
|
16263
16420
|
# @param Zones: 可用区
|
16264
16421
|
# @type Zones: Array
|
16422
|
+
# @param RISTSettings: 转推RIST的配置。
|
16423
|
+
# @type RISTSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateOutputRistSettings`
|
16265
16424
|
|
16266
|
-
attr_accessor :OutputId, :OutputName, :Description, :Protocol, :SRTSettings, :RTPSettings, :RTMPSettings, :AllowIpList, :MaxConcurrent, :SecurityGroupIds, :Zones
|
16425
|
+
attr_accessor :OutputId, :OutputName, :Description, :Protocol, :SRTSettings, :RTPSettings, :RTMPSettings, :AllowIpList, :MaxConcurrent, :SecurityGroupIds, :Zones, :RISTSettings
|
16267
16426
|
|
16268
|
-
def initialize(outputid=nil, outputname=nil, description=nil, protocol=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, allowiplist=nil, maxconcurrent=nil, securitygroupids=nil, zones=nil)
|
16427
|
+
def initialize(outputid=nil, outputname=nil, description=nil, protocol=nil, srtsettings=nil, rtpsettings=nil, rtmpsettings=nil, allowiplist=nil, maxconcurrent=nil, securitygroupids=nil, zones=nil, ristsettings=nil)
|
16269
16428
|
@OutputId = outputid
|
16270
16429
|
@OutputName = outputname
|
16271
16430
|
@Description = description
|
@@ -16277,6 +16436,7 @@ module TencentCloud
|
|
16277
16436
|
@MaxConcurrent = maxconcurrent
|
16278
16437
|
@SecurityGroupIds = securitygroupids
|
16279
16438
|
@Zones = zones
|
16439
|
+
@RISTSettings = ristsettings
|
16280
16440
|
end
|
16281
16441
|
|
16282
16442
|
def deserialize(params)
|
@@ -16300,6 +16460,10 @@ module TencentCloud
|
|
16300
16460
|
@MaxConcurrent = params['MaxConcurrent']
|
16301
16461
|
@SecurityGroupIds = params['SecurityGroupIds']
|
16302
16462
|
@Zones = params['Zones']
|
16463
|
+
unless params['RISTSettings'].nil?
|
16464
|
+
@RISTSettings = CreateOutputRistSettings.new
|
16465
|
+
@RISTSettings.deserialize(params['RISTSettings'])
|
16466
|
+
end
|
16303
16467
|
end
|
16304
16468
|
end
|
16305
16469
|
|
@@ -17254,6 +17418,28 @@ module TencentCloud
|
|
17254
17418
|
end
|
17255
17419
|
end
|
17256
17420
|
|
17421
|
+
# RIST输出的监听地址。
|
17422
|
+
class OutputRISTSourceAddressResp < TencentCloud::Common::AbstractModel
|
17423
|
+
# @param Ip: 监听IP。
|
17424
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17425
|
+
# @type Ip: String
|
17426
|
+
# @param Port: 监听端口。
|
17427
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17428
|
+
# @type Port: Integer
|
17429
|
+
|
17430
|
+
attr_accessor :Ip, :Port
|
17431
|
+
|
17432
|
+
def initialize(ip=nil, port=nil)
|
17433
|
+
@Ip = ip
|
17434
|
+
@Port = port
|
17435
|
+
end
|
17436
|
+
|
17437
|
+
def deserialize(params)
|
17438
|
+
@Ip = params['Ip']
|
17439
|
+
@Port = params['Port']
|
17440
|
+
end
|
17441
|
+
end
|
17442
|
+
|
17257
17443
|
# SRT输出的监听地址。
|
17258
17444
|
class OutputSRTSourceAddressResp < TencentCloud::Common::AbstractModel
|
17259
17445
|
# @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.945
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|