Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ProvisioningCriteriaLevel2.md
2025-05-07 14:37:48 +00:00

1.9 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-provisioning-criteria-level2 ProvisioningCriteriaLevel2 ProvisioningCriteriaLevel2 ProvisioningCriteriaLevel2 powershellsdk
powershell
PowerShell
sdk
ProvisioningCriteriaLevel2
V2025ProvisioningCriteriaLevel2
/tools/sdk/powershell/v2025/models/provisioning-criteria-level2
SDK
Software Development Kit
ProvisioningCriteriaLevel2
V2025ProvisioningCriteriaLevel2

ProvisioningCriteriaLevel2

Properties

Name Type Description Notes
Operation ProvisioningCriteriaOperation [optional]
Attribute String Name of the account attribute to be tested. If operation is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it results in an error. [optional]
Value String String value to test the account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type. [optional]
Children []ProvisioningCriteriaLevel3 Array of child criteria. This field is required if the operation is AND or OR. Otherwise, it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. [optional]

Examples

  • Prepare the resource
$ProvisioningCriteriaLevel2 = Initialize-V2025ProvisioningCriteriaLevel2  -Operation null `
 -Attribute email `
 -Value carlee.cert1c9f9b6fd@mailinator.com `
 -Children null
  • Convert the resource to JSON
$ProvisioningCriteriaLevel2 | ConvertTo-JSON

[Back to top]