Skip to main content

FilterAggregation

Properties

NameTypeDescriptionNotes
NameStringThe name of the filter aggregate to be included in the result.[required]
TypeSearchFilterType[optional]
FieldStringThe search field to apply the filter to. Prefix the field name with '@' to reference a nested object.[required]
ValueStringThe value to filter on.[required]

Examples

  • Prepare the resource
$FilterAggregation = Initialize-PSSailpoint.V2024FilterAggregation  -Name Entitlements `
-Type null `
-Field access.type `
-Value ENTITLEMENT
  • Convert the resource to JSON
$FilterAggregation | ConvertTo-JSON

[Back to top]