Skip to main content

SourceAppPatchDto

Properties

NameTypeDescriptionNotes
IdStringThe source app id[optional]
CloudAppIdStringThe deprecated source app id[optional]
NameStringThe source app name[optional]
CreatedSystem.DateTimeTime when the source app was created[optional]
ModifiedSystem.DateTimeTime when the source app was last modified[optional]
EnabledBooleanTrue if the source app is enabled[optional] [default to $false]
ProvisionRequestEnabledBooleanTrue if the source app is provision request enabled[optional] [default to $false]
DescriptionStringThe description of the source app[optional]
MatchAllAccountsBooleanTrue if the source app match all accounts[optional] [default to $false]
AppCenterEnabledBooleanTrue if the source app is shown in the app center[optional] [default to $true]
AccessProfiles[]StringList of IDs of access profiles[optional]
AccountSourceSourceAppAccountSource[optional]
OwnerBaseReferenceDtoThe owner of source app[optional]

Examples

  • Prepare the resource
$SourceAppPatchDto = Initialize-PSSailpoint.BetaSourceAppPatchDto  -Id 2c91808874ff91550175097daaec161c `
-CloudAppId 9854520 `
-Name my app `
-Created 2020-10-08T18:33:52.029Z `
-Modified 2020-10-08T18:33:52.029Z `
-Enabled true `
-ProvisionRequestEnabled true `
-Description the source app for engineers `
-MatchAllAccounts true `
-AppCenterEnabled true `
-AccessProfiles [2c9180857725c14301772a93bb77242d, c9dc28e148a24d65b3ccb5fb8ca5ddd9] `
-AccountSource null `
-Owner null
  • Convert the resource to JSON
$SourceAppPatchDto | ConvertTo-JSON

[Back to top]