Class: Google::Apis::ComputeAlpha::ConnectionDraining
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ConnectionDraining
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Message containing connection draining configuration.
Instance Attribute Summary collapse
-
#draining_timeout_sec ⇒ Fixnum
Configures a duration timeout for existing requests on a removed backend instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConnectionDraining
constructor
A new instance of ConnectionDraining.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConnectionDraining
Returns a new instance of ConnectionDraining.
6207 6208 6209 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6207 def initialize(**args) update!(**args) end |
Instance Attribute Details
#draining_timeout_sec ⇒ Fixnum
Configures a duration timeout for existing requests on a removed backend
instance. For supported load balancers and protocols, as described in Enabling
connection draining.
Corresponds to the JSON property drainingTimeoutSec
6205 6206 6207 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6205 def draining_timeout_sec @draining_timeout_sec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6212 6213 6214 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6212 def update!(**args) @draining_timeout_sec = args[:draining_timeout_sec] if args.key?(:draining_timeout_sec) end |