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.
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
#RequestId ⇒ Object
3653 3654 3655 |
# File 'lib/v20190904/models.rb', line 3653 def RequestId @RequestId end |
#Total ⇒ Object
3653 3654 3655 |
# File 'lib/v20190904/models.rb', line 3653 def Total @Total end |
#VpcFwGroupLst ⇒ Object
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 |