Class: Google::Apis::ComputeBeta::InstanceGroupManagerPendingActionsSummary
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::InstanceGroupManagerPendingActionsSummary
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/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
      8777 8778 8779  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8777 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
      8757 8758 8759  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8757 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
      8763 8764 8765  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8763 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
      8769 8770 8771  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8769 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
      8775 8776 8777  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8775 def restarting @restarting end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8782 8783 8784 8785 8786 8787  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8782 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  |