Update to powershell SDK docs: 13842472521

This commit is contained in:
developer-relations-sp
2025-03-13 18:55:39 +00:00
parent 9f25cd397a
commit dec826c738
11 changed files with 325 additions and 9 deletions

View File

@@ -746,7 +746,7 @@ Use this API to get all dependent Profiles, Attributes, Applications and Custom
### Parameters
Param Type | Name | Data Type | Required | Description
------------- | ------------- | ------------- | ------------- | -------------
Path | Id | **String** | True | Source ID.
Path | SourceId | **String** | True | Source ID.
### Return type
[**SourceConnectionsDto**](../models/source-connections-dto)
@@ -768,15 +768,15 @@ Code | Description | Data Type
### Example
```powershell
$Id = "2c9180835d191a86015d28455b4a2329" # String | Source ID.
$SourceId = "2c9180835d191a86015d28455b4a2329" # String | Source ID.
# Get Source Connections by ID
try {
Get-SourceConnections -Id $Id
Get-SourceConnections -SourceId $SourceId
# Below is a request that includes all optional parameters
# Get-SourceConnections -Id $Id
# Get-SourceConnections -SourceId $SourceId
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-SourceConnections"
Write-Host $_.ErrorDetails

View File

@@ -20,7 +20,7 @@ Name | Type | Description | Notes
**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**](transform) | | [optional]
**DependentCustomTransforms** | [**[]TransformRead**](transform-read) | 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**](dependant-app-connections) | | [optional]
**MissingDependents** | [**[]DependantConnectionsMissingDto**](dependant-connections-missing-dto) | | [optional]
@@ -32,7 +32,7 @@ $SourceConnectionsDto = Initialize-PSSailpoint.V3SourceConnectionsDto -Identity
-CredentialProfiles null `
-SourceAttributes null `
-MappingProfiles [ODS-AD-Profile, ODS-Profile2] `
-DependentCustomTransforms null `
-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
```