Skip to main content

AccessItemAccountResponse

Properties

NameTypeDescriptionNotes
AccessTypeStringthe access item type. account in this case[optional]
IdStringthe access item id[optional]
NativeIdentityStringthe native identifier used to uniquely identify an acccount[optional]
SourceNameStringthe name of the source[optional]
SourceIdStringthe id of the source[optional]
EntitlementCountStringthe number of entitlements the account will create[optional]
DisplayNameStringthe display name of the identity[optional]

Examples

  • Prepare the resource
$AccessItemAccountResponse = Initialize-PSSailpoint.BetaAccessItemAccountResponse  -AccessType account `
-Id 2c918087763e69d901763e72e97f006f `
-NativeIdentity dr.arden.ogahn.d `
-SourceName DataScienceDataset `
-SourceId 2793o32dwd `
-EntitlementCount 12 `
-DisplayName Dr. Arden Rogahn MD
  • Convert the resource to JSON
$AccessItemAccountResponse | ConvertTo-JSON

[Back to top]