Skip to main content

EntitlementDto

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional] [readonly]
NameStringName of the Object[required]
CreatedSystem.DateTimeCreation date of the Object[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the Object[optional] [readonly]
AttributeStringName of the entitlement attribute[optional]
ValueStringRaw value of the entitlement[optional]
DescriptionStringEntitlment description[optional]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4Entitlement attributes[optional]
SourceSchemaObjectTypeStringSchema objectType on the given application that maps to an Account Group[optional]
PrivilegedBooleanDetermines if this Entitlement is privileged.[optional]
CloudGovernedBooleanDetermines if this Entitlement is goverened in the cloud.[optional]
SourceEntitlementSource[optional]

Examples

  • Prepare the resource
$EntitlementDto = Initialize-PSSailpoint.V2024EntitlementDto  -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-Attribute authorizationType `
-Value CN=Users,dc=sailpoint,dc=com `
-Description Active Directory DC `
-Attributes {GroupType=Security, sAMAccountName=Buyer} `
-SourceSchemaObjectType group `
-Privileged false `
-CloudGoverned false `
-Source null
  • Convert the resource to JSON
$EntitlementDto | ConvertTo-JSON

[Back to top]