Class: Google::Apis::DataprocV1beta2::ManagedGroupConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataprocV1beta2::ManagedGroupConfig
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/representations.rb 
Overview
Specifies the resources used to actively manage an instance group.
Instance Attribute Summary collapse
- 
  
    
      #instance_group_manager_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #instance_template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ManagedGroupConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ManagedGroupConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManagedGroupConfig
Returns a new instance of ManagedGroupConfig
      1483 1484 1485  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1483 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instance_group_manager_name ⇒ String
Output only. The name of the Instance Group Manager for this group.
Corresponds to the JSON property instanceGroupManagerName
      1475 1476 1477  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1475 def instance_group_manager_name @instance_group_manager_name end  | 
  
#instance_template_name ⇒ String
Output only. The name of the Instance Template used for the Managed Instance
Group.
Corresponds to the JSON property instanceTemplateName
      1481 1482 1483  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1481 def instance_template_name @instance_template_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1488 1489 1490 1491  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1488 def update!(**args) @instance_group_manager_name = args[:instance_group_manager_name] if args.key?(:instance_group_manager_name) @instance_template_name = args[:instance_template_name] if args.key?(:instance_template_name) end  |