Skip to main content

ReviewableAccessProfile

Properties

NameTypeDescriptionNotes
IdStringThe id of the Access Profile[optional]
NameStringName of the Access Profile[optional]
DescriptionStringInformation about the Access Profile[optional]
PrivilegedBooleanIndicates if the entitlement is a privileged entitlement[optional]
CloudGovernedBooleanTrue if the entitlement is cloud governed[optional]
EndDateSystem.DateTimeThe date at which a user's access expires[optional]
OwnerIdentityReferenceWithNameAndEmail[optional]
Entitlements[]ReviewableEntitlementA list of entitlements associated with this Access Profile[optional]
CreatedSystem.DateTimeDate the Access Profile was created.[optional]
ModifiedSystem.DateTimeDate the Access Profile was last modified.[optional]

Examples

  • Prepare the resource
$ReviewableAccessProfile = Initialize-PSSailpoint.V2024ReviewableAccessProfile  -Id 2c91808a7190d06e01719938fcd20792 `
-Name Employee-database-read-write `
-Description Collection of entitlements to read/write the employee database `
-Privileged false `
-CloudGoverned false `
-EndDate 2021-12-25T00:00Z `
-Owner null `
-Entitlements null `
-Created 2021-01-01T22:32:58.104Z `
-Modified 2021-02-01T22:32:58.104Z
  • Convert the resource to JSON
$ReviewableAccessProfile | ConvertTo-JSON

[Back to top]