Class: TencentCloud::Mps::V20190612::DescribeOutputRTSPPullSettings

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190612/models.rb

Overview

查询输出的RTSP拉流配置信息。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(serverurls = nil) ⇒ DescribeOutputRTSPPullSettings

Returns a new instance of DescribeOutputRTSPPullSettings.



13367
13368
13369
# File 'lib/v20190612/models.rb', line 13367

def initialize(serverurls=nil)
  @ServerUrls = serverurls
end

Instance Attribute Details

#ServerUrlsObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ServerUrls:

    RTSP拉流地址列表。



13365
13366
13367
# File 'lib/v20190612/models.rb', line 13365

def ServerUrls
  @ServerUrls
end

Instance Method Details

#deserialize(params) ⇒ Object



13371
13372
13373
13374
13375
13376
13377
13378
13379
13380
# File 'lib/v20190612/models.rb', line 13371

def deserialize(params)
  unless params['ServerUrls'].nil?
    @ServerUrls = []
    params['ServerUrls'].each do |i|
      describeoutputrtsppullserverurl_tmp = DescribeOutputRTSPPullServerUrl.new
      describeoutputrtsppullserverurl_tmp.deserialize(i)
      @ServerUrls << describeoutputrtsppullserverurl_tmp
    end
  end
end