class Google::Apis::DataprocV1::ManagedGroupConfig

Specifies the resources used to actively manage an instance group.

Attributes

instance_group_manager_name[RW]

Output only. The name of the Instance Group Manager for this group. Corresponds to the JSON property `instanceGroupManagerName` @return [String]

instance_template_name[RW]

Output only. The name of the Instance Template used for the Managed Instance Group. Corresponds to the JSON property `instanceTemplateName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataproc_v1/classes.rb, line 2316
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataproc_v1/classes.rb, line 2321
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