Skip to main content

SourceAppBulkUpdateRequest

Properties

NameTypeDescriptionNotes
AppIds[]StringList of source app ids to update[required]
JsonPatch[]JsonPatchOperationThe JSONPatch payload used to update the source app.[required]

Examples

  • Prepare the resource
$SourceAppBulkUpdateRequest = Initialize-PSSailpoint.BetaSourceAppBulkUpdateRequest  -AppIds [2c91808a7624751a01762f19d665220d, 2c91808a7624751a01762f19d67c220e, 2c91808a7624751a01762f19d692220f] `
-JsonPatch [{op=replace, path=/enabled, value=false}, {op=replace, path=/matchAllAccounts, value=false}]
  • Convert the resource to JSON
$SourceAppBulkUpdateRequest | ConvertTo-JSON

[Back to top]