class Google::Apis::ComputeV1::InstanceGroupManagerStatus
Attributes
- Output Only
-
The URL of the
Autoscaler
that targets this instance group
manager. Corresponds to the JSON property `autoscaler` @return [String]
- 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` @return [Boolean]
- 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` @return [Boolean]
- Output Only
-
Stateful status of the given
Instance
Group Manager.
Corresponds to the JSON property `stateful` @return [Google::Apis::ComputeV1::InstanceGroupManagerStatusStateful]
- Output Only
-
A status of consistency of Instances' versions with their target
version specified by version field on Instance
Group Manager. Corresponds to the JSON property `versionTarget` @return [Google::Apis::ComputeV1::InstanceGroupManagerStatusVersionTarget]
Public Class Methods
# File lib/google/apis/compute_v1/classes.rb, line 13028 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 13033 def update!(**args) @autoscaler = args[:autoscaler] if args.key?(:autoscaler) @is_stable = args[:is_stable] if args.key?(:is_stable) @stateful = args[:stateful] if args.key?(:stateful) @version_target = args[:version_target] if args.key?(:version_target) end