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.



4171
4172
4173
4174
4175
# File 'lib/v20190904/models.rb', line 4171

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

Instance Attribute Details

#RequestIdObject

Parameters:

  • 防火墙(组)详细信息

  • 防火墙(组)个数

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



4169
4170
4171
# File 'lib/v20190904/models.rb', line 4169

def RequestId
  @RequestId
end

#TotalObject

Parameters:

  • 防火墙(组)详细信息

  • 防火墙(组)个数

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



4169
4170
4171
# File 'lib/v20190904/models.rb', line 4169

def Total
  @Total
end

#VpcFwGroupLstObject

Parameters:

  • 防火墙(组)详细信息

  • 防火墙(组)个数

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



4169
4170
4171
# File 'lib/v20190904/models.rb', line 4169

def VpcFwGroupLst
  @VpcFwGroupLst
end

Instance Method Details

#deserialize(params) ⇒ Object



4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
# File 'lib/v20190904/models.rb', line 4177

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