Skip to main content

CompleteInvocationInput

Properties

NameTypeDescriptionNotes
LocalizedErrorLocalizedMessage[optional]
OutputSystemCollectionsHashtableTrigger output that completed the invocation. Its schema is defined in the trigger definition.[optional]

Examples

  • Prepare the resource
$CompleteInvocationInput = Initialize-CompleteInvocationInput  -LocalizedError null `
-Output {"approved":false}
  • Convert the resource to JSON
$CompleteInvocationInput | ConvertTo-JSON

[Back to top]