Class: TencentCloud::Ssl::V20191205::DescribeHostUpdateRecordResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostUpdateRecordResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostUpdateRecord返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, deployrecordlist = nil, requestid = nil) ⇒ DescribeHostUpdateRecordResponse
constructor
A new instance of DescribeHostUpdateRecordResponse.
Constructor Details
#initialize(totalcount = nil, deployrecordlist = nil, requestid = nil) ⇒ DescribeHostUpdateRecordResponse
Returns a new instance of DescribeHostUpdateRecordResponse.
5102 5103 5104 5105 5106 |
# File 'lib/v20191205/models.rb', line 5102 def initialize(totalcount=nil, deployrecordlist=nil, requestid=nil) @TotalCount = totalcount @DeployRecordList = deployrecordlist @RequestId = requestid end |
Instance Attribute Details
#DeployRecordList ⇒ Object
5100 5101 5102 |
# File 'lib/v20191205/models.rb', line 5100 def DeployRecordList @DeployRecordList end |
#RequestId ⇒ Object
5100 5101 5102 |
# File 'lib/v20191205/models.rb', line 5100 def RequestId @RequestId end |
#TotalCount ⇒ Object
5100 5101 5102 |
# File 'lib/v20191205/models.rb', line 5100 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 |
# File 'lib/v20191205/models.rb', line 5108 def deserialize(params) @TotalCount = params['TotalCount'] unless params['DeployRecordList'].nil? @DeployRecordList = [] params['DeployRecordList'].each do |i| updaterecordinfo_tmp = UpdateRecordInfo.new updaterecordinfo_tmp.deserialize(i) @DeployRecordList << updaterecordinfo_tmp end end @RequestId = params['RequestId'] end |