Skip to content

Commit

Permalink
Fixed some missing or invalid filter documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Klijn <[email protected]>
  • Loading branch information
peterklijn committed Dec 20, 2020
1 parent 191f377 commit 612e8f9
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions docs/reference/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ token, it will allow the request to pass.
Examples:

```
oauthTokenintrospectionAnyClaims("c1", "c2", "c3")
oauthTokenintrospectionAnyClaims("https://accounts.google.com", c1", "c2", "c3")
```

## oauthTokenintrospectionAllClaims
Expand All @@ -980,7 +980,7 @@ token, it will allow the request to pass.
Examples:

```
oauthTokenintrospectionAllClaims("c1", "c2", "c3")
oauthTokenintrospectionAllClaims("https://accounts.google.com", c1", "c2", "c3")
```

## oauthTokenintrospectionAnyKV
Expand All @@ -1000,8 +1000,8 @@ it will allow the request to pass.
Examples:

```
oauthTokenintrospectionAnyKV("k1", "v1", "k2", "v2")
oauthTokenintrospectionAnyKV("k1", "v1", "k1", "v2")
oauthTokenintrospectionAnyKV("https://accounts.google.com", "k1", "v1", "k2", "v2")
oauthTokenintrospectionAnyKV("https://accounts.google.com", "k1", "v1", "k1", "v2")
```

## oauthTokenintrospectionAllKV
Expand All @@ -1021,7 +1021,7 @@ it will allow the request to pass.
Examples:

```
oauthTokenintrospectionAllKV("k1", "v1", "k2", "v2")
oauthTokenintrospectionAllKV("https://accounts.google.com", "k1", "v1", "k2", "v2")
```

## secureOauthTokenintrospectionAnyClaims
Expand All @@ -1033,6 +1033,7 @@ for example `https://accounts.google.com`, that will be used as
described in [RFC Draft](https://tools.ietf.org/html/draft-ietf-oauth-discovery-06#section-5)
to find the configuration and for example supported claims.

Second and third arguments are the client-id and client-secret.
Use this filter if the Token Introspection endpoint requires authorization to validate and decode the incoming token.
The filter will optionally read client-id and client-secret from environment variables: OAUTH_CLIENT_ID, OAUTH_CLIENT_SECRET

Expand Down Expand Up @@ -1060,6 +1061,7 @@ for example `https://accounts.google.com`, that will be used as
described in [RFC Draft](https://tools.ietf.org/html/draft-ietf-oauth-discovery-06#section-5)
to find the configuration and for example supported claims.

Second and third arguments are the client-id and client-secret.
Use this filter if the Token Introspection endpoint requires authorization to validate and decode the incoming token.
The filter will optionally read client-id and client-secret from environment variables: OAUTH_CLIENT_ID, OAUTH_CLIENT_SECRET

Expand Down Expand Up @@ -1088,6 +1090,7 @@ that will be used as described in
[RFC Draft](https://tools.ietf.org/html/draft-ietf-oauth-discovery-06#section-5)
to find the configuration and for example supported claims.

Second and third arguments are the client-id and client-secret.
Use this filter if the Token Introspection endpoint requires authorization to validate and decode the incoming token.
The filter will optionally read client-id and client-secret from environment variables: OAUTH_CLIENT_ID, OAUTH_CLIENT_SECRET

Expand Down Expand Up @@ -1116,6 +1119,7 @@ that will be used as described in
[RFC Draft](https://tools.ietf.org/html/draft-ietf-oauth-discovery-06#section-5)
to find the configuration and for example supported claims.

Second and third arguments are the client-id and client-secret.
Use this filter if the Token Introspection endpoint requires authorization to validate and decode the incoming token.
The filter will optionally read client-id and client-secret from environment variables: OAUTH_CLIENT_ID, OAUTH_CLIENT_SECRET

Expand Down Expand Up @@ -1424,7 +1428,8 @@ and allows the same breaker characteristics for low and high rate traffic.
Parameters:

* number of consecutive failures to open (int)
* sliding window (time string, parseable by [time.Duration](https://godoc.org/time#ParseDuration))
* sliding window (int)
* timeout (time string, parseable by [time.Duration](https://godoc.org/time#ParseDuration)) - optional
* half-open requests (int) - optional
* idle-ttl (time string, parseable by [time.Duration](https://godoc.org/time#ParseDuration)) - optional

Expand Down

0 comments on commit 612e8f9

Please sign in to comment.