Class: TencentCloud::Ssl::V20191205::DescribeHostLighthouseInstanceListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostLighthouseInstanceListResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostLighthouseInstanceList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeHostLighthouseInstanceListResponse
constructor
A new instance of DescribeHostLighthouseInstanceListResponse.
Constructor Details
#initialize(instancelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeHostLighthouseInstanceListResponse
Returns a new instance of DescribeHostLighthouseInstanceListResponse.
4728 4729 4730 4731 4732 |
# File 'lib/v20191205/models.rb', line 4728 def initialize(instancelist=nil, totalcount=nil, requestid=nil) @InstanceList = instancelist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#InstanceList ⇒ Object
4726 4727 4728 |
# File 'lib/v20191205/models.rb', line 4726 def InstanceList @InstanceList end |
#RequestId ⇒ Object
4726 4727 4728 |
# File 'lib/v20191205/models.rb', line 4726 def RequestId @RequestId end |
#TotalCount ⇒ Object
4726 4727 4728 |
# File 'lib/v20191205/models.rb', line 4726 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 |
# File 'lib/v20191205/models.rb', line 4734 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| lighthouseinstancedetail_tmp = LighthouseInstanceDetail.new lighthouseinstancedetail_tmp.deserialize(i) @InstanceList << lighthouseinstancedetail_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |