Class: TencentCloud::Cwp::V20180228::DescribeIgnoreRuleEffectHostListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeIgnoreRuleEffectHostListResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeIgnoreRuleEffectHostList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(ignoreruleeffecthostlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeIgnoreRuleEffectHostListResponse
constructor
A new instance of DescribeIgnoreRuleEffectHostListResponse.
Constructor Details
#initialize(ignoreruleeffecthostlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeIgnoreRuleEffectHostListResponse
Returns a new instance of DescribeIgnoreRuleEffectHostListResponse.
15316 15317 15318 15319 15320 |
# File 'lib/v20180228/models.rb', line 15316 def initialize(ignoreruleeffecthostlist=nil, totalcount=nil, requestid=nil) @IgnoreRuleEffectHostList = ignoreruleeffecthostlist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#IgnoreRuleEffectHostList ⇒ Object
15314 15315 15316 |
# File 'lib/v20180228/models.rb', line 15314 def IgnoreRuleEffectHostList @IgnoreRuleEffectHostList end |
#RequestId ⇒ Object
15314 15315 15316 |
# File 'lib/v20180228/models.rb', line 15314 def RequestId @RequestId end |
#TotalCount ⇒ Object
15314 15315 15316 |
# File 'lib/v20180228/models.rb', line 15314 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 |
# File 'lib/v20180228/models.rb', line 15322 def deserialize(params) unless params['IgnoreRuleEffectHostList'].nil? @IgnoreRuleEffectHostList = [] params['IgnoreRuleEffectHostList'].each do |i| ignoreruleeffecthostinfo_tmp = IgnoreRuleEffectHostInfo.new ignoreruleeffecthostinfo_tmp.deserialize(i) @IgnoreRuleEffectHostList << ignoreruleeffecthostinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |