Class: Google::Apis::ContainerV1::HttpLoadBalancing
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContainerV1::HttpLoadBalancing
 
- Defined in:
- generated/google/apis/container_v1/classes.rb,
 generated/google/apis/container_v1/representations.rb,
 generated/google/apis/container_v1/representations.rb
Overview
Configuration options for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster.
Instance Attribute Summary collapse
- 
  
    
      #disabled  ⇒ Boolean 
    
    
      (also: #disabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether the HTTP Load Balancing controller is enabled in the cluster. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HttpLoadBalancing 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of HttpLoadBalancing. 
- 
  
    
      #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) ⇒ HttpLoadBalancing
Returns a new instance of HttpLoadBalancing
| 847 848 849 | # File 'generated/google/apis/container_v1/classes.rb', line 847 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#disabled ⇒ Boolean Also known as: disabled?
Whether the HTTP Load Balancing controller is enabled in the cluster.
When enabled, it runs a small pod in the cluster that manages the load
balancers.
Corresponds to the JSON property disabled
| 844 845 846 | # File 'generated/google/apis/container_v1/classes.rb', line 844 def disabled @disabled end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 852 853 854 | # File 'generated/google/apis/container_v1/classes.rb', line 852 def update!(**args) @disabled = args[:disabled] if args.key?(:disabled) end |