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

2.0 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
v2025-dependant-app-connections DependantAppConnections DependantAppConnections DependantAppConnections powershellsdk
powershell
PowerShell
sdk
DependantAppConnections
V2025DependantAppConnections
/tools/sdk/powershell/v2025/models/dependant-app-connections
SDK
Software Development Kit
DependantAppConnections
V2025DependantAppConnections

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 [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 The owner of the connected Application [optional]
AppCenterEnabled Boolean Is App Center enabled for connected Application [optional] [default to $false]

Examples

  • Prepare the resource
$DependantAppConnections = Initialize-V2025DependantAppConnections  -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
$DependantAppConnections | ConvertTo-JSON

[Back to top]