add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-invocation
title: Invocation
pagination_label: Invocation
sidebar_label: Invocation
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Invocation', 'V2025Invocation']
slug: /tools/sdk/powershell/v2025/models/invocation
tags: ['SDK', 'Software Development Kit', 'Invocation', 'V2025Invocation']
---
# Invocation
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Invocation ID | [optional]
**TriggerId** | **String** | Trigger ID | [optional]
**Secret** | **String** | Unique invocation secret. | [optional]
**ContentJson** | [**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.V2025Invocation -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]](#)