Class: Google::Apis::ComputeAlpha::BackendServiceLocalityLoadBalancingPolicyConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::BackendServiceLocalityLoadBalancingPolicyConfig
- 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
Container for either a built-in LB policy supported by gRPC or Envoy or a custom one implemented by the end user.
Instance Attribute Summary collapse
-
#custom_policy ⇒ Google::Apis::ComputeAlpha::BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy
The configuration for a custom policy implemented by the user and deployed with the client.
-
#policy ⇒ Google::Apis::ComputeAlpha::BackendServiceLocalityLoadBalancingPolicyConfigPolicy
The configuration for a built-in load balancing policy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackendServiceLocalityLoadBalancingPolicyConfig
constructor
A new instance of BackendServiceLocalityLoadBalancingPolicyConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BackendServiceLocalityLoadBalancingPolicyConfig
Returns a new instance of BackendServiceLocalityLoadBalancingPolicyConfig.
4609 4610 4611 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4609 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_policy ⇒ Google::Apis::ComputeAlpha::BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy
The configuration for a custom policy implemented by the user and deployed
with the client.
Corresponds to the JSON property customPolicy
4602 4603 4604 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4602 def custom_policy @custom_policy end |
#policy ⇒ Google::Apis::ComputeAlpha::BackendServiceLocalityLoadBalancingPolicyConfigPolicy
The configuration for a built-in load balancing policy.
Corresponds to the JSON property policy
4607 4608 4609 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4607 def policy @policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4614 4615 4616 4617 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 4614 def update!(**args) @custom_policy = args[:custom_policy] if args.key?(:custom_policy) @policy = args[:policy] if args.key?(:policy) end |