Class: Google::Apis::ComputeV1::ConnectionDraining
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::ConnectionDraining
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Overview
Message containing connection draining configuration.
Instance Attribute Summary collapse
- 
  
    
      #draining_timeout_sec  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Time for which instance will be drained (not accept new connections, but still work to finish started). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConnectionDraining 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ConnectionDraining. 
- 
  
    
      #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) ⇒ ConnectionDraining
Returns a new instance of ConnectionDraining
| 3193 3194 3195 | # File 'generated/google/apis/compute_v1/classes.rb', line 3193 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#draining_timeout_sec ⇒ Fixnum
Time for which instance will be drained (not accept new connections, but still
work to finish started).
Corresponds to the JSON property drainingTimeoutSec
| 3191 3192 3193 | # File 'generated/google/apis/compute_v1/classes.rb', line 3191 def draining_timeout_sec @draining_timeout_sec end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3198 3199 3200 | # File 'generated/google/apis/compute_v1/classes.rb', line 3198 def update!(**args) @draining_timeout_sec = args[:draining_timeout_sec] if args.key?(:draining_timeout_sec) end |