Skip to main content

Filteraggregation

An additional filter to constrain the results of the search query.

Properties

NameTypeDescriptionNotes
namestrThe name of the filter aggregate to be included in the result.[required]
typeSearchfiltertype[optional] [default to Searchfiltertype.TERM]
var_fieldstrThe search field to apply the filter to. Prefix the field name with '@' to reference a nested object.[required]
valuestrThe value to filter on.[required]
}

Example

from sailpoint.access_model_metadata.models.filteraggregation import Filteraggregation

filteraggregation = Filteraggregation(
name='Entitlements',
type='TERM',
var_field='access.type',
value='ENTITLEMENT'
)

[Back to top]