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.



3655
3656
3657
3658
3659
# File 'lib/v20190904/models.rb', line 3655

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。



3653
3654
3655
# File 'lib/v20190904/models.rb', line 3653

def RequestId
  @RequestId
end

#TotalObject

Parameters:

  • VpcFwGroupLst:

    防火墙(组)详细信息

  • Total:

    防火墙(组)个数

  • RequestId:

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



3653
3654
3655
# File 'lib/v20190904/models.rb', line 3653

def Total
  @Total
end

#VpcFwGroupLstObject

Parameters:

  • VpcFwGroupLst:

    防火墙(组)详细信息

  • Total:

    防火墙(组)个数

  • RequestId:

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



3653
3654
3655
# File 'lib/v20190904/models.rb', line 3653

def VpcFwGroupLst
  @VpcFwGroupLst
end

Instance Method Details

#deserialize(params) ⇒ Object



3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
# File 'lib/v20190904/models.rb', line 3661

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