Class: TencentCloud::Ssl::V20191205::UpdateRecordDetails

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20191205/models.rb

Overview

更新记录详情

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(resourcetype = nil, list = nil, totalcount = nil) ⇒ UpdateRecordDetails

Returns a new instance of UpdateRecordDetails.



8386
8387
8388
8389
8390
# File 'lib/v20191205/models.rb', line 8386

def initialize(resourcetype=nil, list=nil, totalcount=nil)
  @ResourceType = resourcetype
  @List = list
  @TotalCount = totalcount
end

Instance Attribute Details

#ListObject

  • clb
  • cdn
  • ddos
  • live
  • vod
  • waf
  • apigateway
  • teo
  • tke
  • cos
  • tse
  • tcb

Parameters:

  • ResourceType:

    新旧证书更新云资源的云资源类型:

  • List:

    该云资源更新详情

  • TotalCount:

    该云资源更新资源总数



8384
8385
8386
# File 'lib/v20191205/models.rb', line 8384

def List
  @List
end

#ResourceTypeObject

  • clb
  • cdn
  • ddos
  • live
  • vod
  • waf
  • apigateway
  • teo
  • tke
  • cos
  • tse
  • tcb

Parameters:

  • ResourceType:

    新旧证书更新云资源的云资源类型:

  • List:

    该云资源更新详情

  • TotalCount:

    该云资源更新资源总数



8384
8385
8386
# File 'lib/v20191205/models.rb', line 8384

def ResourceType
  @ResourceType
end

#TotalCountObject

  • clb
  • cdn
  • ddos
  • live
  • vod
  • waf
  • apigateway
  • teo
  • tke
  • cos
  • tse
  • tcb

Parameters:

  • ResourceType:

    新旧证书更新云资源的云资源类型:

  • List:

    该云资源更新详情

  • TotalCount:

    该云资源更新资源总数



8384
8385
8386
# File 'lib/v20191205/models.rb', line 8384

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



8392
8393
8394
8395
8396
8397
8398
8399
8400
8401
8402
8403
# File 'lib/v20191205/models.rb', line 8392

def deserialize(params)
  @ResourceType = params['ResourceType']
  unless params['List'].nil?
    @List = []
    params['List'].each do |i|
      updaterecorddetail_tmp = UpdateRecordDetail.new
      updaterecorddetail_tmp.deserialize(i)
      @List << updaterecorddetail_tmp
    end
  end
  @TotalCount = params['TotalCount']
end