Skip to main content

AccessItemEntitlementResponse

Properties

NameTypeDescriptionNotes
AccessTypeStringthe access item type. entitlement in this case[optional]
IdStringthe access item id[optional]
AttributeStringthe entitlement attribute[optional]
ValueStringthe associated value[optional]
EntitlementTypeStringthe type of entitlement[optional]
SourceNameStringthe name of the source[optional]
SourceIdStringthe id of the source[optional]
DescriptionStringthe description for the entitlment[optional]
DisplayNameStringthe display name of the identity[optional]
StandaloneBooleanindicates whether the entitlement is standalone[required]
PrivilegedBooleanindicates whether the entitlement is privileged[required]
CloudGovernedBooleanindicates whether the entitlement is cloud governed[required]

Examples

  • Prepare the resource
$AccessItemEntitlementResponse = Initialize-PSSailpoint.BetaAccessItemEntitlementResponse  -AccessType entitlement `
-Id 2c918087763e69d901763e72e97f006f `
-Attribute groups `
-Value Upward mobility access `
-EntitlementType entitlement `
-SourceName DataScienceDataset `
-SourceId 2793o32dwd `
-Description Entitlement - Workday/Citizenship access `
-DisplayName Dr. Arden Rogahn MD `
-Standalone true `
-Privileged false `
-CloudGoverned true
  • Convert the resource to JSON
$AccessItemEntitlementResponse | ConvertTo-JSON

[Back to top]