Interface QueryParameterMatcherOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    QueryParameterMatcher, QueryParameterMatcher.Builder

    public interface QueryParameterMatcherOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • getName

        String getName()
         Specifies the name of a key that must be present in the requested
         *path*'s query string.
         
        string name = 1 [(.validate.rules) = { ... }
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Specifies the name of a key that must be present in the requested
         *path*'s query string.
         
        string name = 1 [(.validate.rules) = { ... }
      • getValue

        @Deprecated
        String getValue()
        Deprecated.
         Specifies the value of the key. If the value is absent, a request
         that contains the key in its query string will match, whether the
         key appears with a value (e.g., "?debug=true") or not (e.g., "?debug")
         ..attention::
           This field is deprecated. Use an `exact` match inside the `string_match` field.
         
        string value = 3 [deprecated = true, (.envoy.annotations.disallowed_by_default) = true];
      • getValueBytes

        @Deprecated
        com.google.protobuf.ByteString getValueBytes()
        Deprecated.
         Specifies the value of the key. If the value is absent, a request
         that contains the key in its query string will match, whether the
         key appears with a value (e.g., "?debug=true") or not (e.g., "?debug")
         ..attention::
           This field is deprecated. Use an `exact` match inside the `string_match` field.
         
        string value = 3 [deprecated = true, (.envoy.annotations.disallowed_by_default) = true];
      • hasRegex

        @Deprecated
        boolean hasRegex()
        Deprecated.
         Specifies whether the query parameter value is a regular expression.
         Defaults to false. The entire query parameter value (i.e., the part to
         the right of the equals sign in "key=value") must match the regex.
         E.g., the regex ``\d+$`` will match *123* but not *a123* or *123a*.
         ..attention::
           This field is deprecated. Use a `safe_regex` match inside the `string_match` field.
         
        .google.protobuf.BoolValue regex = 4 [deprecated = true, (.envoy.annotations.disallowed_by_default) = true];
      • getRegex

        @Deprecated
        com.google.protobuf.BoolValue getRegex()
        Deprecated.
         Specifies whether the query parameter value is a regular expression.
         Defaults to false. The entire query parameter value (i.e., the part to
         the right of the equals sign in "key=value") must match the regex.
         E.g., the regex ``\d+$`` will match *123* but not *a123* or *123a*.
         ..attention::
           This field is deprecated. Use a `safe_regex` match inside the `string_match` field.
         
        .google.protobuf.BoolValue regex = 4 [deprecated = true, (.envoy.annotations.disallowed_by_default) = true];
      • getRegexOrBuilder

        @Deprecated
        com.google.protobuf.BoolValueOrBuilder getRegexOrBuilder()
        Deprecated.
         Specifies whether the query parameter value is a regular expression.
         Defaults to false. The entire query parameter value (i.e., the part to
         the right of the equals sign in "key=value") must match the regex.
         E.g., the regex ``\d+$`` will match *123* but not *a123* or *123a*.
         ..attention::
           This field is deprecated. Use a `safe_regex` match inside the `string_match` field.
         
        .google.protobuf.BoolValue regex = 4 [deprecated = true, (.envoy.annotations.disallowed_by_default) = true];
      • hasStringMatch

        boolean hasStringMatch()
         Specifies whether a query parameter value should match against a string.
         
        .envoy.type.matcher.StringMatcher string_match = 5 [(.validate.rules) = { ... }
      • getStringMatch

        StringMatcher getStringMatch()
         Specifies whether a query parameter value should match against a string.
         
        .envoy.type.matcher.StringMatcher string_match = 5 [(.validate.rules) = { ... }
      • getStringMatchOrBuilder

        StringMatcherOrBuilder getStringMatchOrBuilder()
         Specifies whether a query parameter value should match against a string.
         
        .envoy.type.matcher.StringMatcher string_match = 5 [(.validate.rules) = { ... }
      • getPresentMatch

        boolean getPresentMatch()
         Specifies whether a query parameter should be present.
         
        bool present_match = 6;