Class: TencentCloud::Emr::V20190103::DescribeNodeDataDisksResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeNodeDataDisksResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeNodeDataDisks返回参数结构体
Instance Attribute Summary collapse
-
#CBSList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#MaxSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#MaxThroughputPerformance ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, cbslist = nil, maxsize = nil, maxthroughputperformance = nil, requestid = nil) ⇒ DescribeNodeDataDisksResponse
constructor
A new instance of DescribeNodeDataDisksResponse.
Constructor Details
#initialize(totalcount = nil, cbslist = nil, maxsize = nil, maxthroughputperformance = nil, requestid = nil) ⇒ DescribeNodeDataDisksResponse
Returns a new instance of DescribeNodeDataDisksResponse.
4751 4752 4753 4754 4755 4756 4757 |
# File 'lib/v20190103/models.rb', line 4751 def initialize(totalcount=nil, cbslist=nil, maxsize=nil, maxthroughputperformance=nil, requestid=nil) @TotalCount = totalcount @CBSList = cbslist @MaxSize = maxsize @MaxThroughputPerformance = maxthroughputperformance @RequestId = requestid end |
Instance Attribute Details
#CBSList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4749 4750 4751 |
# File 'lib/v20190103/models.rb', line 4749 def CBSList @CBSList end |
#MaxSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4749 4750 4751 |
# File 'lib/v20190103/models.rb', line 4749 def MaxSize @MaxSize end |
#MaxThroughputPerformance ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4749 4750 4751 |
# File 'lib/v20190103/models.rb', line 4749 def MaxThroughputPerformance @MaxThroughputPerformance end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4749 4750 4751 |
# File 'lib/v20190103/models.rb', line 4749 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4749 4750 4751 |
# File 'lib/v20190103/models.rb', line 4749 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 |
# File 'lib/v20190103/models.rb', line 4759 def deserialize(params) @TotalCount = params['TotalCount'] unless params['CBSList'].nil? @CBSList = [] params['CBSList'].each do |i| cbsinstance_tmp = CBSInstance.new cbsinstance_tmp.deserialize(i) @CBSList << cbsinstance_tmp end end @MaxSize = params['MaxSize'] @MaxThroughputPerformance = params['MaxThroughputPerformance'] @RequestId = params['RequestId'] end |