Class: Google::Apis::ComputeBeta::AutoscalersScopedList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeBeta::AutoscalersScopedList
 
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
 generated/google/apis/compute_beta/representations.rb,
 generated/google/apis/compute_beta/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #autoscalers  ⇒ Array<Google::Apis::ComputeBeta::Autoscaler> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] A list of autoscalers contained in this scope. 
- 
  
    
      #warning  ⇒ Google::Apis::ComputeBeta::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
| 1704 1705 1706 | # File 'generated/google/apis/compute_beta/classes.rb', line 1704 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#autoscalers ⇒ Array<Google::Apis::ComputeBeta::Autoscaler>
[Output Only] A list of autoscalers contained in this scope.
Corresponds to the JSON property autoscalers
| 1696 1697 1698 | # File 'generated/google/apis/compute_beta/classes.rb', line 1696 def autoscalers @autoscalers end | 
#warning ⇒ Google::Apis::ComputeBeta::AutoscalersScopedList::Warning
[Output Only] Informational warning which replaces the list of autoscalers
when the list is empty.
Corresponds to the JSON property warning
| 1702 1703 1704 | # File 'generated/google/apis/compute_beta/classes.rb', line 1702 def warning @warning end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1709 1710 1711 1712 | # File 'generated/google/apis/compute_beta/classes.rb', line 1709 def update!(**args) @autoscalers = args[:autoscalers] if args.key?(:autoscalers) @warning = args[:warning] if args.key?(:warning) end |