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.
6992 6993 6994 6995 6996 |
# File 'lib/v20180525/models.rb', line 6992 def initialize(releasehistoryset=nil, total=nil, requestid=nil) @ReleaseHistorySet = releasehistoryset @Total = total @RequestId = requestid end |
Instance Attribute Details
#ReleaseHistorySet ⇒ Object
6990 6991 6992 |
# File 'lib/v20180525/models.rb', line 6990 def ReleaseHistorySet @ReleaseHistorySet end |
#RequestId ⇒ Object
6990 6991 6992 |
# File 'lib/v20180525/models.rb', line 6990 def RequestId @RequestId end |
#Total ⇒ Object
6990 6991 6992 |
# File 'lib/v20180525/models.rb', line 6990 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 |
# File 'lib/v20180525/models.rb', line 6998 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 |