Skip to main content

IdentityEntitlementDetailsEntitlementDto

Properties

NameTypeDescriptionNotes
IdStringThe entitlement id[optional]
NameStringThe entitlement name[optional]
CreatedSystem.DateTimeTime when the entitlement was last modified[optional]
ModifiedSystem.DateTimeTime when the entitlement was last modified[optional]
DescriptionStringThe description of the entitlement[optional]
TypeStringThe type of the object, will always be ""ENTITLEMENT""[optional]
SourceIdStringThe source ID[optional]
SourceNameStringThe source name[optional]
OwnerOwnerDto[optional]
ValueStringThe value of the entitlement[optional]
Flags[]Stringa list of properties informing the viewer about the entitlement[optional]

Examples

  • Prepare the resource
$IdentityEntitlementDetailsEntitlementDto = Initialize-PSSailpoint.V2025IdentityEntitlementDetailsEntitlementDto  -Id 2c91808874ff91550175097daaec161c `
-Name LauncherTest2 `
-Created 2020-10-08T18:33:52.029Z `
-Modified 2020-10-08T18:33:52.029Z `
-Description CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local `
-Type ENTITLEMENT `
-SourceId 2c9180827ca885d7017ca8ce28a000eb `
-SourceName ODS-AD-Source `
-Owner null `
-Value CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local `
-Flags [privileged]
  • Convert the resource to JSON
$IdentityEntitlementDetailsEntitlementDto | ConvertTo-JSON

[Back to top]