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-test-invocation
title: TestInvocation
pagination_label: TestInvocation
sidebar_label: TestInvocation
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TestInvocation', 'V2025TestInvocation']
slug: /tools/sdk/powershell/v2025/models/test-invocation
tags: ['SDK', 'Software Development Kit', 'TestInvocation', 'V2025TestInvocation']
---
# TestInvocation
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**TriggerId** | **String** | Trigger ID | [required]
**VarInput** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Mock input to use for test invocation. This must adhere to the input schema defined in the trigger being invoked. If this property is omitted, then the default trigger sample payload will be sent. | [optional]
**ContentJson** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | JSON map of invocation metadata. | [required]
**SubscriptionIds** | **[]String** | Only send the test event to the subscription IDs listed. If omitted, the test event will be sent to all subscribers. | [optional]
## Examples
- Prepare the resource
```powershell
$TestInvocation = Initialize-PSSailpoint.V2025TestInvocation -TriggerId idn:access-request-post-approval `
-VarInput {identityId=201327fda1c44704ac01181e963d463c} `
-ContentJson {workflowId=1234} `
-SubscriptionIds [0f11f2a4-7c94-4bf3-a2bd-742580fe3bde]
```
- Convert the resource to JSON
```powershell
$TestInvocation | ConvertTo-JSON
```
[[Back to top]](#)