Class: Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BackendServiceLocalityLoadBalancingPolicyConfig

Returns a new instance of BackendServiceLocalityLoadBalancingPolicyConfig.



4135
4136
4137
# File 'lib/google/apis/compute_v1/classes.rb', line 4135

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#custom_policyGoogle::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy

The configuration for a custom policy implemented by the user and deployed with the client. Corresponds to the JSON property customPolicy



4128
4129
4130
# File 'lib/google/apis/compute_v1/classes.rb', line 4128

def custom_policy
  @custom_policy
end

#policyGoogle::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigPolicy

The configuration for a built-in load balancing policy. Corresponds to the JSON property policy



4133
4134
4135
# File 'lib/google/apis/compute_v1/classes.rb', line 4133

def policy
  @policy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4140
4141
4142
4143
# File 'lib/google/apis/compute_v1/classes.rb', line 4140

def update!(**args)
  @custom_policy = args[:custom_policy] if args.key?(:custom_policy)
  @policy = args[:policy] if args.key?(:policy)
end