Class: Google::Apis::ComputeBeta::BackendServiceFailoverPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::BackendServiceFailoverPolicy
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#disable_connection_drain_on_failover ⇒ Boolean
(also: #disable_connection_drain_on_failover?)
This can be set to true only if the protocol is TCP.
-
#drop_traffic_if_unhealthy ⇒ Boolean
(also: #drop_traffic_if_unhealthy?)
Applicable only to Failover for Internal TCP/UDP Load Balancing.
-
#failover_ratio ⇒ Float
Applicable only to Failover for Internal TCP/UDP Load Balancing.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackendServiceFailoverPolicy
constructor
A new instance of BackendServiceFailoverPolicy.
-
#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) ⇒ BackendServiceFailoverPolicy
Returns a new instance of BackendServiceFailoverPolicy
3039 3040 3041 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3039 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disable_connection_drain_on_failover ⇒ Boolean Also known as: disable_connection_drain_on_failover?
This can be set to true only if the protocol is TCP.
The default is false.
Corresponds to the JSON property disableConnectionDrainOnFailover
3016 3017 3018 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3016 def disable_connection_drain_on_failover @disable_connection_drain_on_failover end |
#drop_traffic_if_unhealthy ⇒ Boolean Also known as: drop_traffic_if_unhealthy?
Applicable only to Failover for Internal TCP/UDP Load Balancing. If set to
true, connections to the load balancer are dropped when all primary and all
backup backend VMs are unhealthy. If set to false, connections are distributed
among all primary VMs when all primary and all backup backend VMs are
unhealthy.
The default is false.
Corresponds to the JSON property dropTrafficIfUnhealthy
3027 3028 3029 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3027 def drop_traffic_if_unhealthy @drop_traffic_if_unhealthy end |
#failover_ratio ⇒ Float
Applicable only to Failover for Internal TCP/UDP Load Balancing. The value of
the field must be in the range [0, 1]. If the value is 0, the load balancer
performs a failover when the number of healthy primary VMs equals zero. For
all other values, the load balancer performs a failover when the total number
of healthy primary VMs is less than this ratio.
Corresponds to the JSON property failoverRatio
3037 3038 3039 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3037 def failover_ratio @failover_ratio end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3044 3045 3046 3047 3048 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3044 def update!(**args) @disable_connection_drain_on_failover = args[:disable_connection_drain_on_failover] if args.key?(:disable_connection_drain_on_failover) @drop_traffic_if_unhealthy = args[:drop_traffic_if_unhealthy] if args.key?(:drop_traffic_if_unhealthy) @failover_ratio = args[:failover_ratio] if args.key?(:failover_ratio) end |