Class: TencentCloud::Cvm::V20170312::CreateHpcClusterResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cvm::V20170312::CreateHpcClusterResponse
- Defined in:
- lib/v20170312/models.rb
Overview
CreateHpcCluster返回参数结构体
Instance Attribute Summary collapse
-
#HpcClusterSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(hpcclusterset = nil, requestid = nil) ⇒ CreateHpcClusterResponse
constructor
A new instance of CreateHpcClusterResponse.
Constructor Details
#initialize(hpcclusterset = nil, requestid = nil) ⇒ CreateHpcClusterResponse
Returns a new instance of CreateHpcClusterResponse.
706 707 708 709 |
# File 'lib/v20170312/models.rb', line 706 def initialize(hpcclusterset=nil, requestid=nil) @HpcClusterSet = hpcclusterset @RequestId = requestid end |
Instance Attribute Details
#HpcClusterSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
704 705 706 |
# File 'lib/v20170312/models.rb', line 704 def HpcClusterSet @HpcClusterSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
704 705 706 |
# File 'lib/v20170312/models.rb', line 704 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
711 712 713 714 715 716 717 718 719 720 721 |
# File 'lib/v20170312/models.rb', line 711 def deserialize(params) unless params['HpcClusterSet'].nil? @HpcClusterSet = [] params['HpcClusterSet'].each do |i| hpcclusterinfo_tmp = HpcClusterInfo.new hpcclusterinfo_tmp.deserialize(i) @HpcClusterSet << hpcclusterinfo_tmp end end @RequestId = params['RequestId'] end |