removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

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