diff --git a/envoy/config/accesslog/v3/accesslog.proto b/envoy/config/accesslog/v3/accesslog.proto index a29fa839..cdf5877c 100644 --- a/envoy/config/accesslog/v3/accesslog.proto +++ b/envoy/config/accesslog/v3/accesslog.proto @@ -30,9 +30,7 @@ message AccessLog { reserved "config"; - // The name of the access log extension to instantiate. - // The name must match one of the compiled in loggers. - // See the :ref:`extensions listed in typed_config below ` for the default list of available loggers. + // The name of the access log extension configuration. string name = 1; // Filter which is used to determine if the access log needs to be written. diff --git a/envoy/config/cluster/v3/filter.proto b/envoy/config/cluster/v3/filter.proto index a98674b7..c6b8722b 100644 --- a/envoy/config/cluster/v3/filter.proto +++ b/envoy/config/cluster/v3/filter.proto @@ -20,12 +20,12 @@ option (udpa.annotations.file_status).package_version_status = ACTIVE; message Filter { option (udpa.annotations.versioning).previous_message_type = "envoy.api.v2.cluster.Filter"; - // The name of the filter to instantiate. The name must match a - // supported upstream filter. Note that Envoy's :ref:`downstream network - // filters ` are not valid upstream filters. + // The name of the filter configuration. string name = 1 [(validate.rules).string = {min_len: 1}]; // Filter specific configuration which depends on the filter being // instantiated. See the supported filters for further documentation. + // Note that Envoy's :ref:`downstream network + // filters ` are not valid upstream filters. google.protobuf.Any typed_config = 2; } diff --git a/envoy/config/listener/v3/listener_components.proto b/envoy/config/listener/v3/listener_components.proto index 1116031c..13501fb3 100644 --- a/envoy/config/listener/v3/listener_components.proto +++ b/envoy/config/listener/v3/listener_components.proto @@ -33,8 +33,7 @@ message Filter { reserved "config"; - // The name of the filter to instantiate. The name must match a - // :ref:`supported filter `. + // The name of the filter configuration. string name = 1 [(validate.rules).string = {min_len: 1}]; oneof config_type { @@ -343,8 +342,7 @@ message ListenerFilter { reserved "config"; - // The name of the filter to instantiate. The name must match a - // :ref:`supported filter `. + // The name of the filter configuration. string name = 1 [(validate.rules).string = {min_len: 1}]; oneof config_type { diff --git a/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.proto b/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.proto index 7bff1de5..d7e8e799 100644 --- a/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.proto +++ b/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.proto @@ -1013,9 +1013,7 @@ message HttpFilter { reserved "config"; - // The name of the filter configuration. The name is used as a fallback to - // select an extension if the type of the configuration proto is not - // sufficient. It also serves as a resource name in ExtensionConfigDS. + // The name of the filter configuration. It also serves as a resource name in ExtensionConfigDS. string name = 1 [(validate.rules).string = {min_len: 1}]; oneof config_type {