Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AccessItemAccountResponse.md
2025-07-24 20:31:57 +00:00

1.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-access-item-account-response AccessItemAccountResponse AccessItemAccountResponse AccessItemAccountResponse powershellsdk
powershell
PowerShell
sdk
AccessItemAccountResponse
BetaAccessItemAccountResponse
/tools/sdk/powershell/beta/models/access-item-account-response
SDK
Software Development Kit
AccessItemAccountResponse
BetaAccessItemAccountResponse

AccessItemAccountResponse

Properties

Name Type Description Notes
Id String the access item id [optional]
AccessType String the access item type. account in this case [optional]
DisplayName String the display name of the identity [optional]
SourceName String the name of the source [optional]
NativeIdentity String the native identifier used to uniquely identify an acccount [required]
SourceId String the id of the source [optional]
EntitlementCount Int32 the number of entitlements the account will create [optional]

Examples

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

[Back to top]