Navigation :
string_match.proto
Package : common.gloo.solo.io
Top
string_match.proto
Table of Contents
StringMatch
Describes how to match a given string in HTTP headers. Match is case-sensitive.
Field |
Type |
Label |
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. |