Skip to main content

BaseEntitlement

Properties

NameTypeDescriptionNotes
HasPermissionsBooleanIndicates whether the entitlement has permissions.[optional] [default to $false]
DescriptionStringEntitlement's description.[optional]
AttributeStringEntitlement attribute's name.[optional]
ValueStringEntitlement's value.[optional]
SchemaStringEntitlement's schema.[optional]
PrivilegedBooleanIndicates whether the entitlement is privileged.[optional] [default to $false]
IdStringEntitlement's ID.[optional]
NameStringEntitlement's name.[optional]

Examples

  • Prepare the resource
$BaseEntitlement = Initialize-PSSailpoint.V3BaseEntitlement  -HasPermissions false `
-Description Cloud engineering `
-Attribute memberOf `
-Value CN=Cloud Engineering,DC=sailpoint,DC=COM `
-Schema group `
-Privileged false `
-Id 2c918084575812550157589064f33b89 `
-Name CN=Cloud Engineering,DC=sailpoint,DC=COM
  • Convert the resource to JSON
$BaseEntitlement | ConvertTo-JSON

[Back to top]