interface RuleHttpMatch {
    methodFilters: RuleHttpMatchMethodFilter[];
    pathFilter?: RuleHttpMatchPathFilter;
}

Properties

methodFilters: RuleHttpMatchMethodFilter[]

HTTP methods to filter for. A request using any of these methods will be considered to match the rule. Possible values are get, post, put, patch, delete, head, options. All methods will match if none is provided.

HTTP URL path to filter for. A request whose path matches the given filter will be considered to match the rule. All paths will match if none is provided.