Class: TencentCloud::Tke::V20180525::DescribeClusterReleasesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeClusterReleasesResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeClusterReleases返回参数结构体
Instance Attribute Summary collapse
-
#Limit ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ReleaseSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(limit = nil, offset = nil, releaseset = nil, total = nil, requestid = nil) ⇒ DescribeClusterReleasesResponse
constructor
A new instance of DescribeClusterReleasesResponse.
Constructor Details
#initialize(limit = nil, offset = nil, releaseset = nil, total = nil, requestid = nil) ⇒ DescribeClusterReleasesResponse
Returns a new instance of DescribeClusterReleasesResponse.
6488 6489 6490 6491 6492 6493 6494 |
# File 'lib/v20180525/models.rb', line 6488 def initialize(limit=nil, offset=nil, releaseset=nil, total=nil, requestid=nil) @Limit = limit @Offset = offset @ReleaseSet = releaseset @Total = total @RequestId = requestid end |
Instance Attribute Details
#Limit ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6486 6487 6488 |
# File 'lib/v20180525/models.rb', line 6486 def Limit @Limit end |
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6486 6487 6488 |
# File 'lib/v20180525/models.rb', line 6486 def Offset @Offset end |
#ReleaseSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6486 6487 6488 |
# File 'lib/v20180525/models.rb', line 6486 def ReleaseSet @ReleaseSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6486 6487 6488 |
# File 'lib/v20180525/models.rb', line 6486 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6486 6487 6488 |
# File 'lib/v20180525/models.rb', line 6486 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 |
# File 'lib/v20180525/models.rb', line 6496 def deserialize(params) @Limit = params['Limit'] @Offset = params['Offset'] unless params['ReleaseSet'].nil? @ReleaseSet = [] params['ReleaseSet'].each do |i| release_tmp = Release.new release_tmp.deserialize(i) @ReleaseSet << release_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |