class Google::Apis::ComputeV1::InstanceGroupManagerActionsSummary

Attributes

abandoning[RW]
Output Only

The total number of instances in the managed instance group that

are scheduled to be abandoned. Abandoning an instance removes it from the managed instance group without deleting it. Corresponds to the JSON property `abandoning` @return [Fixnum]

creating[RW]
Output Only

The number of instances in the managed instance group that are

scheduled to be created or are currently being created. If the group fails to create one of these instances, it tries again until it creates the instance successfully. Corresponds to the JSON property `creating` @return [Fixnum]

deleting[RW]
Output Only

The number of instances in the managed instance group that are

scheduled to be deleted or are currently being deleted. Corresponds to the JSON property `deleting` @return [Fixnum]

none[RW]
Output Only

The number of instances in the managed instance group that are

running and have no scheduled actions. Corresponds to the JSON property `none` @return [Fixnum]

recreating[RW]
Output Only

The number of instances in the managed instance group that are

scheduled to be recreated or are currently being being recreated. Recreating an instance deletes the existing root persistent disk and creates a new disk from the image that is defined in the instance template. Corresponds to the JSON property `recreating` @return [Fixnum]

refreshing[RW]
Output Only

The number of instances in the managed instance group that are

being reconfigured with properties that do not require a restart or a recreate action. For example, setting or removing target pools for the instance. Corresponds to the JSON property `refreshing` @return [Fixnum]

restarting[RW]
Output Only

The number of instances in the managed instance group that are

scheduled to be restarted or are currently being restarted. Corresponds to the JSON property `restarting` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/compute_v1/classes.rb, line 3570
def update!(**args)
  @abandoning = args[:abandoning] if args.key?(:abandoning)
  @creating = args[:creating] if args.key?(:creating)
  @deleting = args[:deleting] if args.key?(:deleting)
  @none = args[:none] if args.key?(:none)
  @recreating = args[:recreating] if args.key?(:recreating)
  @refreshing = args[:refreshing] if args.key?(:refreshing)
  @restarting = args[:restarting] if args.key?(:restarting)
end