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

2.0 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-reviewable-role ReviewableRole ReviewableRole ReviewableRole powershellsdk
powershell
PowerShell
sdk
ReviewableRole
V2024ReviewableRole
/tools/sdk/powershell/v2024/models/reviewable-role
SDK
Software Development Kit
ReviewableRole
V2024ReviewableRole

ReviewableRole

Properties

Name Type Description Notes
Id Pointer to String The id for the Role [optional]
Name Pointer to String The name of the Role [optional]
Description Pointer to String Information about the Role [optional]
Privileged Pointer to Boolean Indicates if the entitlement is a privileged entitlement [optional]
Owner Pointer to IdentityReferenceWithNameAndEmail [optional]
Revocable Pointer to Boolean Indicates whether the Role can be revoked or requested [optional]
EndDate Pointer to System.DateTime The date when a user's access expires. [optional]
AccessProfiles Pointer to []ReviewableAccessProfile The list of Access Profiles associated with this Role [optional]
Entitlements Pointer to []ReviewableEntitlement The list of entitlements associated with this Role [optional]

Examples

  • Prepare the resource
$ReviewableRole = Initialize-PSSailpoint.V2024ReviewableRole  -Id 2c91808a7190d06e0171993907fd0794 `
 -Name Accounting-Employees `
 -Description Role for members of the accounting department with the necessary Access Profiles `
 -Privileged false `
 -Owner null `
 -Revocable false `
 -EndDate 2021-12-25T00:00Z `
 -AccessProfiles null `
 -Entitlements null
  • Convert the resource to JSON
$ReviewableRole | ConvertTo-JSON

[Back to top]