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

2.1 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-source-connections-dto SourceConnectionsDto SourceConnectionsDto SourceConnectionsDto powershellsdk
powershell
PowerShell
sdk
SourceConnectionsDto
V2024SourceConnectionsDto
/tools/sdk/powershell/v2024/models/source-connections-dto
SDK
Software Development Kit
SourceConnectionsDto
V2024SourceConnectionsDto

SourceConnectionsDto

Properties

Name Type Description Notes
IdentityProfiles []IdentityProfilesConnections The IdentityProfile attached to this source [optional]
CredentialProfiles []String Name of the CredentialProfile attached to this source [optional]
SourceAttributes []String The attributes attached to this source [optional]
MappingProfiles []String The profiles attached to this source [optional]
DependentCustomTransforms []TransformRead A list of custom transforms associated with this source. A transform will be considered associated with a source if any attributes of the transform specify the source as the sourceName. [optional]
DependentApps []DependantAppConnections [optional]
MissingDependents []DependantConnectionsMissingDto [optional]

Examples

  • Prepare the resource
$SourceConnectionsDto = Initialize-V2024SourceConnectionsDto  -IdentityProfiles null `
 -CredentialProfiles null `
 -SourceAttributes null `
 -MappingProfiles [ODS-AD-Profile, ODS-Profile2] `
 -DependentCustomTransforms [{id=61190eae-290b-4335-aeb8-7335f1fd99cb, name=Split Transform, type=split, attributes={delimiter=-, index=1, input={attributes={sourceName=Example CSV Source, attributeName=last_name}, type=accountAttribute}}, internal=false}] `
 -DependentApps null `
 -MissingDependents null
  • Convert the resource to JSON
$SourceConnectionsDto | ConvertTo-JSON

[Back to top]