Class: TencentCloud::Cfw::V20190904::DescribeFwGroupInstanceInfoResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfw::V20190904::DescribeFwGroupInstanceInfoResponse
- Defined in:
- lib/v20190904/models.rb
Overview
DescribeFwGroupInstanceInfo返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(vpcfwgrouplst = nil, total = nil, requestid = nil) ⇒ DescribeFwGroupInstanceInfoResponse
constructor
A new instance of DescribeFwGroupInstanceInfoResponse.
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
#RequestId ⇒ Object
4169 4170 4171 |
# File 'lib/v20190904/models.rb', line 4169 def RequestId @RequestId end |
#Total ⇒ Object
4169 4170 4171 |
# File 'lib/v20190904/models.rb', line 4169 def Total @Total end |
#VpcFwGroupLst ⇒ Object
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 |