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.
4087 4088 4089 4090 4091 4092 4093 4094 |
# File 'lib/v20190904/models.rb', line 4087 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
4085 4086 4087 |
# File 'lib/v20190904/models.rb', line 4085 def Data @Data end |
#InstanceTypeLst ⇒ Object
4085 4086 4087 |
# File 'lib/v20190904/models.rb', line 4085 def InstanceTypeLst @InstanceTypeLst end |
#RegionLst ⇒ Object
4085 4086 4087 |
# File 'lib/v20190904/models.rb', line 4085 def RegionLst @RegionLst end |
#RequestId ⇒ Object
4085 4086 4087 |
# File 'lib/v20190904/models.rb', line 4085 def RequestId @RequestId end |
#SerilCount ⇒ Object
4085 4086 4087 |
# File 'lib/v20190904/models.rb', line 4085 def SerilCount @SerilCount end |
#Total ⇒ Object
4085 4086 4087 |
# File 'lib/v20190904/models.rb', line 4085 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 |
# File 'lib/v20190904/models.rb', line 4096 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 |