Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/MachineClassificationCriteriaLevel3.md
2025-07-25 19:22:56 +00:00

1.8 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-machine-classification-criteria-level3 MachineClassificationCriteriaLevel3 MachineClassificationCriteriaLevel3 MachineClassificationCriteriaLevel3 powershellsdk
powershell
PowerShell
sdk
MachineClassificationCriteriaLevel3
V2025MachineClassificationCriteriaLevel3
/tools/sdk/powershell/v2025/models/machine-classification-criteria-level3
SDK
Software Development Kit
MachineClassificationCriteriaLevel3
V2025MachineClassificationCriteriaLevel3

MachineClassificationCriteriaLevel3

Properties

Name Type Description Notes
Operation MachineClassificationCriteriaOperation [optional]
CaseSensitive Boolean Indicates whether or not case matters when evaluating the criteria [optional] [default to $false]
DataType String The data type of the attribute being evaluated [optional]
Attribute String The attribute to evaluate in the classification criteria [optional]
Value String The value to compare against the attribute in the classification criteria [optional]
Children []String An array of child classification criteria objects [optional]

Examples

  • Prepare the resource
$MachineClassificationCriteriaLevel3 = Initialize-V2025MachineClassificationCriteriaLevel3  -Operation null `
 -CaseSensitive false `
 -DataType This is the first level of classification criteria `
 -Attribute sAMAccountName `
 -Value SVC `
 -Children null
  • Convert the resource to JSON
$MachineClassificationCriteriaLevel3 | ConvertTo-JSON

[Back to top]