Class: TencentCloud::Ssl::V20191205::DescribeHostCosInstanceListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostCosInstanceListResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostCosInstanceList返回参数结构体
Instance Attribute Summary collapse
- #AsyncCacheTime ⇒ Object
- #AsyncOffset ⇒ Object
- #AsyncTotalNum ⇒ Object
- #InstanceList ⇒ Object
- #RequestId ⇒ Object
- #TotalCount ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancelist = nil, totalcount = nil, asynctotalnum = nil, asyncoffset = nil, asynccachetime = nil, requestid = nil) ⇒ DescribeHostCosInstanceListResponse
constructor
A new instance of DescribeHostCosInstanceListResponse.
Constructor Details
#initialize(instancelist = nil, totalcount = nil, asynctotalnum = nil, asyncoffset = nil, asynccachetime = nil, requestid = nil) ⇒ DescribeHostCosInstanceListResponse
Returns a new instance of DescribeHostCosInstanceListResponse.
4445 4446 4447 4448 4449 4450 4451 4452 |
# File 'lib/v20191205/models.rb', line 4445 def initialize(instancelist=nil, totalcount=nil, asynctotalnum=nil, asyncoffset=nil, asynccachetime=nil, requestid=nil) @InstanceList = instancelist @TotalCount = totalcount @AsyncTotalNum = asynctotalnum @AsyncOffset = asyncoffset @AsyncCacheTime = asynccachetime @RequestId = requestid end |
Instance Attribute Details
#AsyncCacheTime ⇒ Object
4443 4444 4445 |
# File 'lib/v20191205/models.rb', line 4443 def AsyncCacheTime @AsyncCacheTime end |
#AsyncOffset ⇒ Object
4443 4444 4445 |
# File 'lib/v20191205/models.rb', line 4443 def AsyncOffset @AsyncOffset end |
#AsyncTotalNum ⇒ Object
4443 4444 4445 |
# File 'lib/v20191205/models.rb', line 4443 def AsyncTotalNum @AsyncTotalNum end |
#InstanceList ⇒ Object
4443 4444 4445 |
# File 'lib/v20191205/models.rb', line 4443 def InstanceList @InstanceList end |
#RequestId ⇒ Object
4443 4444 4445 |
# File 'lib/v20191205/models.rb', line 4443 def RequestId @RequestId end |
#TotalCount ⇒ Object
4443 4444 4445 |
# File 'lib/v20191205/models.rb', line 4443 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 |
# File 'lib/v20191205/models.rb', line 4454 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| cosinstancedetail_tmp = CosInstanceDetail.new cosinstancedetail_tmp.deserialize(i) @InstanceList << cosinstancedetail_tmp end end @TotalCount = params['TotalCount'] @AsyncTotalNum = params['AsyncTotalNum'] @AsyncOffset = params['AsyncOffset'] @AsyncCacheTime = params['AsyncCacheTime'] @RequestId = params['RequestId'] end |