Class: Google::Apis::ComputeAlpha::HealthChecksScopedList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::HealthChecksScopedList
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #health_checks  ⇒ Array<Google::Apis::ComputeAlpha::HealthCheck> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of HealthChecks contained in this scope. 
- 
  
    
      #warning  ⇒ Google::Apis::ComputeAlpha::HealthChecksScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Informational warning which replaces the list of backend services when the list is empty. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HealthChecksScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of HealthChecksScopedList. 
- 
  
    
      #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) ⇒ HealthChecksScopedList
Returns a new instance of HealthChecksScopedList
| 6973 6974 6975 | # File 'generated/google/apis/compute_alpha/classes.rb', line 6973 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#health_checks ⇒ Array<Google::Apis::ComputeAlpha::HealthCheck>
A list of HealthChecks contained in this scope.
Corresponds to the JSON property healthChecks
| 6965 6966 6967 | # File 'generated/google/apis/compute_alpha/classes.rb', line 6965 def health_checks @health_checks end | 
#warning ⇒ Google::Apis::ComputeAlpha::HealthChecksScopedList::Warning
Informational warning which replaces the list of backend services when the
list is empty.
Corresponds to the JSON property warning
| 6971 6972 6973 | # File 'generated/google/apis/compute_alpha/classes.rb', line 6971 def warning @warning end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 6978 6979 6980 6981 | # File 'generated/google/apis/compute_alpha/classes.rb', line 6978 def update!(**args) @health_checks = args[:health_checks] if args.key?(:health_checks) @warning = args[:warning] if args.key?(:warning) end |