Navigation :
StringMatch
Proto: string_match.proto
Package: common.gloo.solo.io
Types:
StringMatch
Describes how to match a given string in HTTP headers. Match is case-sensitive.
Field |
Description |
exact |
(string )
Exact string match. |
prefix |
(string )
Prefix-based match. |
regex |
(string )
ECMAscript style regex-based match. |
suffix |
(string )
Suffix-based match. |
ignoreCase |
(bool )
If true, indicates the exact/prefix/suffix matching should be case insensitive. This has no effect for the regex match. |