Class: TencentCloud::Emr::V20190103::DescribeServiceNodeInfosResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeServiceNodeInfosResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeServiceNodeInfos返回参数结构体
Instance Attribute Summary collapse
-
#AliasInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ServiceNodeList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#SupportNodeFlagFilterList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCnt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcnt = nil, servicenodelist = nil, aliasinfo = nil, supportnodeflagfilterlist = nil, requestid = nil) ⇒ DescribeServiceNodeInfosResponse
constructor
A new instance of DescribeServiceNodeInfosResponse.
Constructor Details
#initialize(totalcnt = nil, servicenodelist = nil, aliasinfo = nil, supportnodeflagfilterlist = nil, requestid = nil) ⇒ DescribeServiceNodeInfosResponse
Returns a new instance of DescribeServiceNodeInfosResponse.
5497 5498 5499 5500 5501 5502 5503 |
# File 'lib/v20190103/models.rb', line 5497 def initialize(totalcnt=nil, servicenodelist=nil, aliasinfo=nil, supportnodeflagfilterlist=nil, requestid=nil) @TotalCnt = totalcnt @ServiceNodeList = servicenodelist @AliasInfo = aliasinfo @SupportNodeFlagFilterList = supportnodeflagfilterlist @RequestId = requestid end |
Instance Attribute Details
#AliasInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5495 5496 5497 |
# File 'lib/v20190103/models.rb', line 5495 def AliasInfo @AliasInfo end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5495 5496 5497 |
# File 'lib/v20190103/models.rb', line 5495 def RequestId @RequestId end |
#ServiceNodeList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5495 5496 5497 |
# File 'lib/v20190103/models.rb', line 5495 def ServiceNodeList @ServiceNodeList end |
#SupportNodeFlagFilterList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5495 5496 5497 |
# File 'lib/v20190103/models.rb', line 5495 def SupportNodeFlagFilterList @SupportNodeFlagFilterList end |
#TotalCnt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5495 5496 5497 |
# File 'lib/v20190103/models.rb', line 5495 def TotalCnt @TotalCnt end |
Instance Method Details
#deserialize(params) ⇒ Object
5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 |
# File 'lib/v20190103/models.rb', line 5505 def deserialize(params) @TotalCnt = params['TotalCnt'] unless params['ServiceNodeList'].nil? @ServiceNodeList = [] params['ServiceNodeList'].each do |i| servicenodedetailinfo_tmp = ServiceNodeDetailInfo.new servicenodedetailinfo_tmp.deserialize(i) @ServiceNodeList << servicenodedetailinfo_tmp end end @AliasInfo = params['AliasInfo'] @SupportNodeFlagFilterList = params['SupportNodeFlagFilterList'] @RequestId = params['RequestId'] end |