Class: TencentCloud::Cfw::V20190904::DescribeFwGroupInstanceInfoResponse

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

Overview

DescribeFwGroupInstanceInfo返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(vpcfwgrouplst = nil, total = nil, requestid = nil) ⇒ DescribeFwGroupInstanceInfoResponse

Returns a new instance of DescribeFwGroupInstanceInfoResponse.



3704
3705
3706
3707
3708
# File 'lib/v20190904/models.rb', line 3704

def initialize(vpcfwgrouplst=nil, total=nil, requestid=nil)
  @VpcFwGroupLst = vpcfwgrouplst
  @Total = total
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • VpcFwGroupLst:

    防火墙(组)详细信息

  • Total:

    防火墙(组)个数

  • RequestId:

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



3702
3703
3704
# File 'lib/v20190904/models.rb', line 3702

def RequestId
  @RequestId
end

#TotalObject

Parameters:

  • VpcFwGroupLst:

    防火墙(组)详细信息

  • Total:

    防火墙(组)个数

  • RequestId:

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



3702
3703
3704
# File 'lib/v20190904/models.rb', line 3702

def Total
  @Total
end

#VpcFwGroupLstObject

Parameters:

  • VpcFwGroupLst:

    防火墙(组)详细信息

  • Total:

    防火墙(组)个数

  • RequestId:

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



3702
3703
3704
# File 'lib/v20190904/models.rb', line 3702

def VpcFwGroupLst
  @VpcFwGroupLst
end

Instance Method Details

#deserialize(params) ⇒ Object



3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
# File 'lib/v20190904/models.rb', line 3710

def deserialize(params)
  unless params['VpcFwGroupLst'].nil?
    @VpcFwGroupLst = []
    params['VpcFwGroupLst'].each do |i|
      vpcfwgroupinfo_tmp = VpcFwGroupInfo.new
      vpcfwgroupinfo_tmp.deserialize(i)
      @VpcFwGroupLst << vpcfwgroupinfo_tmp
    end
  end
  @Total = params['Total']
  @RequestId = params['RequestId']
end