Skip to main content

AccessRequestedAccount

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
$AccessRequestedAccount = Initialize-V2024AccessRequestedAccount  -Id 2c91808a77ff216301782327a50f09bf `
-NativeIdentity dr.arden.ogahn.d `
-DisplayName Adam Archer `
-SourceId 8a80828f643d484f01643e14202e206f `
-SourceName JDBC Entitlements Source `
-EntitlementCount 2 `
-AccessType account
  • Convert the resource to JSON
$AccessRequestedAccount | ConvertTo-JSON

[Back to top]