Class: TencentCloud::Emr::V20190103::GroupGlobalConfs
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::GroupGlobalConfs
- Defined in:
- lib/v20190103/models.rb
Overview
集群所有伸缩组全局参数信息
Instance Attribute Summary collapse
-
#CurrentNodes ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#CurrentPostPaidNodes ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#CurrentSpotPaidNodes ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#GroupGlobalConf ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(groupglobalconf = nil, currentnodes = nil, currentpostpaidnodes = nil, currentspotpaidnodes = nil) ⇒ GroupGlobalConfs
constructor
A new instance of GroupGlobalConfs.
Constructor Details
#initialize(groupglobalconf = nil, currentnodes = nil, currentpostpaidnodes = nil, currentspotpaidnodes = nil) ⇒ GroupGlobalConfs
Returns a new instance of GroupGlobalConfs.
6978 6979 6980 6981 6982 6983 |
# File 'lib/v20190103/models.rb', line 6978 def initialize(groupglobalconf=nil, currentnodes=nil, currentpostpaidnodes=nil, currentspotpaidnodes=nil) @GroupGlobalConf = groupglobalconf @CurrentNodes = currentnodes @CurrentPostPaidNodes = currentpostpaidnodes @CurrentSpotPaidNodes = currentspotpaidnodes end |
Instance Attribute Details
#CurrentNodes ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6976 6977 6978 |
# File 'lib/v20190103/models.rb', line 6976 def CurrentNodes @CurrentNodes end |
#CurrentPostPaidNodes ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6976 6977 6978 |
# File 'lib/v20190103/models.rb', line 6976 def CurrentPostPaidNodes @CurrentPostPaidNodes end |
#CurrentSpotPaidNodes ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6976 6977 6978 |
# File 'lib/v20190103/models.rb', line 6976 def CurrentSpotPaidNodes @CurrentSpotPaidNodes end |
#GroupGlobalConf ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6976 6977 6978 |
# File 'lib/v20190103/models.rb', line 6976 def GroupGlobalConf @GroupGlobalConf end |
Instance Method Details
#deserialize(params) ⇒ Object
6985 6986 6987 6988 6989 6990 6991 6992 6993 |
# File 'lib/v20190103/models.rb', line 6985 def deserialize(params) unless params['GroupGlobalConf'].nil? @GroupGlobalConf = AutoScaleResourceConf.new @GroupGlobalConf.deserialize(params['GroupGlobalConf']) end @CurrentNodes = params['CurrentNodes'] @CurrentPostPaidNodes = params['CurrentPostPaidNodes'] @CurrentSpotPaidNodes = params['CurrentSpotPaidNodes'] end |