Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/ReviewableEntitlement.md
2025-01-28 13:29:29 -05:00

3.3 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
reviewable-entitlement ReviewableEntitlement ReviewableEntitlement ReviewableEntitlement powershellsdk
powershell
PowerShell
sdk
ReviewableEntitlement
ReviewableEntitlement
/tools/sdk/powershell/v3/models/reviewable-entitlement
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 [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 [optional]
Account Pointer to ReviewableEntitlementAccount [optional]

Examples

  • Prepare the resource
$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
$ReviewableEntitlement | ConvertTo-JSON

[Back to top]