Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AttrSyncSourceConfig.md
2025-05-07 14:37:48 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-attr-sync-source-config AttrSyncSourceConfig AttrSyncSourceConfig AttrSyncSourceConfig powershellsdk
powershell
PowerShell
sdk
AttrSyncSourceConfig
V2024AttrSyncSourceConfig
/tools/sdk/powershell/v2024/models/attr-sync-source-config
SDK
Software Development Kit
AttrSyncSourceConfig
V2024AttrSyncSourceConfig

AttrSyncSourceConfig

Properties

Name Type Description Notes
Source AttrSyncSource [required]
Attributes []AttrSyncSourceAttributeConfig Attribute synchronization configuration for specific identity attributes in the context of a source [required]

Examples

  • Prepare the resource
$AttrSyncSourceConfig = Initialize-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]