Class: TencentCloud::Emr::V20190103::DescribeClusterNodesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeClusterNodesResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeClusterNodes返回参数结构体
Instance Attribute Summary collapse
-
#HardwareResourceTypeList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#NodeList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TagKeys ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCnt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcnt = nil, nodelist = nil, tagkeys = nil, hardwareresourcetypelist = nil, requestid = nil) ⇒ DescribeClusterNodesResponse
constructor
A new instance of DescribeClusterNodesResponse.
Constructor Details
#initialize(totalcnt = nil, nodelist = nil, tagkeys = nil, hardwareresourcetypelist = nil, requestid = nil) ⇒ DescribeClusterNodesResponse
Returns a new instance of DescribeClusterNodesResponse.
3257 3258 3259 3260 3261 3262 3263 |
# File 'lib/v20190103/models.rb', line 3257 def initialize(totalcnt=nil, nodelist=nil, tagkeys=nil, hardwareresourcetypelist=nil, requestid=nil) @TotalCnt = totalcnt @NodeList = nodelist @TagKeys = tagkeys @HardwareResourceTypeList = hardwareresourcetypelist @RequestId = requestid end |
Instance Attribute Details
#HardwareResourceTypeList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3255 3256 3257 |
# File 'lib/v20190103/models.rb', line 3255 def HardwareResourceTypeList @HardwareResourceTypeList end |
#NodeList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3255 3256 3257 |
# File 'lib/v20190103/models.rb', line 3255 def NodeList @NodeList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3255 3256 3257 |
# File 'lib/v20190103/models.rb', line 3255 def RequestId @RequestId end |
#TagKeys ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3255 3256 3257 |
# File 'lib/v20190103/models.rb', line 3255 def TagKeys @TagKeys end |
#TotalCnt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3255 3256 3257 |
# File 'lib/v20190103/models.rb', line 3255 def TotalCnt @TotalCnt end |
Instance Method Details
#deserialize(params) ⇒ Object
3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 |
# File 'lib/v20190103/models.rb', line 3265 def deserialize(params) @TotalCnt = params['TotalCnt'] unless params['NodeList'].nil? @NodeList = [] params['NodeList'].each do |i| nodehardwareinfo_tmp = NodeHardwareInfo.new nodehardwareinfo_tmp.deserialize(i) @NodeList << nodehardwareinfo_tmp end end @TagKeys = params['TagKeys'] @HardwareResourceTypeList = params['HardwareResourceTypeList'] @RequestId = params['RequestId'] end |