adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-complete-invocation-input
title: CompleteInvocationInput
pagination_label: CompleteInvocationInput
sidebar_label: CompleteInvocationInput
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CompleteInvocationInput', 'BetaCompleteInvocationInput']
slug: /tools/sdk/powershell/beta/models/complete-invocation-input
tags: ['SDK', 'Software Development Kit', 'CompleteInvocationInput', 'BetaCompleteInvocationInput']
---
# CompleteInvocationInput
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**LocalizedError** | Pointer to [**LocalizedMessage**](localized-message) | | [optional]
**Output** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Trigger output that completed the invocation. Its schema is defined in the trigger definition. | [optional]
## Examples
- Prepare the resource
```powershell
$CompleteInvocationInput = Initialize-PSSailpoint.BetaCompleteInvocationInput -LocalizedError null `
-Output {approved=false}
```
- Convert the resource to JSON
```powershell
$CompleteInvocationInput | ConvertTo-JSON
```
[[Back to top]](#)