Class: TencentCloud::Cwp::V20180228::DescribeIgnoreRuleEffectHostListResponse

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180228/models.rb

Overview

DescribeIgnoreRuleEffectHostList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#IgnoreRuleEffectHostListObject

Parameters:

  • IgnoreRuleEffectHostList:

    忽略检测项影响主机列表

  • TotalCount:

    分页查询记录总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



15599
15600
15601
# File 'lib/v20180228/models.rb', line 15599

def IgnoreRuleEffectHostList
  @IgnoreRuleEffectHostList
end

#RequestIdObject

Parameters:

  • IgnoreRuleEffectHostList:

    忽略检测项影响主机列表

  • TotalCount:

    分页查询记录总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



15599
15600
15601
# File 'lib/v20180228/models.rb', line 15599

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • IgnoreRuleEffectHostList:

    忽略检测项影响主机列表

  • TotalCount:

    分页查询记录总数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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