Class: TencentCloud::Tke::V20180525::DescribeClusterPendingReleasesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeClusterPendingReleasesResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeClusterPendingReleases返回参数结构体
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(releaseset = nil, limit = nil, offset = nil, total = nil, requestid = nil) ⇒ DescribeClusterPendingReleasesResponse
constructor
A new instance of DescribeClusterPendingReleasesResponse.
Constructor Details
#initialize(releaseset = nil, limit = nil, offset = nil, total = nil, requestid = nil) ⇒ DescribeClusterPendingReleasesResponse
Returns a new instance of DescribeClusterPendingReleasesResponse.
6292 6293 6294 6295 6296 6297 6298 |
# File 'lib/v20180525/models.rb', line 6292 def initialize(releaseset=nil, limit=nil, offset=nil, total=nil, requestid=nil) @ReleaseSet = releaseset @Limit = limit @Offset = offset @Total = total @RequestId = requestid end |
Instance Attribute Details
#Limit ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6290 6291 6292 |
# File 'lib/v20180525/models.rb', line 6290 def Limit @Limit end |
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6290 6291 6292 |
# File 'lib/v20180525/models.rb', line 6290 def Offset @Offset end |
#ReleaseSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6290 6291 6292 |
# File 'lib/v20180525/models.rb', line 6290 def ReleaseSet @ReleaseSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6290 6291 6292 |
# File 'lib/v20180525/models.rb', line 6290 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6290 6291 6292 |
# File 'lib/v20180525/models.rb', line 6290 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 |
# File 'lib/v20180525/models.rb', line 6300 def deserialize(params) unless params['ReleaseSet'].nil? @ReleaseSet = [] params['ReleaseSet'].each do |i| pendingrelease_tmp = PendingRelease.new pendingrelease_tmp.deserialize(i) @ReleaseSet << pendingrelease_tmp end end @Limit = params['Limit'] @Offset = params['Offset'] @Total = params['Total'] @RequestId = params['RequestId'] end |