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

1.7 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-dimension-criteria-level2 DimensionCriteriaLevel2 DimensionCriteriaLevel2 DimensionCriteriaLevel2 powershellsdk
powershell
PowerShell
sdk
DimensionCriteriaLevel2
V2025DimensionCriteriaLevel2
/tools/sdk/powershell/v2025/models/dimension-criteria-level2
SDK
Software Development Kit
DimensionCriteriaLevel2
V2025DimensionCriteriaLevel2

DimensionCriteriaLevel2

Properties

Name Type Description Notes
Operation DimensionCriteriaOperation [optional]
Key DimensionCriteriaKey [optional]
StringValue String String value to test the Identity attribute specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, this field is required. Otherwise, specifying it is an error. [optional]
Children []DimensionCriteriaLevel3 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. Additionally, AND nodes can only be children or OR nodes and vice-versa. [optional]

Examples

  • Prepare the resource
$DimensionCriteriaLevel2 = Initialize-V2025DimensionCriteriaLevel2  -Operation null `
 -Key null `
 -StringValue carlee.cert1c9f9b6fd@mailinator.com `
 -Children null
  • Convert the resource to JSON
$DimensionCriteriaLevel2 | ConvertTo-JSON

[Back to top]