Class: Google::Apis::ComputeAlpha::InstanceGroupManagerPendingActionsSummary
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::InstanceGroupManagerPendingActionsSummary
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #creating  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The number of instances in the managed instance group that are pending to be created. 
- 
  
    
      #deleting  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The number of instances in the managed instance group that are pending to be deleted. 
- 
  
    
      #recreating  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The number of instances in the managed instance group that are pending to be recreated. 
- 
  
    
      #restarting  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The number of instances in the managed instance group that are pending to be restarted. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstanceGroupManagerPendingActionsSummary 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InstanceGroupManagerPendingActionsSummary. 
- 
  
    
      #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) ⇒ InstanceGroupManagerPendingActionsSummary
Returns a new instance of InstanceGroupManagerPendingActionsSummary
| 10201 10202 10203 | # File 'generated/google/apis/compute_alpha/classes.rb', line 10201 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#creating ⇒ Fixnum
[Output Only] The number of instances in the managed instance group that are
pending to be created.
Corresponds to the JSON property creating
| 10181 10182 10183 | # File 'generated/google/apis/compute_alpha/classes.rb', line 10181 def creating @creating end | 
#deleting ⇒ Fixnum
[Output Only] The number of instances in the managed instance group that are
pending to be deleted.
Corresponds to the JSON property deleting
| 10187 10188 10189 | # File 'generated/google/apis/compute_alpha/classes.rb', line 10187 def deleting @deleting end | 
#recreating ⇒ Fixnum
[Output Only] The number of instances in the managed instance group that are
pending to be recreated.
Corresponds to the JSON property recreating
| 10193 10194 10195 | # File 'generated/google/apis/compute_alpha/classes.rb', line 10193 def recreating @recreating end | 
#restarting ⇒ Fixnum
[Output Only] The number of instances in the managed instance group that are
pending to be restarted.
Corresponds to the JSON property restarting
| 10199 10200 10201 | # File 'generated/google/apis/compute_alpha/classes.rb', line 10199 def restarting @restarting end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 10206 10207 10208 10209 10210 10211 | # File 'generated/google/apis/compute_alpha/classes.rb', line 10206 def update!(**args) @creating = args[:creating] if args.key?(:creating) @deleting = args[:deleting] if args.key?(:deleting) @recreating = args[:recreating] if args.key?(:recreating) @restarting = args[:restarting] if args.key?(:restarting) end |