Class: TencentCloud::Cdn::V20180606::ManageClsTopicDomainsRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::ManageClsTopicDomainsRequest
- Defined in:
- lib/v20180606/models.rb
Overview
ManageClsTopicDomains请求参数结构体
Instance Attribute Summary collapse
- #Channel ⇒ Object
- #DomainAreaConfigs ⇒ Object
- #InheritDomainTags ⇒ Object
- #LogsetId ⇒ Object
- #TopicId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(logsetid = nil, topicid = nil, channel = nil, domainareaconfigs = nil, inheritdomaintags = nil) ⇒ ManageClsTopicDomainsRequest
constructor
A new instance of ManageClsTopicDomainsRequest.
Constructor Details
#initialize(logsetid = nil, topicid = nil, channel = nil, domainareaconfigs = nil, inheritdomaintags = nil) ⇒ ManageClsTopicDomainsRequest
Returns a new instance of ManageClsTopicDomainsRequest.
6777 6778 6779 6780 6781 6782 6783 |
# File 'lib/v20180606/models.rb', line 6777 def initialize(logsetid=nil, topicid=nil, channel=nil, domainareaconfigs=nil, =nil) @LogsetId = logsetid @TopicId = topicid @Channel = channel @DomainAreaConfigs = domainareaconfigs @InheritDomainTags = end |
Instance Attribute Details
#Channel ⇒ Object
6775 6776 6777 |
# File 'lib/v20180606/models.rb', line 6775 def Channel @Channel end |
#DomainAreaConfigs ⇒ Object
6775 6776 6777 |
# File 'lib/v20180606/models.rb', line 6775 def DomainAreaConfigs @DomainAreaConfigs end |
#InheritDomainTags ⇒ Object
6775 6776 6777 |
# File 'lib/v20180606/models.rb', line 6775 def InheritDomainTags @InheritDomainTags end |
#LogsetId ⇒ Object
6775 6776 6777 |
# File 'lib/v20180606/models.rb', line 6775 def LogsetId @LogsetId end |
#TopicId ⇒ Object
6775 6776 6777 |
# File 'lib/v20180606/models.rb', line 6775 def TopicId @TopicId end |
Instance Method Details
#deserialize(params) ⇒ Object
6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 |
# File 'lib/v20180606/models.rb', line 6785 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 |