Class: TencentCloud::Cdn::V20180606::ManageClsTopicDomainsRequest

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

Overview

ManageClsTopicDomains请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(logsetid = nil, topicid = nil, channel = nil, domainareaconfigs = nil, inheritdomaintags = nil) ⇒ ManageClsTopicDomainsRequest



7017
7018
7019
7020
7021
7022
7023
# File 'lib/v20180606/models.rb', line 7017

def initialize(logsetid=nil, topicid=nil, channel=nil, domainareaconfigs=nil, inheritdomaintags=nil)
  @LogsetId = logsetid
  @TopicId = topicid
  @Channel = channel
  @DomainAreaConfigs = domainareaconfigs
  @InheritDomainTags = inheritdomaintags
end

Instance Attribute Details

#ChannelObject



7015
7016
7017
# File 'lib/v20180606/models.rb', line 7015

def Channel
  @Channel
end

#DomainAreaConfigsObject



7015
7016
7017
# File 'lib/v20180606/models.rb', line 7015

def DomainAreaConfigs
  @DomainAreaConfigs
end

#InheritDomainTagsObject



7015
7016
7017
# File 'lib/v20180606/models.rb', line 7015

def InheritDomainTags
  @InheritDomainTags
end

#LogsetIdObject



7015
7016
7017
# File 'lib/v20180606/models.rb', line 7015

def LogsetId
  @LogsetId
end

#TopicIdObject



7015
7016
7017
# File 'lib/v20180606/models.rb', line 7015

def TopicId
  @TopicId
end

Instance Method Details

#deserialize(params) ⇒ Object



7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
# File 'lib/v20180606/models.rb', line 7025

def deserialize(params)
  @LogsetId = params['LogsetId']
  @TopicId = params['TopicId']
  @Channel = params['Channel']
  unless params['DomainAreaConfigs'].nil?
    @DomainAreaConfigs = []
    params['DomainAreaConfigs'].each do |i|
      domainareaconfig_tmp = DomainAreaConfig.new
      domainareaconfig_tmp.deserialize(i)
      @DomainAreaConfigs << domainareaconfig_tmp
    end
  end
  @InheritDomainTags = params['InheritDomainTags']
end