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,41 +0,0 @@
---
id: invocation
title: Invocation
pagination_label: Invocation
sidebar_label: Invocation
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Invocation']
slug: /tools/sdk/powershell/beta/models/invocation
tags: ['SDK', 'Software Development Kit', 'Invocation']
---
# Invocation
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Invocation ID | [optional]
**TriggerId** | Pointer to **String** | Trigger ID | [optional]
**Secret** | Pointer to **String** | Unique invocation secret. | [optional]
**ContentJson** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | JSON map of invocation metadata. | [optional]
## Examples
- Prepare the resource
```powershell
$Invocation = Initialize-PSSailpoint.BetaInvocation -Id 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
-TriggerId idn:access-requested `
-Secret 0f979022-08be-44f2-b6f9-7393ec73ed9b `
-ContentJson {workflowId=1234}
```
- Convert the resource to JSON
```powershell
$Invocation | ConvertTo-JSON
```
[[Back to top]](#)