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.
6255 6256 6257 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6255 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
6253 6254 6255 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6253 def draining_timeout_sec @draining_timeout_sec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6260 6261 6262 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6260 def update!(**args) @draining_timeout_sec = args[:draining_timeout_sec] if args.key?(:draining_timeout_sec) end |