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.
15601 15602 15603 15604 15605 |
# File 'lib/v20180228/models.rb', line 15601 def initialize(ignoreruleeffecthostlist=nil, totalcount=nil, requestid=nil) @IgnoreRuleEffectHostList = ignoreruleeffecthostlist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#IgnoreRuleEffectHostList ⇒ Object
15599 15600 15601 |
# File 'lib/v20180228/models.rb', line 15599 def IgnoreRuleEffectHostList @IgnoreRuleEffectHostList end |
#RequestId ⇒ Object
15599 15600 15601 |
# File 'lib/v20180228/models.rb', line 15599 def RequestId @RequestId end |
#TotalCount ⇒ Object
15599 15600 15601 |
# File 'lib/v20180228/models.rb', line 15599 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 |
# File 'lib/v20180228/models.rb', line 15607 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 |