RequestMetadataFilters

Rules for filtering invocation logs. A filter can be a mapping of a metadata key to a value that it should or should not equal (a base filter), or a list of base filters that are all applied with AND or OR logical operators

Inheritors

Types

Link copied to clipboard

Include results where all of the based filters match.

Link copied to clipboard
data class Equals(val value: Map<String, String>) : RequestMetadataFilters

Include results where the key equals the value.

Link copied to clipboard
data class NotEquals(val value: Map<String, String>) : RequestMetadataFilters

Include results where the key does not equal the value.

Link copied to clipboard

Include results where any of the base filters match.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this RequestMetadataFilters as a AndAll and retrieves its kotlin.collections.List value. Throws an exception if the RequestMetadataFilters is not a AndAll.

Link copied to clipboard

Casts this RequestMetadataFilters as a AndAll and retrieves its kotlin.collections.List value. Returns null if the RequestMetadataFilters is not a AndAll.

Link copied to clipboard

Casts this RequestMetadataFilters as a Equals and retrieves its kotlin.collections.Map value. Throws an exception if the RequestMetadataFilters is not a Equals.

Link copied to clipboard

Casts this RequestMetadataFilters as a Equals and retrieves its kotlin.collections.Map value. Returns null if the RequestMetadataFilters is not a Equals.

Link copied to clipboard

Casts this RequestMetadataFilters as a NotEquals and retrieves its kotlin.collections.Map value. Throws an exception if the RequestMetadataFilters is not a NotEquals.

Link copied to clipboard

Casts this RequestMetadataFilters as a NotEquals and retrieves its kotlin.collections.Map value. Returns null if the RequestMetadataFilters is not a NotEquals.

Link copied to clipboard

Casts this RequestMetadataFilters as a OrAll and retrieves its kotlin.collections.List value. Throws an exception if the RequestMetadataFilters is not a OrAll.

Link copied to clipboard

Casts this RequestMetadataFilters as a OrAll and retrieves its kotlin.collections.List value. Returns null if the RequestMetadataFilters is not a OrAll.