Class: TencentCloud::Ssl::V20191205::DescribeHostCdnInstanceListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostCdnInstanceListResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostCdnInstanceList返回参数结构体
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) ⇒ DescribeHostCdnInstanceListResponse
constructor
A new instance of DescribeHostCdnInstanceListResponse.
Constructor Details
#initialize(instancelist = nil, totalcount = nil, asynctotalnum = nil, asyncoffset = nil, asynccachetime = nil, requestid = nil) ⇒ DescribeHostCdnInstanceListResponse
Returns a new instance of DescribeHostCdnInstanceListResponse.
4261 4262 4263 4264 4265 4266 4267 4268 |
# File 'lib/v20191205/models.rb', line 4261 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
4259 4260 4261 |
# File 'lib/v20191205/models.rb', line 4259 def AsyncCacheTime @AsyncCacheTime end |
#AsyncOffset ⇒ Object
4259 4260 4261 |
# File 'lib/v20191205/models.rb', line 4259 def AsyncOffset @AsyncOffset end |
#AsyncTotalNum ⇒ Object
4259 4260 4261 |
# File 'lib/v20191205/models.rb', line 4259 def AsyncTotalNum @AsyncTotalNum end |
#InstanceList ⇒ Object
4259 4260 4261 |
# File 'lib/v20191205/models.rb', line 4259 def InstanceList @InstanceList end |
#RequestId ⇒ Object
4259 4260 4261 |
# File 'lib/v20191205/models.rb', line 4259 def RequestId @RequestId end |
#TotalCount ⇒ Object
4259 4260 4261 |
# File 'lib/v20191205/models.rb', line 4259 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 |
# File 'lib/v20191205/models.rb', line 4270 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| cdninstancedetail_tmp = CdnInstanceDetail.new cdninstancedetail_tmp.deserialize(i) @InstanceList << cdninstancedetail_tmp end end @TotalCount = params['TotalCount'] @AsyncTotalNum = params['AsyncTotalNum'] @AsyncOffset = params['AsyncOffset'] @AsyncCacheTime = params['AsyncCacheTime'] @RequestId = params['RequestId'] end |