Skip to main content

AccessReviewItem

Properties

NameTypeDescriptionNotes
AccessSummaryAccessSummary[optional]
IdentitySummaryCertificationIdentitySummary[optional]
IdStringThe review item's id[optional]
CompletedBooleanWhether the review item is complete[optional]
NewAccessBooleanIndicates whether the review item is for new access to a source[optional]
DecisionCertificationDecision[optional]
CommentsStringComments for this review item[optional]

Examples

  • Prepare the resource
$AccessReviewItem = Initialize-PSSailpoint.V2024AccessReviewItem  -AccessSummary null `
-IdentitySummary null `
-Id ef38f94347e94562b5bb8424a56397d8 `
-Completed false `
-NewAccess false `
-Decision null `
-Comments This user still needs access to this source
  • Convert the resource to JSON
$AccessReviewItem | ConvertTo-JSON

[Back to top]