adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,41 @@
---
id: invocation
title: Invocation
pagination_label: Invocation
sidebar_label: Invocation
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Invocation']
slug: /tools/sdk/powershell/v2024/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.V2024Invocation -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]](#)