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.
3620 3621 3622 3623 3624 3625 3626 3627 |
# File 'lib/v20190904/models.rb', line 3620 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
3618 3619 3620 |
# File 'lib/v20190904/models.rb', line 3618 def Data @Data end |
#InstanceTypeLst ⇒ Object
3618 3619 3620 |
# File 'lib/v20190904/models.rb', line 3618 def InstanceTypeLst @InstanceTypeLst end |
#RegionLst ⇒ Object
3618 3619 3620 |
# File 'lib/v20190904/models.rb', line 3618 def RegionLst @RegionLst end |
#RequestId ⇒ Object
3618 3619 3620 |
# File 'lib/v20190904/models.rb', line 3618 def RequestId @RequestId end |
#SerilCount ⇒ Object
3618 3619 3620 |
# File 'lib/v20190904/models.rb', line 3618 def SerilCount @SerilCount end |
#Total ⇒ Object
3618 3619 3620 |
# File 'lib/v20190904/models.rb', line 3618 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 |
# File 'lib/v20190904/models.rb', line 3629 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 |