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
-
#ReleaseHistorySet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
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.
6409 6410 6411 6412 6413 |
# File 'lib/v20180525/models.rb', line 6409 def initialize(releasehistoryset=nil, total=nil, requestid=nil) @ReleaseHistorySet = releasehistoryset @Total = total @RequestId = requestid end |
Instance Attribute Details
#ReleaseHistorySet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6407 6408 6409 |
# File 'lib/v20180525/models.rb', line 6407 def ReleaseHistorySet @ReleaseHistorySet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6407 6408 6409 |
# File 'lib/v20180525/models.rb', line 6407 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6407 6408 6409 |
# File 'lib/v20180525/models.rb', line 6407 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 |
# File 'lib/v20180525/models.rb', line 6415 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 |