Class: TencentCloud::Cdn::V20180606::ExtraLogset
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::ExtraLogset
- Defined in:
- lib/v20180606/models.rb
Overview
除上海外其他区域日志集和日志主题信息
Instance Attribute Summary collapse
-
#Logset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Topics ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(logset = nil, topics = nil) ⇒ ExtraLogset
constructor
A new instance of ExtraLogset.
Constructor Details
#initialize(logset = nil, topics = nil) ⇒ ExtraLogset
Returns a new instance of ExtraLogset.
5209 5210 5211 5212 |
# File 'lib/v20180606/models.rb', line 5209 def initialize(logset=nil, topics=nil) @Logset = logset @Topics = topics end |
Instance Attribute Details
#Logset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5207 5208 5209 |
# File 'lib/v20180606/models.rb', line 5207 def Logset @Logset end |
#Topics ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5207 5208 5209 |
# File 'lib/v20180606/models.rb', line 5207 def Topics @Topics end |
Instance Method Details
#deserialize(params) ⇒ Object
5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 |
# File 'lib/v20180606/models.rb', line 5214 def deserialize(params) unless params['Logset'].nil? @Logset = LogSetInfo.new @Logset.deserialize(params['Logset']) end unless params['Topics'].nil? @Topics = [] params['Topics'].each do |i| topicinfo_tmp = TopicInfo.new topicinfo_tmp.deserialize(i) @Topics << topicinfo_tmp end end end |