tencentcloud-sdk-mps 3.0.453 → 3.0.454

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 +157 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 762d08fe034c943254e49757f54df5070ff52eb3
4
- data.tar.gz: c12ad51a1f60c22de17a297effba4048e0334d6a
3
+ metadata.gz: f538e02edc2e3b6d0da5aad6cc740ca4a95e88ff
4
+ data.tar.gz: 8ac453f175147be7915312eba6e8f510363b12fb
5
5
  SHA512:
6
- metadata.gz: 4824337731c0f3864f43c4c0a5c7490d040ba685e568317461a4dded458d5d30ff53f1e9ff708196fdc706cf67ccaff76a02f3e5a402913ac30e63ed680ad056
7
- data.tar.gz: b5b5b43381006d531f8349771d293d2184e8ff40461c7981f5c7d1710cf5e6d7721a75299997c84712aa49d69c17ccb40ac580d08082795cbf2572dcf9ad0221
6
+ metadata.gz: 16ea5efb940c8ca8ab0fa1bd05fe8e24f2bab52ea96b9339674791a07575f1f1a6ed7f88822b2e1852f6523a52b63f6557a21c306628afa191250cc8f9749eba
7
+ data.tar.gz: c418a009f69ac54eee679daf58d7a0f51dd3bab40bf13beecd8e2c0f61ba91b855c7e942adee900b5061638cc730af165390b2c9054329aac364421468e8db93
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.453
1
+ 3.0.454
@@ -4189,10 +4189,12 @@ module TencentCloud
4189
4189
  # @type RTMPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTMPPullSettings`
4190
4190
  # @param RTSPPullSettings: 输入的RTSP_PULL配置信息。
4191
4191
  # @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTSPPullSettings`
4192
+ # @param HLSPullSettings: 输入的HLS_PULL配置信息。
4193
+ # @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputHLSPullSettings`
4192
4194
 
4193
- attr_accessor :InputName, :Protocol, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings
4195
+ attr_accessor :InputName, :Protocol, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings
4194
4196
 
4195
- def initialize(inputname=nil, protocol=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil)
4197
+ def initialize(inputname=nil, protocol=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil)
4196
4198
  @InputName = inputname
4197
4199
  @Protocol = protocol
4198
4200
  @Description = description
@@ -4202,6 +4204,7 @@ module TencentCloud
4202
4204
  @FailOver = failover
4203
4205
  @RTMPPullSettings = rtmppullsettings
4204
4206
  @RTSPPullSettings = rtsppullsettings
4207
+ @HLSPullSettings = hlspullsettings
4205
4208
  end
4206
4209
 
4207
4210
  def deserialize(params)
@@ -4226,6 +4229,33 @@ module TencentCloud
4226
4229
  @RTSPPullSettings = CreateInputRTSPPullSettings.new
4227
4230
  @RTSPPullSettings.deserialize(params['RTSPPullSettings'])
4228
4231
  end
4232
+ unless params['HLSPullSettings'].nil?
4233
+ @HLSPullSettings = CreateInputHLSPullSettings.new
4234
+ @HLSPullSettings.deserialize(params['HLSPullSettings'])
4235
+ end
4236
+ end
4237
+ end
4238
+
4239
+ # 创建的输入HLS拉流的配置信息。
4240
+ class CreateInputHLSPullSettings < TencentCloud::Common::AbstractModel
4241
+ # @param SourceAddresses: HLS源站的源站地址,有且只能有一个。
4242
+ # @type SourceAddresses: Array
4243
+
4244
+ attr_accessor :SourceAddresses
4245
+
4246
+ def initialize(sourceaddresses=nil)
4247
+ @SourceAddresses = sourceaddresses
4248
+ end
4249
+
4250
+ def deserialize(params)
4251
+ unless params['SourceAddresses'].nil?
4252
+ @SourceAddresses = []
4253
+ params['SourceAddresses'].each do |i|
4254
+ hlspullsourceaddress_tmp = HLSPullSourceAddress.new
4255
+ hlspullsourceaddress_tmp.deserialize(i)
4256
+ @SourceAddresses << hlspullsourceaddress_tmp
4257
+ end
4258
+ end
4229
4259
  end
4230
4260
  end
4231
4261
 
@@ -6082,6 +6112,23 @@ module TencentCloud
6082
6112
  end
6083
6113
  end
6084
6114
 
6115
+ # 查询输入的HLS配置信息。
6116
+ class DescribeHLSPullSourceAddress < TencentCloud::Common::AbstractModel
6117
+ # @param Url: HLS源站的Url地址。
6118
+ # 注意:此字段可能返回 null,表示取不到有效值。
6119
+ # @type Url: String
6120
+
6121
+ attr_accessor :Url
6122
+
6123
+ def initialize(url=nil)
6124
+ @Url = url
6125
+ end
6126
+
6127
+ def deserialize(params)
6128
+ @Url = params['Url']
6129
+ end
6130
+ end
6131
+
6085
6132
  # DescribeImageSpriteTemplates请求参数结构体
6086
6133
  class DescribeImageSpriteTemplatesRequest < TencentCloud::Common::AbstractModel
6087
6134
  # @param Definitions: 雪碧图模板唯一标识过滤条件,数组长度限制:100。
@@ -6177,10 +6224,13 @@ module TencentCloud
6177
6224
  # @param RTSPPullSettings: 输入的RTSP_PULL配置信息。
6178
6225
  # 注意:此字段可能返回 null,表示取不到有效值。
6179
6226
  # @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputRTSPPullSettings`
6227
+ # @param HLSPullSettings: 输入的HLS_PULL配置信息。
6228
+ # 注意:此字段可能返回 null,表示取不到有效值。
6229
+ # @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeInputHLSPullSettings`
6180
6230
 
6181
- attr_accessor :InputId, :InputName, :Description, :Protocol, :InputAddressList, :AllowIpList, :SRTSettings, :RTPSettings, :InputRegion, :RTMPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings
6231
+ attr_accessor :InputId, :InputName, :Description, :Protocol, :InputAddressList, :AllowIpList, :SRTSettings, :RTPSettings, :InputRegion, :RTMPSettings, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings
6182
6232
 
6183
- 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)
6233
+ 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)
6184
6234
  @InputId = inputid
6185
6235
  @InputName = inputname
6186
6236
  @Description = description
@@ -6194,6 +6244,7 @@ module TencentCloud
6194
6244
  @FailOver = failover
6195
6245
  @RTMPPullSettings = rtmppullsettings
6196
6246
  @RTSPPullSettings = rtsppullsettings
6247
+ @HLSPullSettings = hlspullsettings
6197
6248
  end
6198
6249
 
6199
6250
  def deserialize(params)
@@ -6232,6 +6283,33 @@ module TencentCloud
6232
6283
  @RTSPPullSettings = DescribeInputRTSPPullSettings.new
6233
6284
  @RTSPPullSettings.deserialize(params['RTSPPullSettings'])
6234
6285
  end
6286
+ unless params['HLSPullSettings'].nil?
6287
+ @HLSPullSettings = DescribeInputHLSPullSettings.new
6288
+ @HLSPullSettings.deserialize(params['HLSPullSettings'])
6289
+ end
6290
+ end
6291
+ end
6292
+
6293
+ # 查询输入的HLS配置信息。
6294
+ class DescribeInputHLSPullSettings < TencentCloud::Common::AbstractModel
6295
+ # @param SourceAddresses: HLS源站地址信息。
6296
+ # @type SourceAddresses: Array
6297
+
6298
+ attr_accessor :SourceAddresses
6299
+
6300
+ def initialize(sourceaddresses=nil)
6301
+ @SourceAddresses = sourceaddresses
6302
+ end
6303
+
6304
+ def deserialize(params)
6305
+ unless params['SourceAddresses'].nil?
6306
+ @SourceAddresses = []
6307
+ params['SourceAddresses'].each do |i|
6308
+ describehlspullsourceaddress_tmp = DescribeHLSPullSourceAddress.new
6309
+ describehlspullsourceaddress_tmp.deserialize(i)
6310
+ @SourceAddresses << describehlspullsourceaddress_tmp
6311
+ end
6312
+ end
6235
6313
  end
6236
6314
  end
6237
6315
 
@@ -6459,10 +6537,13 @@ module TencentCloud
6459
6537
  # @param RTSPPullSettings: 输出的RTSP拉流配置信息。
6460
6538
  # 注意:此字段可能返回 null,表示取不到有效值。
6461
6539
  # @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputRTSPPullSettings`
6540
+ # @param HLSPullSettings: 输出的HLS拉流配置信息。
6541
+ # 注意:此字段可能返回 null,表示取不到有效值。
6542
+ # @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.DescribeOutputHLSPullSettings`
6462
6543
 
6463
- attr_accessor :OutputId, :OutputName, :OutputType, :Description, :Protocol, :OutputAddressList, :OutputRegion, :SRTSettings, :RTPSettings, :RTMPSettings, :RTMPPullSettings, :AllowIpList, :RTSPPullSettings
6544
+ attr_accessor :OutputId, :OutputName, :OutputType, :Description, :Protocol, :OutputAddressList, :OutputRegion, :SRTSettings, :RTPSettings, :RTMPSettings, :RTMPPullSettings, :AllowIpList, :RTSPPullSettings, :HLSPullSettings
6464
6545
 
6465
- 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)
6546
+ 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)
6466
6547
  @OutputId = outputid
6467
6548
  @OutputName = outputname
6468
6549
  @OutputType = outputtype
@@ -6476,6 +6557,7 @@ module TencentCloud
6476
6557
  @RTMPPullSettings = rtmppullsettings
6477
6558
  @AllowIpList = allowiplist
6478
6559
  @RTSPPullSettings = rtsppullsettings
6560
+ @HLSPullSettings = hlspullsettings
6479
6561
  end
6480
6562
 
6481
6563
  def deserialize(params)
@@ -6514,6 +6596,50 @@ module TencentCloud
6514
6596
  @RTSPPullSettings = DescribeOutputRTSPPullSettings.new
6515
6597
  @RTSPPullSettings.deserialize(params['RTSPPullSettings'])
6516
6598
  end
6599
+ unless params['HLSPullSettings'].nil?
6600
+ @HLSPullSettings = DescribeOutputHLSPullSettings.new
6601
+ @HLSPullSettings.deserialize(params['HLSPullSettings'])
6602
+ end
6603
+ end
6604
+ end
6605
+
6606
+ # 查询输出的HLS拉流URL信息。
6607
+ class DescribeOutputHLSPullServerUrl < TencentCloud::Common::AbstractModel
6608
+ # @param Url: HLS拉流地址的Url。
6609
+ # @type Url: String
6610
+
6611
+ attr_accessor :Url
6612
+
6613
+ def initialize(url=nil)
6614
+ @Url = url
6615
+ end
6616
+
6617
+ def deserialize(params)
6618
+ @Url = params['Url']
6619
+ end
6620
+ end
6621
+
6622
+ # 查询输出的HLS拉流配置信息。
6623
+ class DescribeOutputHLSPullSettings < TencentCloud::Common::AbstractModel
6624
+ # @param ServerUrls: HLS拉流地址列表。
6625
+ # 注意:此字段可能返回 null,表示取不到有效值。
6626
+ # @type ServerUrls: Array
6627
+
6628
+ attr_accessor :ServerUrls
6629
+
6630
+ def initialize(serverurls=nil)
6631
+ @ServerUrls = serverurls
6632
+ end
6633
+
6634
+ def deserialize(params)
6635
+ unless params['ServerUrls'].nil?
6636
+ @ServerUrls = []
6637
+ params['ServerUrls'].each do |i|
6638
+ describeoutputhlspullserverurl_tmp = DescribeOutputHLSPullServerUrl.new
6639
+ describeoutputhlspullserverurl_tmp.deserialize(i)
6640
+ @ServerUrls << describeoutputhlspullserverurl_tmp
6641
+ end
6642
+ end
6517
6643
  end
6518
6644
  end
6519
6645
 
@@ -8983,6 +9109,22 @@ module TencentCloud
8983
9109
  end
8984
9110
  end
8985
9111
 
9112
+ # 创建的输入HLS拉流源站配置信息。
9113
+ class HLSPullSourceAddress < TencentCloud::Common::AbstractModel
9114
+ # @param Url: HLS源站的Url地址。
9115
+ # @type Url: String
9116
+
9117
+ attr_accessor :Url
9118
+
9119
+ def initialize(url=nil)
9120
+ @Url = url
9121
+ end
9122
+
9123
+ def deserialize(params)
9124
+ @Url = params['Url']
9125
+ end
9126
+ end
9127
+
8986
9128
  # HDR配置
8987
9129
  class HdrConfig < TencentCloud::Common::AbstractModel
8988
9130
  # @param Switch: 能力配置开关,可选值:
@@ -11759,10 +11901,12 @@ module TencentCloud
11759
11901
  # @type RTMPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTMPPullSettings`
11760
11902
  # @param RTSPPullSettings: RTSP_PULL的配置信息。
11761
11903
  # @type RTSPPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputRTSPPullSettings`
11904
+ # @param HLSPullSettings: HLS_PULL的配置信息。
11905
+ # @type HLSPullSettings: :class:`Tencentcloud::Mps.v20190612.models.CreateInputHLSPullSettings`
11762
11906
 
11763
- attr_accessor :InputId, :InputName, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :Protocol, :FailOver, :RTMPPullSettings, :RTSPPullSettings
11907
+ attr_accessor :InputId, :InputName, :Description, :AllowIpList, :SRTSettings, :RTPSettings, :Protocol, :FailOver, :RTMPPullSettings, :RTSPPullSettings, :HLSPullSettings
11764
11908
 
11765
- def initialize(inputid=nil, inputname=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, protocol=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil)
11909
+ def initialize(inputid=nil, inputname=nil, description=nil, allowiplist=nil, srtsettings=nil, rtpsettings=nil, protocol=nil, failover=nil, rtmppullsettings=nil, rtsppullsettings=nil, hlspullsettings=nil)
11766
11910
  @InputId = inputid
11767
11911
  @InputName = inputname
11768
11912
  @Description = description
@@ -11773,6 +11917,7 @@ module TencentCloud
11773
11917
  @FailOver = failover
11774
11918
  @RTMPPullSettings = rtmppullsettings
11775
11919
  @RTSPPullSettings = rtsppullsettings
11920
+ @HLSPullSettings = hlspullsettings
11776
11921
  end
11777
11922
 
11778
11923
  def deserialize(params)
@@ -11798,6 +11943,10 @@ module TencentCloud
11798
11943
  @RTSPPullSettings = CreateInputRTSPPullSettings.new
11799
11944
  @RTSPPullSettings.deserialize(params['RTSPPullSettings'])
11800
11945
  end
11946
+ unless params['HLSPullSettings'].nil?
11947
+ @HLSPullSettings = CreateInputHLSPullSettings.new
11948
+ @HLSPullSettings.deserialize(params['HLSPullSettings'])
11949
+ end
11801
11950
  end
11802
11951
  end
11803
11952
 
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.453
4
+ version: 3.0.454
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-17 00:00:00.000000000 Z
11
+ date: 2022-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common