Skip to main content

ReviewableRole

Properties

NameTypeDescriptionNotes
IdStringThe id for the Role[optional]
NameStringThe name of the Role[optional]
DescriptionStringInformation about the Role[optional]
PrivilegedBooleanIndicates if the entitlement is a privileged entitlement[optional]
OwnerIdentityReferenceWithNameAndEmail[optional]
RevocableBooleanIndicates whether the Role can be revoked or requested[optional]
EndDateSystem.DateTimeThe date when a user's access expires.[optional]
AccessProfiles[]ReviewableAccessProfileThe list of Access Profiles associated with this Role[optional]
Entitlements[]ReviewableEntitlementThe 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]