methods property

  1. @BuiltValueField(wireName: r'methods')
BuiltList<String>? methods

An array of HTTP methods (e.g. GET, POST, PUT, DELETE, ...). When ORY Oathkeeper searches for rules to decide what to do with an incoming request to the proxy server, it compares the HTTP method of the incoming request with the HTTP methods of each rules. If a match is found, the rule is considered a partial match. If the matchesUrl field is satisfied as well, the rule is considered a full match.

Implementation

@BuiltValueField(wireName: r'methods')
BuiltList<String>? get methods;