Class: Google::Apis::ComputeBeta::InstanceGroupManagerStatus
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::InstanceGroupManagerStatus
 
 
- 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
- 
  
    
      #is_stable  ⇒ Boolean 
    
    
      (also: #is_stable?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] A bit indicating whether the managed instance group is in a stable state.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstanceGroupManagerStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InstanceGroupManagerStatus.
 - 
  
    
      #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) ⇒ InstanceGroupManagerStatus
Returns a new instance of InstanceGroupManagerStatus
      8805 8806 8807  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8805 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#is_stable ⇒ Boolean Also known as: is_stable?
[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
      8802 8803 8804  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8802 def is_stable @is_stable end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8810 8811 8812  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 8810 def update!(**args) @is_stable = args[:is_stable] if args.key?(:is_stable) end  |