Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/AccessReviewItem.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
access-review-item AccessReviewItem AccessReviewItem AccessReviewItem powershellsdk
powershell
PowerShell
sdk
AccessReviewItem
AccessReviewItem
/tools/sdk/powershell/v3/models/access-review-item
SDK
Software Development Kit
AccessReviewItem
AccessReviewItem

AccessReviewItem

Properties

Name Type Description Notes
AccessSummary AccessSummary [optional]
IdentitySummary CertificationIdentitySummary [optional]
Id String The review item's id [optional]
Completed Boolean Whether the review item is complete [optional]
NewAccess Boolean Indicates whether the review item is for new access to a source [optional]
Decision CertificationDecision [optional]
Comments String Comments 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]