syntax = "proto3"; package envoy.type.matcher; import "envoy/type/range.proto"; import "udpa/annotations/status.proto"; import "validate/validate.proto"; option java_package = "io.envoyproxy.envoy.type.matcher"; option java_outer_classname = "NumberProto"; option java_multiple_files = true; option go_package = "github.com/envoyproxy/go-control-plane/envoy/type/matcher"; option (udpa.annotations.file_status).package_version_status = FROZEN; // [#protodoc-title: Number matcher] // Specifies the way to match a double value. message DoubleMatcher { oneof match_pattern { option (validate.required) = true; // If specified, the input double value must be in the range specified here. // Note: The range is using half-open interval semantics [start, end). DoubleRange range = 1; // If specified, the input double value must be equal to the value specified here. double exact = 2; } }