mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2025-review-decision
|
||||
title: ReviewDecision
|
||||
pagination_label: ReviewDecision
|
||||
sidebar_label: ReviewDecision
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ReviewDecision', 'V2025ReviewDecision']
|
||||
slug: /tools/sdk/powershell/v2025/models/review-decision
|
||||
tags: ['SDK', 'Software Development Kit', 'ReviewDecision', 'V2025ReviewDecision']
|
||||
---
|
||||
|
||||
|
||||
# ReviewDecision
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | **String** | The id of the review decision | [required]
|
||||
**Decision** | [**CertificationDecision**](certification-decision) | | [required]
|
||||
**ProposedEndDate** | **System.DateTime** | The date at which a user's access should be taken away. Should only be set for `REVOKE` decisions. | [optional]
|
||||
**Bulk** | **Boolean** | Indicates whether decision should be marked as part of a larger bulk decision | [required]
|
||||
**Recommendation** | [**ReviewRecommendation**](review-recommendation) | | [optional]
|
||||
**Comments** | **String** | Comments recorded when the decision was made | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ReviewDecision = Initialize-PSSailpoint.V2025ReviewDecision -Id ef38f94347e94562b5bb8424a56397d8 `
|
||||
-Decision null `
|
||||
-ProposedEndDate 2017-07-11T18:45:37.098Z `
|
||||
-Bulk true `
|
||||
-Recommendation null `
|
||||
-Comments This user no longer needs access to this source
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$ReviewDecision | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user