removing part of model docs from v2024

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:52:12 -05:00
parent cb679653ff
commit fb685431b3
639 changed files with 0 additions and 26446 deletions

View File

@@ -1,37 +0,0 @@
---
id: v2024-complete-invocation-input
title: CompleteInvocationInput
pagination_label: CompleteInvocationInput
sidebar_label: CompleteInvocationInput
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CompleteInvocationInput']
slug: /tools/sdk/powershell/v2024/models/complete-invocation-input
tags: ['SDK', 'Software Development Kit', 'CompleteInvocationInput']
---
# 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.V2024CompleteInvocationInput -LocalizedError null `
-Output {approved=false}
```
- Convert the resource to JSON
```powershell
$CompleteInvocationInput | ConvertTo-JSON
```
[[Back to top]](#)