Skip to main content

SourceAppCreateDto

Properties

NameTypeDescriptionNotes
NameStringThe source app name[required]
DescriptionStringThe description of the source app[required]
MatchAllAccountsBooleanTrue if the source app match all accounts[optional] [default to $false]
AccountSourceSourceAppCreateDtoAccountSource[required]

Examples

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

[Back to top]