Class: Google::Apis::ComputeV1::InstanceGroupManagerStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::InstanceGroupManagerStatus
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#is_stable ⇒ Boolean
(also: #is_stable?)
[Output Only] A bit indicating whether the managed instance group is in a stable state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerStatus
constructor
A new instance of InstanceGroupManagerStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerStatus
Returns a new instance of InstanceGroupManagerStatus
8387 8388 8389 |
# File 'generated/google/apis/compute_v1/classes.rb', line 8387 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_stable ⇒ Boolean Also known as: is_stable?
[Output Only] A bit indicating whether the managed instance group is in a
stable state. A stable state means that: none of the instances in the managed
instance group is currently undergoing any type of change (for example,
creation, restart, or deletion); no future changes are scheduled for instances
in the managed instance group; and the managed instance group itself is not
being modified.
Corresponds to the JSON property isStable
8384 8385 8386 |
# File 'generated/google/apis/compute_v1/classes.rb', line 8384 def is_stable @is_stable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8392 8393 8394 |
# File 'generated/google/apis/compute_v1/classes.rb', line 8392 def update!(**args) @is_stable = args[:is_stable] if args.key?(:is_stable) end |