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

1.5 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-review-decision ReviewDecision ReviewDecision ReviewDecision powershellsdk
powershell
PowerShell
sdk
ReviewDecision
V2025ReviewDecision
/tools/sdk/powershell/v2025/models/review-decision
SDK
Software Development Kit
ReviewDecision
V2025ReviewDecision

ReviewDecision

Properties

Name Type Description Notes
Id String The id of the review decision [required]
Decision CertificationDecision [required]
ProposedEndDate System.DateTime The date at which a user's access should be taken away. Should only be set for REVOKE decisions. [optional]
Bulk Boolean Indicates whether decision should be marked as part of a larger bulk decision [required]
Recommendation ReviewRecommendation [optional]
Comments String Comments recorded when the decision was made [optional]

Examples

  • Prepare the resource
$ReviewDecision = Initialize-V2025ReviewDecision  -Id ef38f94347e94562b5bb8424a56397d8 `
 -Decision null `
 -ProposedEndDate 2017-07-11T18:45:37.098Z `
 -Bulk true `
 -Recommendation null `
 -Comments This user no longer needs access to this source
  • Convert the resource to JSON
$ReviewDecision | ConvertTo-JSON

[Back to top]