String matcher

    Specifies the way to match a string.

    exact

    (string) The input string must match exactly the string specified here.

    Examples:

    Precisely one of , prefix, , safe_regex must be set.

    prefix

    Examples:

    • abc matches the value abc.xyz

    Precisely one of , prefix, , safe_regex must be set.

    suffix

    () The input string must have the suffix specified here. Note: empty prefix is not allowed, please use regex instead.

    Examples:

    • abc matches the value xyz.abc

    Precisely one of exact, , suffix, must be set.

    (type.matcher.v3.RegexMatcher) The input string must match the regular expression specified here.

    Precisely one of , prefix, , safe_regex must be set.

    ignore_case

    () If true, indicates the exact/prefix/suffix matching should be case insensitive. This has no effect for the safe_regex match. For example, the matcher data will match both input string Data and data if set to true.

    type.matcher.v3.ListStringMatcher

    Specifies a list of ways to match a string.

    (type.matcher.v3.StringMatcher, REQUIRED)