Skip to main content

EntitlementSummary

Properties

NameTypeDescriptionNotes
IdStringThe unique ID of the referenced object.[optional]
NameStringThe human readable name of the referenced object.[optional]
DisplayNameString[optional]
DescriptionStringDescription of access item.[optional]
SourceReference1[optional]
TypeStringType of the access item.[optional]
PrivilegedBoolean[optional]
AttributeString[optional]
ValueString[optional]
StandaloneBoolean[optional]

Examples

  • Prepare the resource
$EntitlementSummary = Initialize-PSSailpoint.V2024EntitlementSummary  -Id 2c91808568c529c60168cca6f90c1313 `
-Name John Doe `
-DisplayName John Q. Doe `
-Description null `
-Source null `
-Type ENTITLEMENT `
-Privileged false `
-Attribute memberOf `
-Value CN=Buyer,OU=Groups,OU=Demo,DC=seri,DC=sailpointdemo,DC=com `
-Standalone false
  • Convert the resource to JSON
$EntitlementSummary | ConvertTo-JSON

[Back to top]