Class: Google::Apis::ComputeV1::AutoscalersScopedList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::AutoscalersScopedList
 
 
- Defined in:
 - generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb 
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #autoscalers  ⇒ Array<Google::Apis::ComputeV1::Autoscaler> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] A list of autoscalers contained in this scope.
 - 
  
    
      #warning  ⇒ Google::Apis::ComputeV1::AutoscalersScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Informational warning which replaces the list of autoscalers when the list is empty.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AutoscalersScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AutoscalersScopedList.
 - 
  
    
      #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) ⇒ AutoscalersScopedList
Returns a new instance of AutoscalersScopedList
      1587 1588 1589  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 1587 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#autoscalers ⇒ Array<Google::Apis::ComputeV1::Autoscaler>
[Output Only] A list of autoscalers contained in this scope.
Corresponds to the JSON property autoscalers
      1579 1580 1581  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 1579 def autoscalers @autoscalers end  | 
  
#warning ⇒ Google::Apis::ComputeV1::AutoscalersScopedList::Warning
[Output Only] Informational warning which replaces the list of autoscalers
when the list is empty.
Corresponds to the JSON property warning
      1585 1586 1587  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 1585 def warning @warning end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1592 1593 1594 1595  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 1592 def update!(**args) @autoscalers = args[:autoscalers] if args.key?(:autoscalers) @warning = args[:warning] if args.key?(:warning) end  |