List

The list adapter makes it possible to perform simple whitelist or blacklist checks. You can configure the adapter with the list to check, or you can point it to a URL from where the list should be fetched. Lists can be simple strings, IP addresses, or regex patterns.

This adapter supports the listentry template.

Params

Configuration format for the list adapter.

FieldTypeDescription
providerUrlstring

Where to find the list to check against. This may be omitted for a completely local list.

refreshIntervalgoogle.protobuf.Duration

Determines how often the provider is polled for an updated list

ttlgoogle.protobuf.Duration

Indicates how long to keep a list before discarding it. Typically, the TTL value should be set to noticeably longer (> 2x) than the refresh interval to ensure continued operation in the face of transient server outages.

cachingIntervalgoogle.protobuf.Duration

Indicates the amount of time a caller of this adapter can cache an answer before it should ask the adapter again.

cachingUseCountint32

Indicates the number of times a caller of this adapter can use a cached answer before it should ask the adapter again.

overridesstring[]

List entries that are consulted first, before the list from the server

entryTypeParams.ListEntryType

Determines the kind of list entry and overrides.

blacklistbool

Whether the list operates as a blacklist or a whitelist.

Params.ListEntryType

Determines the type of list that the adapter is consulting.

NameDescription
STRINGS

List entries are treated as plain strings.

CASE_INSENSITIVE_STRINGS

List entries are treated as case-insensitive strings.

IP_ADDRESSES

List entries are treated as IP addresses and ranges.

REGEX

List entries are treated as re2 regexp. See here for the supported syntax.