Class: Google::Apis::ComputeAlpha::InstanceGroupManagersDeletePerInstanceConfigsReq

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb

Overview

InstanceGroupManagers.deletePerInstanceConfigs

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InstanceGroupManagersDeletePerInstanceConfigsReq

Returns a new instance of InstanceGroupManagersDeletePerInstanceConfigsReq



12672
12673
12674
# File 'generated/google/apis/compute_alpha/classes.rb', line 12672

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#instancesArray<String>

The list of instances for which we want to delete per-instance configs on this managed instance group. Corresponds to the JSON property instances

Returns:

  • (Array<String>)


12664
12665
12666
# File 'generated/google/apis/compute_alpha/classes.rb', line 12664

def instances
  @instances
end

#namesArray<String>

The list of instance names for which we want to delete per-instance configs on this managed instance group. Corresponds to the JSON property names

Returns:

  • (Array<String>)


12670
12671
12672
# File 'generated/google/apis/compute_alpha/classes.rb', line 12670

def names
  @names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12677
12678
12679
12680
# File 'generated/google/apis/compute_alpha/classes.rb', line 12677

def update!(**args)
  @instances = args[:instances] if args.key?(:instances)
  @names = args[:names] if args.key?(:names)
end