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
6511 6512 6513 6514 6515 |
# File 'lib/v20180525/models.rb', line 6511 def initialize(releasehistoryset=nil, total=nil, requestid=nil) @ReleaseHistorySet = releasehistoryset @Total = total @RequestId = requestid end |
Instance Attribute Details
#ReleaseHistorySet ⇒ Object
6509 6510 6511 |
# File 'lib/v20180525/models.rb', line 6509 def ReleaseHistorySet @ReleaseHistorySet end |
#RequestId ⇒ Object
6509 6510 6511 |
# File 'lib/v20180525/models.rb', line 6509 def RequestId @RequestId end |
#Total ⇒ Object
6509 6510 6511 |
# File 'lib/v20180525/models.rb', line 6509 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 |
# File 'lib/v20180525/models.rb', line 6517 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 |