Files
developer.sailpoint.com/docs/tools/sdk/powershell/reference/v2024/Models/AccessReviewItem.md
2025-01-27 16:35:26 -05: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
v2024-access-review-item AccessReviewItem AccessReviewItem AccessReviewItem powershellsdk
powershell
PowerShell
sdk
AccessReviewItem
/tools/sdk/powershell/v2024/models/access-review-item
SDK
Software Development Kit
AccessReviewItem

AccessReviewItem

Properties

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