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-workflow-o-auth-client
title: WorkflowOAuthClient
pagination_label: WorkflowOAuthClient
sidebar_label: WorkflowOAuthClient
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'WorkflowOAuthClient', 'V2025WorkflowOAuthClient']
slug: /tools/sdk/python/v2025/models/workflow-o-auth-client
tags: ['SDK', 'Software Development Kit', 'WorkflowOAuthClient', 'V2025WorkflowOAuthClient']
---
# WorkflowOAuthClient
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | OAuth client ID for the trigger. This is a UUID generated upon creation. | [optional]
**secret** | **str** | OAuthClient secret. | [optional]
**url** | **str** | URL for the external trigger to invoke | [optional]
}
## Example
```python
from sailpoint.v2025.models.workflow_o_auth_client import WorkflowOAuthClient
workflow_o_auth_client = WorkflowOAuthClient(
id='1a58c03a6bf64dc2876f6988c6e2c7b7',
secret='00cc24a7fe810fe06a7cb38bc168ae104d703c7abb296f9944dc68e69ddb578b',
url='https://tenant.api.identitynow.com/beta/workflows/execute/external/c17bea3a-574d-453c-9e04-4365fbf5af0b'
)
```
[[Back to top]](#)