Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ProvisioningCriteriaLevel1.md
2025-02-03 22:09:17 +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
v2024-provisioning-criteria-level1 ProvisioningCriteriaLevel1 ProvisioningCriteriaLevel1 ProvisioningCriteriaLevel1 powershellsdk
powershell
PowerShell
sdk
ProvisioningCriteriaLevel1
V2024ProvisioningCriteriaLevel1
/tools/sdk/powershell/v2024/models/provisioning-criteria-level1
SDK
Software Development Kit
ProvisioningCriteriaLevel1
V2024ProvisioningCriteriaLevel1

ProvisioningCriteriaLevel1

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 is 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 is an error. If the Attribute is not String-typed, it will be converted to the appropriate type. [optional]
Children []ProvisioningCriteriaLevel2 Array of child criteria. 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
$ProvisioningCriteriaLevel1 = Initialize-PSSailpoint.V2024ProvisioningCriteriaLevel1  -Operation null `
 -Attribute email `
 -Value carlee.cert1c9f9b6fd@mailinator.com `
 -Children null
  • Convert the resource to JSON
$ProvisioningCriteriaLevel1 | ConvertTo-JSON

[Back to top]