Skip to main content

SourceConnectionsDto

Properties

NameTypeDescriptionNotes
IdentityProfiles[]IdentityProfilesConnectionsThe IdentityProfile attached to this source[optional]
CredentialProfiles[]StringName of the CredentialProfile attached to this source[optional]
SourceAttributes[]StringThe attributes attached to this source[optional]
MappingProfiles[]StringThe profiles attached to this source[optional]
DependentCustomTransforms[]Transform[optional]
DependentApps[]DependantAppConnections[optional]
MissingDependents[]DependantConnectionsMissingDto[optional]

Examples

  • Prepare the resource
$SourceConnectionsDto = Initialize-PSSailpoint.V3SourceConnectionsDto  -IdentityProfiles null `
-CredentialProfiles null `
-SourceAttributes null `
-MappingProfiles [ODS-AD-Profile, ODS-Profile2] `
-DependentCustomTransforms null `
-DependentApps null `
-MissingDependents null
  • Convert the resource to JSON
$SourceConnectionsDto | ConvertTo-JSON

[Back to top]