Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/SourceConnectionsDto.md
2025-02-03 22:09:17 +00:00

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

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 []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]