mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
Update to powershell SDK docs: 13842472521
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
---
|
||||
id: v2024-dependant-app-connections
|
||||
title: DependantAppConnections
|
||||
pagination_label: DependantAppConnections
|
||||
sidebar_label: DependantAppConnections
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'DependantAppConnections', 'V2024DependantAppConnections']
|
||||
slug: /tools/sdk/powershell/v2024/models/dependant-app-connections
|
||||
tags: ['SDK', 'Software Development Kit', 'DependantAppConnections', 'V2024DependantAppConnections']
|
||||
---
|
||||
|
||||
|
||||
# DependantAppConnections
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**CloudAppId** | **String** | Id of the connected Application | [optional]
|
||||
**Description** | **String** | Description of the connected Application | [optional]
|
||||
**Enabled** | **Boolean** | Is the Application enabled | [optional] [default to $true]
|
||||
**ProvisionRequestEnabled** | **Boolean** | Is Provisioning enabled for connected Application | [optional] [default to $true]
|
||||
**AccountSource** | [**DependantAppConnectionsAccountSource**](dependant-app-connections-account-source) | | [optional]
|
||||
**LauncherCount** | **Int64** | The amount of launchers for connected Application (long type) | [optional]
|
||||
**MatchAllAccount** | **Boolean** | Is Provisioning enabled for connected Application | [optional] [default to $false]
|
||||
**Owner** | [**[]BaseReferenceDto**](base-reference-dto) | The owner of the connected Application | [optional]
|
||||
**AppCenterEnabled** | **Boolean** | Is App Center enabled for connected Application | [optional] [default to $false]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$DependantAppConnections = Initialize-PSSailpoint.V2024DependantAppConnections -CloudAppId 9e3cdd80edf84f119327df8bbd5bb5ac `
|
||||
-Description This is a Sailpoint application `
|
||||
-Enabled true `
|
||||
-ProvisionRequestEnabled true `
|
||||
-AccountSource null `
|
||||
-LauncherCount 100 `
|
||||
-MatchAllAccount true `
|
||||
-Owner null `
|
||||
-AppCenterEnabled false
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$DependantAppConnections | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: v2024-dependant-app-connections-account-source
|
||||
title: DependantAppConnectionsAccountSource
|
||||
pagination_label: DependantAppConnectionsAccountSource
|
||||
sidebar_label: DependantAppConnectionsAccountSource
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'DependantAppConnectionsAccountSource', 'V2024DependantAppConnectionsAccountSource']
|
||||
slug: /tools/sdk/powershell/v2024/models/dependant-app-connections-account-source
|
||||
tags: ['SDK', 'Software Development Kit', 'DependantAppConnectionsAccountSource', 'V2024DependantAppConnectionsAccountSource']
|
||||
---
|
||||
|
||||
|
||||
# DependantAppConnectionsAccountSource
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**UseForPasswordManagement** | **Boolean** | Use this Account Source for password management | [optional] [default to $false]
|
||||
**PasswordPolicies** | [**[]DependantAppConnectionsAccountSourcePasswordPoliciesInner**](dependant-app-connections-account-source-password-policies-inner) | A list of Password Policies for this Account Source | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$DependantAppConnectionsAccountSource = Initialize-PSSailpoint.V2024DependantAppConnectionsAccountSource -UseForPasswordManagement false `
|
||||
-PasswordPolicies null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$DependantAppConnectionsAccountSource | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: v2024-dependant-app-connections-account-source-password-policies-inner
|
||||
title: DependantAppConnectionsAccountSourcePasswordPoliciesInner
|
||||
pagination_label: DependantAppConnectionsAccountSourcePasswordPoliciesInner
|
||||
sidebar_label: DependantAppConnectionsAccountSourcePasswordPoliciesInner
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'DependantAppConnectionsAccountSourcePasswordPoliciesInner', 'V2024DependantAppConnectionsAccountSourcePasswordPoliciesInner']
|
||||
slug: /tools/sdk/powershell/v2024/models/dependant-app-connections-account-source-password-policies-inner
|
||||
tags: ['SDK', 'Software Development Kit', 'DependantAppConnectionsAccountSourcePasswordPoliciesInner', 'V2024DependantAppConnectionsAccountSourcePasswordPoliciesInner']
|
||||
---
|
||||
|
||||
|
||||
# DependantAppConnectionsAccountSourcePasswordPoliciesInner
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | **String** | DTO type | [optional]
|
||||
**Id** | **String** | ID of the object to which this reference applies | [optional]
|
||||
**Name** | **String** | Human-readable display name of the object to which this reference applies | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$DependantAppConnectionsAccountSourcePasswordPoliciesInner = Initialize-PSSailpoint.V2024DependantAppConnectionsAccountSourcePasswordPoliciesInner -Type PASSWORD_POLICY `
|
||||
-Id 2c91808568c529c60168cca6f90c1313 `
|
||||
-Name Policy ODS
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$DependantAppConnectionsAccountSourcePasswordPoliciesInner | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: v2024-dependant-connections-missing-dto
|
||||
title: DependantConnectionsMissingDto
|
||||
pagination_label: DependantConnectionsMissingDto
|
||||
sidebar_label: DependantConnectionsMissingDto
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'DependantConnectionsMissingDto', 'V2024DependantConnectionsMissingDto']
|
||||
slug: /tools/sdk/powershell/v2024/models/dependant-connections-missing-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'DependantConnectionsMissingDto', 'V2024DependantConnectionsMissingDto']
|
||||
---
|
||||
|
||||
|
||||
# DependantConnectionsMissingDto
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DependencyType** | **Enum** [ "identityProfiles", "credentialProfiles", "mappingProfiles", "sourceAttributes", "dependantCustomTransforms", "dependantApps" ] | The type of dependency type that is missing in the SourceConnections | [optional]
|
||||
**Reason** | **String** | The reason why this dependency is missing | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$DependantConnectionsMissingDto = Initialize-PSSailpoint.V2024DependantConnectionsMissingDto -DependencyType dependantApps `
|
||||
-Reason If there was an error retrieving any dependencies, it would lbe listed here
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$DependantConnectionsMissingDto | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: v2024-identity-profiles-connections
|
||||
title: IdentityProfilesConnections
|
||||
pagination_label: IdentityProfilesConnections
|
||||
sidebar_label: IdentityProfilesConnections
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityProfilesConnections', 'V2024IdentityProfilesConnections']
|
||||
slug: /tools/sdk/powershell/v2024/models/identity-profiles-connections
|
||||
tags: ['SDK', 'Software Development Kit', 'IdentityProfilesConnections', 'V2024IdentityProfilesConnections']
|
||||
---
|
||||
|
||||
|
||||
# IdentityProfilesConnections
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | **String** | ID of the IdentityProfile this reference applies | [optional]
|
||||
**Name** | **String** | Human-readable display name of the IdentityProfile to which this reference applies | [optional]
|
||||
**IdentityCount** | **Int64** | The Number of Identities managed by this IdentityProfile | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$IdentityProfilesConnections = Initialize-PSSailpoint.V2024IdentityProfilesConnections -Id 76cfddb62818416f816bc494410f46c4 `
|
||||
-Name ODS-Identity-Profile `
|
||||
-IdentityCount 100
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$IdentityProfilesConnections | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
---
|
||||
id: v2024-source-connections-dto
|
||||
title: SourceConnectionsDto
|
||||
pagination_label: SourceConnectionsDto
|
||||
sidebar_label: SourceConnectionsDto
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceConnectionsDto', 'V2024SourceConnectionsDto']
|
||||
slug: /tools/sdk/powershell/v2024/models/source-connections-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'SourceConnectionsDto', 'V2024SourceConnectionsDto']
|
||||
---
|
||||
|
||||
|
||||
# SourceConnectionsDto
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**IdentityProfiles** | [**[]IdentityProfilesConnections**](identity-profiles-connections) | 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**](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]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$SourceConnectionsDto = Initialize-PSSailpoint.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
|
||||
```powershell
|
||||
$SourceConnectionsDto | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user