Class: Google::Apis::ComputeAlpha::RegionInstanceGroupManagersSuspendInstancesRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RegionInstanceGroupManagersSuspendInstancesRequest

Returns a new instance of RegionInstanceGroupManagersSuspendInstancesRequest.



33998
33999
34000
# File 'lib/google/apis/compute_alpha/classes.rb', line 33998

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

Instance Attribute Details

#force_suspendBoolean Also known as: force_suspend?

If this flag is set to true, the Instance Group Manager will proceed to suspend the instances, skipping initialization on them. Corresponds to the JSON property forceSuspend

Returns:

  • (Boolean)


33989
33990
33991
# File 'lib/google/apis/compute_alpha/classes.rb', line 33989

def force_suspend
  @force_suspend
end

#instancesArray<String>

The URLs of one or more instances to suspend. This can be a full URL or a partial URL, such as zones/[ZONE]/instances/[INSTANCE_NAME]. Corresponds to the JSON property instances

Returns:

  • (Array<String>)


33996
33997
33998
# File 'lib/google/apis/compute_alpha/classes.rb', line 33996

def instances
  @instances
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



34003
34004
34005
34006
# File 'lib/google/apis/compute_alpha/classes.rb', line 34003

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