Class: Google::Apis::ComputeAlpha::RegionInstanceGroupManagersSuspendInstancesRequest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::RegionInstanceGroupManagersSuspendInstancesRequest
- 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
-
#force_suspend ⇒ Boolean
(also: #force_suspend?)
If this flag is set to true, the Instance Group Manager will proceed to suspend the instances, skipping initialization on them.
-
#instances ⇒ Array<String>
The URLs of one or more instances to suspend.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegionInstanceGroupManagersSuspendInstancesRequest
constructor
A new instance of RegionInstanceGroupManagersSuspendInstancesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RegionInstanceGroupManagersSuspendInstancesRequest
Returns a new instance of RegionInstanceGroupManagersSuspendInstancesRequest.
35398 35399 35400 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35398 def initialize(**args) update!(**args) end |
Instance Attribute Details
#force_suspend ⇒ Boolean 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
35389 35390 35391 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35389 def force_suspend @force_suspend end |
#instances ⇒ Array<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
35396 35397 35398 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35396 def instances @instances end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
35403 35404 35405 35406 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 35403 def update!(**args) @force_suspend = args[:force_suspend] if args.key?(:force_suspend) @instances = args[:instances] if args.key?(:instances) end |