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,37 @@
---
id: v2025-start-invocation-input
title: StartInvocationInput
pagination_label: StartInvocationInput
sidebar_label: StartInvocationInput
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'StartInvocationInput', 'V2025StartInvocationInput']
slug: /tools/sdk/python/v2025/models/start-invocation-input
tags: ['SDK', 'Software Development Kit', 'StartInvocationInput', 'V2025StartInvocationInput']
---
# StartInvocationInput
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**trigger_id** | **str** | Trigger ID | [optional]
**input** | **object** | Trigger input payload. Its schema is defined in the trigger definition. | [optional]
**content_json** | **object** | JSON map of invocation metadata | [optional]
}
## Example
```python
from sailpoint.v2025.models.start_invocation_input import StartInvocationInput
start_invocation_input = StartInvocationInput(
trigger_id='idn:access-requested',
input={identityId=201327fda1c44704ac01181e963d463c},
content_json={workflowId=1234}
)
```
[[Back to top]](#)