Skip to main content

AccessItemEntitlementResponse

Properties

NameTypeDescriptionNotes
IdStringthe access item id[optional]
AccessTypeStringthe access item type. entitlement in this case[optional]
DisplayNameStringthe display name of the identity[optional]
SourceNameStringthe name of the source[optional]
AttributeStringthe entitlement attribute[required]
ValueStringthe associated value[required]
TypeStringthe type of entitlement[required]
DescriptionStringthe description for the entitlment[optional]
SourceIdStringthe id of the source[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-V2025AccessItemEntitlementResponse  -Id 2c918087763e69d901763e72e97f006f `
-AccessType entitlement `
-DisplayName Dr. Arden Rogahn MD `
-SourceName DataScienceDataset `
-Attribute groups `
-Value Upward mobility access `
-Type ENTITLEMENT `
-Description Entitlement - Workday/Citizenship access `
-SourceId 2793o32dwd `
-Standalone true `
-Privileged false `
-CloudGoverned true
  • Convert the resource to JSON
$AccessItemEntitlementResponse | ConvertTo-JSON

[Back to top]