You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
syntax = "proto3"; |
|
|
|
import "envoy/service/tap/v2alpha/common.proto"; |
|
|
|
import "validate/validate.proto"; |
|
|
|
package envoy.config.common.tap.v2alpha; |
|
|
|
option java_outer_classname = "CommonProto"; |
|
option java_multiple_files = true; |
|
option java_package = "io.envoyproxy.envoy.config.common.tap.v2alpha"; |
|
|
|
// [#protodoc-title: Common tap extension configuration] |
|
|
|
// Common configuration for all tap extensions. |
|
message CommonExtensionConfig { |
|
oneof config_type { |
|
option (validate.required) = true; |
|
|
|
// If specified, the tap filter will be configured via an admin handler. |
|
AdminConfig admin_config = 1; |
|
|
|
// If specified, the tap filter will be configured via a static configuration that cannot be |
|
// changed. |
|
service.tap.v2alpha.TapConfig static_config = 2; |
|
} |
|
} |
|
|
|
// Configuration for the admin handler. See :ref:`here <config_http_filters_tap_admin_handler>` for |
|
// more information. |
|
message AdminConfig { |
|
// Opaque configuration ID. When requests are made to the admin handler, the passed opaque ID is |
|
// matched to the configured filter opaque ID to determine which filter to configure. |
|
string config_id = 1 [(validate.rules).string.min_bytes = 1]; |
|
}
|
|
|