Skip to main content

AccountCorrelated

Properties

NameTypeDescriptionNotes
IdentityAccountCorrelatedIdentity[required]
SourceAccountCorrelatedSource[required]
AccountAccountCorrelatedAccount[required]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4The attributes associated with the account. Attributes are unique per source.[required]
EntitlementCountInt32The number of entitlements associated with this account.[optional]

Examples

  • Prepare the resource
$AccountCorrelated = Initialize-PSSailpoint.V2024AccountCorrelated  -Identity null `
-Source null `
-Account null `
-Attributes {sn=doe, givenName=john, memberOf=[cn=g1,ou=groups,dc=acme,dc=com, cn=g2,ou=groups,dc=acme,dc=com, cn=g3,ou=groups,dc=acme,dc=com]} `
-EntitlementCount 0
  • Convert the resource to JSON
$AccountCorrelated | ConvertTo-JSON

[Back to top]