Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/CompleteInvocation.md
2025-02-28 14:46:13 +00:00

1.4 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-complete-invocation CompleteInvocation CompleteInvocation CompleteInvocation powershellsdk
powershell
PowerShell
sdk
CompleteInvocation
V2024CompleteInvocation
/tools/sdk/powershell/v2024/models/complete-invocation
SDK
Software Development Kit
CompleteInvocation
V2024CompleteInvocation

CompleteInvocation

Properties

Name Type Description Notes
Secret String Unique invocation secret that was generated when the invocation was created. Required to authenticate to the endpoint. [required]
VarError String The error message to indicate a failed invocation or error if any. [optional]
Output [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 Trigger output to complete the invocation. Its schema is defined in the trigger definition. [required]

Examples

  • Prepare the resource
$CompleteInvocation = Initialize-PSSailpoint.V2024CompleteInvocation  -Secret 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
 -VarError Access request is denied. `
 -Output {approved=false}
  • Convert the resource to JSON
$CompleteInvocation | ConvertTo-JSON

[Back to top]