Class: Google::Apis::ComputeBeta::ConnectionDraining
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ConnectionDraining
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/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
3543 3544 3545 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3543 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
3541 3542 3543 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3541 def draining_timeout_sec @draining_timeout_sec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3548 3549 3550 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3548 def update!(**args) @draining_timeout_sec = args[:draining_timeout_sec] if args.key?(:draining_timeout_sec) end |