Class: TencentCloud::Emr::V20190103::DescribeGlobalConfigResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeGlobalConfigResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeGlobalConfig返回参数结构体
Instance Attribute Summary collapse
-
#ActiveScheduler ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#CapacityGlobalConfig ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#EnableResourceSchedule ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#FairGlobalConfig ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Scheduler ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(enableresourceschedule = nil, activescheduler = nil, capacityglobalconfig = nil, fairglobalconfig = nil, scheduler = nil, requestid = nil) ⇒ DescribeGlobalConfigResponse
constructor
A new instance of DescribeGlobalConfigResponse.
Constructor Details
#initialize(enableresourceschedule = nil, activescheduler = nil, capacityglobalconfig = nil, fairglobalconfig = nil, scheduler = nil, requestid = nil) ⇒ DescribeGlobalConfigResponse
Returns a new instance of DescribeGlobalConfigResponse.
3610 3611 3612 3613 3614 3615 3616 3617 |
# File 'lib/v20190103/models.rb', line 3610 def initialize(enableresourceschedule=nil, activescheduler=nil, capacityglobalconfig=nil, fairglobalconfig=nil, scheduler=nil, requestid=nil) @EnableResourceSchedule = enableresourceschedule @ActiveScheduler = activescheduler @CapacityGlobalConfig = capacityglobalconfig @FairGlobalConfig = fairglobalconfig @Scheduler = scheduler @RequestId = requestid end |
Instance Attribute Details
#ActiveScheduler ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3608 3609 3610 |
# File 'lib/v20190103/models.rb', line 3608 def ActiveScheduler @ActiveScheduler end |
#CapacityGlobalConfig ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3608 3609 3610 |
# File 'lib/v20190103/models.rb', line 3608 def CapacityGlobalConfig @CapacityGlobalConfig end |
#EnableResourceSchedule ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3608 3609 3610 |
# File 'lib/v20190103/models.rb', line 3608 def EnableResourceSchedule @EnableResourceSchedule end |
#FairGlobalConfig ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3608 3609 3610 |
# File 'lib/v20190103/models.rb', line 3608 def FairGlobalConfig @FairGlobalConfig end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3608 3609 3610 |
# File 'lib/v20190103/models.rb', line 3608 def RequestId @RequestId end |
#Scheduler ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3608 3609 3610 |
# File 'lib/v20190103/models.rb', line 3608 def Scheduler @Scheduler end |
Instance Method Details
#deserialize(params) ⇒ Object
3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 |
# File 'lib/v20190103/models.rb', line 3619 def deserialize(params) @EnableResourceSchedule = params['EnableResourceSchedule'] @ActiveScheduler = params['ActiveScheduler'] unless params['CapacityGlobalConfig'].nil? @CapacityGlobalConfig = CapacityGlobalConfig.new @CapacityGlobalConfig.deserialize(params['CapacityGlobalConfig']) end unless params['FairGlobalConfig'].nil? @FairGlobalConfig = FairGlobalConfig.new @FairGlobalConfig.deserialize(params['FairGlobalConfig']) end @Scheduler = params['Scheduler'] @RequestId = params['RequestId'] end |