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.
7017 7018 7019 7020 7021 7022 7023 |
# File 'lib/v20180606/models.rb', line 7017 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
7015 7016 7017 |
# File 'lib/v20180606/models.rb', line 7015 def Channel @Channel end |
#DomainAreaConfigs ⇒ Object
7015 7016 7017 |
# File 'lib/v20180606/models.rb', line 7015 def DomainAreaConfigs @DomainAreaConfigs end |
#InheritDomainTags ⇒ Object
7015 7016 7017 |
# File 'lib/v20180606/models.rb', line 7015 def InheritDomainTags @InheritDomainTags end |
#LogsetId ⇒ Object
7015 7016 7017 |
# File 'lib/v20180606/models.rb', line 7015 def LogsetId @LogsetId end |
#TopicId ⇒ Object
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 |