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

1.2 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
v2024-source-app-create-dto SourceAppCreateDto SourceAppCreateDto SourceAppCreateDto powershellsdk
powershell
PowerShell
sdk
SourceAppCreateDto
V2024SourceAppCreateDto
/tools/sdk/powershell/v2024/models/source-app-create-dto
SDK
Software Development Kit
SourceAppCreateDto
V2024SourceAppCreateDto

SourceAppCreateDto

Properties

Name Type Description Notes
Name String The source app name [required]
Description String The description of the source app [required]
MatchAllAccounts Boolean True if the source app match all accounts [optional] [default to $false]
AccountSource SourceAppCreateDtoAccountSource [required]

Examples

  • Prepare the resource
$SourceAppCreateDto = Initialize-PSSailpoint.V2024SourceAppCreateDto  -Name my app `
 -Description the source app for engineers `
 -MatchAllAccounts true `
 -AccountSource null
  • Convert the resource to JSON
$SourceAppCreateDto | ConvertTo-JSON

[Back to top]