Class: TencentCloud::Cfw::V20190904::DescribeFwEdgeIpsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfw::V20190904::DescribeFwEdgeIpsResponse
- Defined in:
- lib/v20190904/models.rb
Overview
DescribeFwEdgeIps返回参数结构体
Instance Attribute Summary collapse
- #Data ⇒ Object
- #InstanceTypeLst ⇒ Object
- #RegionLst ⇒ Object
- #RequestId ⇒ Object
- #SerilCount ⇒ Object
- #Total ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, total = nil, regionlst = nil, instancetypelst = nil, serilcount = nil, requestid = nil) ⇒ DescribeFwEdgeIpsResponse
constructor
A new instance of DescribeFwEdgeIpsResponse.
Constructor Details
#initialize(data = nil, total = nil, regionlst = nil, instancetypelst = nil, serilcount = nil, requestid = nil) ⇒ DescribeFwEdgeIpsResponse
Returns a new instance of DescribeFwEdgeIpsResponse.
3571 3572 3573 3574 3575 3576 3577 3578 |
# File 'lib/v20190904/models.rb', line 3571 def initialize(data=nil, total=nil, regionlst=nil, instancetypelst=nil, serilcount=nil, requestid=nil) @Data = data @Total = total @RegionLst = regionlst @InstanceTypeLst = instancetypelst @SerilCount = serilcount @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
3569 3570 3571 |
# File 'lib/v20190904/models.rb', line 3569 def Data @Data end |
#InstanceTypeLst ⇒ Object
3569 3570 3571 |
# File 'lib/v20190904/models.rb', line 3569 def InstanceTypeLst @InstanceTypeLst end |
#RegionLst ⇒ Object
3569 3570 3571 |
# File 'lib/v20190904/models.rb', line 3569 def RegionLst @RegionLst end |
#RequestId ⇒ Object
3569 3570 3571 |
# File 'lib/v20190904/models.rb', line 3569 def RequestId @RequestId end |
#SerilCount ⇒ Object
3569 3570 3571 |
# File 'lib/v20190904/models.rb', line 3569 def SerilCount @SerilCount end |
#Total ⇒ Object
3569 3570 3571 |
# File 'lib/v20190904/models.rb', line 3569 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/v20190904/models.rb', line 3580 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| edgeipinfo_tmp = EdgeIpInfo.new edgeipinfo_tmp.deserialize(i) @Data << edgeipinfo_tmp end end @Total = params['Total'] @RegionLst = params['RegionLst'] @InstanceTypeLst = params['InstanceTypeLst'] @SerilCount = params['SerilCount'] @RequestId = params['RequestId'] end |