Class: TencentCloud::Ssl::V20191205::DescribeHostClbInstanceListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostClbInstanceListResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostClbInstanceList返回参数结构体
Instance Attribute Summary collapse
- #AsyncCacheTime ⇒ Object
- #AsyncOffset ⇒ Object
- #AsyncTotalNum ⇒ Object
- #InstanceList ⇒ Object
- #RequestId ⇒ Object
- #TotalCount ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, instancelist = nil, asynctotalnum = nil, asyncoffset = nil, asynccachetime = nil, requestid = nil) ⇒ DescribeHostClbInstanceListResponse
constructor
A new instance of DescribeHostClbInstanceListResponse.
Constructor Details
#initialize(totalcount = nil, instancelist = nil, asynctotalnum = nil, asyncoffset = nil, asynccachetime = nil, requestid = nil) ⇒ DescribeHostClbInstanceListResponse
Returns a new instance of DescribeHostClbInstanceListResponse.
4351 4352 4353 4354 4355 4356 4357 4358 |
# File 'lib/v20191205/models.rb', line 4351 def initialize(totalcount=nil, instancelist=nil, asynctotalnum=nil, asyncoffset=nil, asynccachetime=nil, requestid=nil) @TotalCount = totalcount @InstanceList = instancelist @AsyncTotalNum = asynctotalnum @AsyncOffset = asyncoffset @AsyncCacheTime = asynccachetime @RequestId = requestid end |
Instance Attribute Details
#AsyncCacheTime ⇒ Object
4349 4350 4351 |
# File 'lib/v20191205/models.rb', line 4349 def AsyncCacheTime @AsyncCacheTime end |
#AsyncOffset ⇒ Object
4349 4350 4351 |
# File 'lib/v20191205/models.rb', line 4349 def AsyncOffset @AsyncOffset end |
#AsyncTotalNum ⇒ Object
4349 4350 4351 |
# File 'lib/v20191205/models.rb', line 4349 def AsyncTotalNum @AsyncTotalNum end |
#InstanceList ⇒ Object
4349 4350 4351 |
# File 'lib/v20191205/models.rb', line 4349 def InstanceList @InstanceList end |
#RequestId ⇒ Object
4349 4350 4351 |
# File 'lib/v20191205/models.rb', line 4349 def RequestId @RequestId end |
#TotalCount ⇒ Object
4349 4350 4351 |
# File 'lib/v20191205/models.rb', line 4349 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 |
# File 'lib/v20191205/models.rb', line 4360 def deserialize(params) @TotalCount = params['TotalCount'] unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| clbinstancedetail_tmp = ClbInstanceDetail.new clbinstancedetail_tmp.deserialize(i) @InstanceList << clbinstancedetail_tmp end end @AsyncTotalNum = params['AsyncTotalNum'] @AsyncOffset = params['AsyncOffset'] @AsyncCacheTime = params['AsyncCacheTime'] @RequestId = params['RequestId'] end |