Skip to main content

ReviewDecision

Properties

NameTypeDescriptionNotes
IdStringThe id of the review decision[required]
DecisionCertificationDecision[required]
ProposedEndDateSystem.DateTimeThe date at which a user's access should be taken away. Should only be set for REVOKE decisions.[optional]
BulkBooleanIndicates whether decision should be marked as part of a larger bulk decision[required]
RecommendationReviewRecommendation[optional]
CommentsStringComments recorded when the decision was made[optional]

Examples

  • Prepare the resource
$ReviewDecision = Initialize-PSSailpoint.V2024ReviewDecision  -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]