ENUM
KubernetesKindHTTPRouteSpecRulesMatchesMethodEnum
Method specifies HTTP method matcher. When specified, this route will be matched only if the request has the specified method. Support: Extended
link GraphQL Schema definition
- enum KubernetesKindHTTPRouteSpecRulesMatchesMethodEnum {
- }
link Require by
- KubernetesKindHTTPRouteSpecRulesMatchesHTTPRouteMatch defines the predicate used to match requests to a given action. Multiple match types are ANDed together, i.e. the match will evaluate to true only if all conditions are satisfied. For example, the match below will match a HTTP request only if its path starts with `/foo` AND it contains the `version: v1` header: ``` match: path: value: "/foo" headers: - name: "version" value "v1" ```
- KubernetesKindHTTPRouteSpecRulesMatchesInputHTTPRouteMatch defines the predicate used to match requests to a given action. Multiple match types are ANDed together, i.e. the match will evaluate to true only if all conditions are satisfied. For example, the match below will match a HTTP request only if its path starts with `/foo` AND it contains the `version: v1` header: ``` match: path: value: "/foo" headers: - name: "version" value "v1" ```