Matchers: Add dynamic metadata to the http inputs (#34891)
fixes: https://github.com/envoyproxy/envoy/issues/34092 --------- Signed-off-by: Vikas Choudhary <choudharyvikas16@gmail.com> Mirrored from https://github.com/envoyproxy/envoy @ 520d88e4cb4e8c5014531281a88dcc8076e18bfdmain
parent
7354d0f64f
commit
6bda82815c
5 changed files with 85 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||||||
|
# DO NOT EDIT. This file is generated by tools/proto_format/proto_sync.py. |
||||||
|
|
||||||
|
load("@envoy_api//bazel:api_build_system.bzl", "api_proto_package") |
||||||
|
|
||||||
|
licenses(["notice"]) # Apache 2 |
||||||
|
|
||||||
|
api_proto_package( |
||||||
|
deps = [ |
||||||
|
"//envoy/type/matcher/v3:pkg", |
||||||
|
"@com_github_cncf_xds//udpa/annotations:pkg", |
||||||
|
], |
||||||
|
) |
@ -0,0 +1,26 @@ |
|||||||
|
syntax = "proto3"; |
||||||
|
|
||||||
|
package envoy.extensions.matching.input_matchers.metadata.v3; |
||||||
|
|
||||||
|
import "envoy/type/matcher/v3/value.proto"; |
||||||
|
|
||||||
|
import "udpa/annotations/status.proto"; |
||||||
|
import "validate/validate.proto"; |
||||||
|
|
||||||
|
option java_package = "io.envoyproxy.envoy.extensions.matching.input_matchers.metadata.v3"; |
||||||
|
option java_outer_classname = "MetadataProto"; |
||||||
|
option java_multiple_files = true; |
||||||
|
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/input_matchers/metadata/v3;metadatav3"; |
||||||
|
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
||||||
|
|
||||||
|
// [#protodoc-title: metadata matcher] |
||||||
|
// [#extension: envoy.matching.matchers.metadata_matcher] |
||||||
|
|
||||||
|
// Metadata matcher for metadata from http matching input data. |
||||||
|
message Metadata { |
||||||
|
// The Metadata is matched if the value retrieved by metadata matching input is matched to this value. |
||||||
|
type.matcher.v3.ValueMatcher value = 1 [(validate.rules).message = {required: true}]; |
||||||
|
|
||||||
|
// If true, the match result will be inverted. |
||||||
|
bool invert = 4; |
||||||
|
} |
Loading…
Reference in new issue