Class: TencentCloud::Ssl::V20191205::UpdateRecordDetails
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::UpdateRecordDetails
- Defined in:
- lib/v20191205/models.rb
Overview
更新记录详情
Instance Attribute Summary collapse
-
#List ⇒ Object
- clb - cdn - ddos - live - vod - waf - apigateway - teo - tke - cos - tse - tcb.
-
#ResourceType ⇒ Object
- clb - cdn - ddos - live - vod - waf - apigateway - teo - tke - cos - tse - tcb.
-
#TotalCount ⇒ Object
- clb - cdn - ddos - live - vod - waf - apigateway - teo - tke - cos - tse - tcb.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(resourcetype = nil, list = nil, totalcount = nil) ⇒ UpdateRecordDetails
constructor
A new instance of UpdateRecordDetails.
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
#List ⇒ Object
- clb
- cdn
- ddos
- live
- vod
- waf
- apigateway
- teo
- tke
- cos
- tse
- tcb
8384 8385 8386 |
# File 'lib/v20191205/models.rb', line 8384 def List @List end |
#ResourceType ⇒ Object
- clb
- cdn
- ddos
- live
- vod
- waf
- apigateway
- teo
- tke
- cos
- tse
- tcb
8384 8385 8386 |
# File 'lib/v20191205/models.rb', line 8384 def ResourceType @ResourceType end |
#TotalCount ⇒ Object
- clb
- cdn
- ddos
- live
- vod
- waf
- apigateway
- teo
- tke
- cos
- tse
- tcb
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 |