Skip to main content

AccountStatusChangedAccount

Properties

NameTypeDescriptionNotes
IdStringthe ID of the account in the database[optional]
NativeIdentityStringthe native identifier of the account[optional]
DisplayNameStringthe display name of the account[optional]
SourceIdStringthe ID of the source for this account[optional]
SourceNameStringthe name of the source for this account[optional]
EntitlementCountInt32the number of entitlements on this account[optional]
AccessTypeStringthis value is always ""account""[optional]

Examples

  • Prepare the resource
$AccountStatusChangedAccount = Initialize-PSSailpoint.BetaAccountStatusChangedAccount  -Id null `
-NativeIdentity null `
-DisplayName null `
-SourceId null `
-SourceName null `
-EntitlementCount null `
-AccessType null
  • Convert the resource to JSON
$AccountStatusChangedAccount | ConvertTo-JSON

[Back to top]