add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
---
id: v2025-access-review-item
title: AccessReviewItem
pagination_label: AccessReviewItem
sidebar_label: AccessReviewItem
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessReviewItem', 'V2025AccessReviewItem']
slug: /tools/sdk/powershell/v2025/models/access-review-item
tags: ['SDK', 'Software Development Kit', 'AccessReviewItem', 'V2025AccessReviewItem']
---
# AccessReviewItem
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccessSummary** | [**AccessSummary**](access-summary) | | [optional]
**IdentitySummary** | [**CertificationIdentitySummary**](certification-identity-summary) | | [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**](certification-decision) | | [optional]
**Comments** | **String** | Comments for this review item | [optional]
## Examples
- Prepare the resource
```powershell
$AccessReviewItem = Initialize-PSSailpoint.V2025AccessReviewItem -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
```powershell
$AccessReviewItem | ConvertTo-JSON
```
[[Back to top]](#)