Class: TencentCloud::Tke::V20180525::DescribeClusterReleaseHistoryResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeClusterReleaseHistoryResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeClusterReleaseHistory返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(releasehistoryset = nil, total = nil, requestid = nil) ⇒ DescribeClusterReleaseHistoryResponse
constructor
A new instance of DescribeClusterReleaseHistoryResponse.
Constructor Details
#initialize(releasehistoryset = nil, total = nil, requestid = nil) ⇒ DescribeClusterReleaseHistoryResponse
Returns a new instance of DescribeClusterReleaseHistoryResponse.
6379 6380 6381 6382 6383 |
# File 'lib/v20180525/models.rb', line 6379 def initialize(releasehistoryset=nil, total=nil, requestid=nil) @ReleaseHistorySet = releasehistoryset @Total = total @RequestId = requestid end |
Instance Attribute Details
#ReleaseHistorySet ⇒ Object
6377 6378 6379 |
# File 'lib/v20180525/models.rb', line 6377 def ReleaseHistorySet @ReleaseHistorySet end |
#RequestId ⇒ Object
6377 6378 6379 |
# File 'lib/v20180525/models.rb', line 6377 def RequestId @RequestId end |
#Total ⇒ Object
6377 6378 6379 |
# File 'lib/v20180525/models.rb', line 6377 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 |
# File 'lib/v20180525/models.rb', line 6385 def deserialize(params) unless params['ReleaseHistorySet'].nil? @ReleaseHistorySet = [] params['ReleaseHistorySet'].each do |i| releasehistory_tmp = ReleaseHistory.new releasehistory_tmp.deserialize(i) @ReleaseHistorySet << releasehistory_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |