Skip to main content

CampaignFilterDetailsCriteriaListInner

Properties

NameTypeDescriptionNotes
TypeCriteriaType[required]
OperationOperation[optional]
PropertyStringSpecified key from the type of criteria.[required]
ValueStringValue for the specified key from the type of criteria.[required]
NegateResultBooleanIf true, the filter will negate the result of the criteria.[optional] [default to $false]
ShortCircuitBooleanIf true, the filter will short circuit the evaluation of the criteria.[optional] [default to $false]
RecordChildMatchesBooleanIf true, the filter will record child matches for the criteria.[optional] [default to $false]
IdStringThe unique ID of the criteria.[optional]
SuppressMatchedItemsBooleanIf this value is true, then matched items will not only be excluded from the campaign, they will also not have archived certification items created. Such items will not appear in the exclusion report.[optional] [default to $false]
Children[[]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0List of child criteria.[optional]

Examples

  • Prepare the resource
$CampaignFilterDetailsCriteriaListInner = Initialize-PSSailpoint.V3CampaignFilterDetailsCriteriaListInner  -Type null `
-Operation null `
-Property displayName `
-Value Allie `
-NegateResult false `
-ShortCircuit false `
-RecordChildMatches false `
-Id 5ec18cef39020d6fd7a60ad3970aba61 `
-SuppressMatchedItems false `
-Children null
  • Convert the resource to JSON
$CampaignFilterDetailsCriteriaListInner | ConvertTo-JSON

[Back to top]