class Google::Apis::ComputeBeta::InstanceGroupManagerActionsSummary
Attributes
- 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]
- 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]
- Output Only
-
The number of instances that the managed instance group will
attempt to create. The group attempts to create each instance only once. If the group fails to create one of these instances, it decreases the group's target_size value accordingly. Corresponds to the JSON property `creatingWithoutRetries` @return [Fixnum]
- 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]
- 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]
- 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]
- 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]
- 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
# File generated/google/apis/compute_beta/classes.rb, line 3769 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/compute_beta/classes.rb, line 3774 def update!(**args) @abandoning = args[:abandoning] if args.key?(:abandoning) @creating = args[:creating] if args.key?(:creating) @creating_without_retries = args[:creating_without_retries] if args.key?(:creating_without_retries) @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