class Google::Apis::ComputeV1::InstanceGroupManagerStatus

Attributes

autoscaler[RW]
Output Only

The URL of the Autoscaler that targets this instance group

manager. Corresponds to the JSON property `autoscaler` @return [String]

is_stable[RW]
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]

is_stable?[RW]
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]

stateful[RW]
Output Only

Stateful status of the given Instance Group Manager.

Corresponds to the JSON property `stateful` @return [Google::Apis::ComputeV1::InstanceGroupManagerStatusStateful]

version_target[RW]
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

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 13846
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 13851
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