adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
---
id: reviewable-entitlement
title: ReviewableEntitlement
pagination_label: ReviewableEntitlement
sidebar_label: ReviewableEntitlement
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ReviewableEntitlement', 'ReviewableEntitlement']
slug: /tools/sdk/powershell/v3/models/reviewable-entitlement
tags: ['SDK', 'Software Development Kit', 'ReviewableEntitlement', 'ReviewableEntitlement']
---
# ReviewableEntitlement
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The id for the entitlement | [optional]
**Name** | Pointer to **String** | The name of the entitlement | [optional]
**Description** | Pointer to **String** | Information about the entitlement | [optional]
**Privileged** | Pointer to **Boolean** | Indicates if the entitlement is a privileged entitlement | [optional] [default to $false]
**Owner** | Pointer to [**IdentityReferenceWithNameAndEmail**](identity-reference-with-name-and-email) | | [optional]
**AttributeName** | Pointer to **String** | The name of the attribute on the source | [optional]
**AttributeValue** | Pointer to **String** | The value of the attribute on the source | [optional]
**SourceSchemaObjectType** | Pointer to **String** | The schema object type on the source used to represent the entitlement and its attributes | [optional]
**SourceName** | Pointer to **String** | The name of the source for which this entitlement belongs | [optional]
**SourceType** | Pointer to **String** | The type of the source for which the entitlement belongs | [optional]
**SourceId** | Pointer to **String** | The ID of the source for which the entitlement belongs | [optional]
**HasPermissions** | Pointer to **Boolean** | Indicates if the entitlement has permissions | [optional] [default to $false]
**IsPermission** | Pointer to **Boolean** | Indicates if the entitlement is a representation of an account permission | [optional] [default to $false]
**Revocable** | Pointer to **Boolean** | Indicates whether the entitlement can be revoked | [optional] [default to $false]
**CloudGoverned** | Pointer to **Boolean** | True if the entitlement is cloud governed | [optional] [default to $false]
**ContainsDataAccess** | Pointer to **Boolean** | True if the entitlement has DAS data | [optional] [default to $false]
**DataAccess** | Pointer to [**DataAccess**](data-access) | | [optional]
**Account** | Pointer to [**ReviewableEntitlementAccount**](reviewable-entitlement-account) | | [optional]
## Examples
- Prepare the resource
```powershell
$ReviewableEntitlement = Initialize-PSSailpoint.V3ReviewableEntitlement -Id 2c918085718230600171993742c63558 `
-Name CN=entitlement.bbb7c650 `
-Description Gives read/write access to the company database `
-Privileged false `
-Owner null `
-AttributeName memberOf `
-AttributeValue CN=entitlement.bbb7c650 `
-SourceSchemaObjectType groups `
-SourceName ODS-AD-Source `
-SourceType Active Directory - Direct `
-SourceId 78ca6be511cb41fbb86dba2fcca7780c `
-HasPermissions false `
-IsPermission false `
-Revocable true `
-CloudGoverned false `
-ContainsDataAccess true `
-DataAccess null `
-Account null
```
- Convert the resource to JSON
```powershell
$ReviewableEntitlement | ConvertTo-JSON
```
[[Back to top]](#)