Skip to main content

AttrSyncSourceConfig

Properties

NameTypeDescriptionNotes
SourceAttrSyncSource[required]
Attributes[]AttrSyncSourceAttributeConfigAttribute synchronization configuration for specific identity attributes in the context of a source[required]

Examples

  • Prepare the resource
$AttrSyncSourceConfig = Initialize-PSSailpoint.V2024AttrSyncSourceConfig  -Source null `
-Attributes [{name=email, displayName=Email, enabled=true, target=mail}, {name=firstname, displayName=First Name, enabled=false, target=givenName}]
  • Convert the resource to JSON
$AttrSyncSourceConfig | ConvertTo-JSON

[Back to top]