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-Accessreviewitem  -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]