Skip to main content

Accountcorrelated

Properties

NameTypeDescriptionNotes
IdentityAccountcorrelatedIdentity[required]
SourceAccountcorrelatedSource[required]
AccountAccountcorrelatedAccount[required]
Attributesmap[string]AnyTypeThe 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-Accountcorrelated  -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]