Class: Google::Apis::DataprocV1::ManagedGroupConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::ManagedGroupConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/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_group_manager_uri ⇒ 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.
Constructor Details
#initialize(**args) ⇒ ManagedGroupConfig
Returns a new instance of ManagedGroupConfig.
3636 3637 3638 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3636 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
3622 3623 3624 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3622 def instance_group_manager_name @instance_group_manager_name end |
#instance_group_manager_uri ⇒ String
Output only. The partial URI to the instance group manager for this group. E.g.
projects/my-project/regions/us-central1/instanceGroupManagers/my-igm.
Corresponds to the JSON property instanceGroupManagerUri
3628 3629 3630 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3628 def instance_group_manager_uri @instance_group_manager_uri 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
3634 3635 3636 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3634 def instance_template_name @instance_template_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3641 3642 3643 3644 3645 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3641 def update!(**args) @instance_group_manager_name = args[:instance_group_manager_name] if args.key?(:instance_group_manager_name) @instance_group_manager_uri = args[:instance_group_manager_uri] if args.key?(:instance_group_manager_uri) @instance_template_name = args[:instance_template_name] if args.key?(:instance_template_name) end |