envoy.config.cluster.dynamic_forward_proxy.v3alpha.cluster.proto Maven / Gradle / Ivy
syntax = "proto3";
package envoy.config.cluster.dynamic_forward_proxy.v3alpha;
option java_outer_classname = "DynamicForwardProxyClusterProto";
option java_multiple_files = true;
option java_package = "io.envoyproxy.envoy.config.cluster.dynamic_forward_proxy.v3alpha";
import "envoy/config/common/dynamic_forward_proxy/v3alpha/dns_cache.proto";
import "validate/validate.proto";
// [#protodoc-title: Dynamic forward proxy cluster configuration]
// Configuration for the dynamic forward proxy cluster. See the :ref:`architecture overview
// ` for more information.
message ClusterConfig {
// The DNS cache configuration that the cluster will attach to. Note this configuration must
// match that of associated :ref:`dynamic forward proxy HTTP filter configuration
// `.
common.dynamic_forward_proxy.v3alpha.DnsCacheConfig dns_cache_config = 1
[(validate.rules).message.required = true];
}