starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-complete-invocation
title: CompleteInvocation
pagination_label: CompleteInvocation
sidebar_label: CompleteInvocation
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'CompleteInvocation', 'BetaCompleteInvocation']
slug: /tools/sdk/python/beta/models/complete-invocation
tags: ['SDK', 'Software Development Kit', 'CompleteInvocation', 'BetaCompleteInvocation']
---
# CompleteInvocation
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**secret** | **str** | Unique invocation secret that was generated when the invocation was created. Required to authenticate to the endpoint. | [required]
**error** | **str** | The error message to indicate a failed invocation or error if any. | [optional]
**output** | **object** | Trigger output to complete the invocation. Its schema is defined in the trigger definition. | [required]
}
## Example
```python
from sailpoint.beta.models.complete_invocation import CompleteInvocation
complete_invocation = CompleteInvocation(
secret='0f11f2a4-7c94-4bf3-a2bd-742580fe3bde',
error='Access request is denied.',
output={approved=false}
)
```
[[Back to top]](#)