adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: workflow-o-auth-client
title: WorkflowOAuthClient
pagination_label: WorkflowOAuthClient
sidebar_label: WorkflowOAuthClient
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowOAuthClient']
slug: /tools/sdk/powershell/v2024/models/workflow-o-auth-client
tags: ['SDK', 'Software Development Kit', 'WorkflowOAuthClient']
---
# WorkflowOAuthClient
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | OAuth client ID for the trigger. This is a UUID generated upon creation. | [optional]
**Secret** | Pointer to **String** | OAuthClient secret. | [optional]
**Url** | Pointer to **String** | URL for the external trigger to invoke | [optional]
## Examples
- Prepare the resource
```powershell
$WorkflowOAuthClient = Initialize-PSSailpoint.V2024WorkflowOAuthClient -Id 1a58c03a6bf64dc2876f6988c6e2c7b7 `
-Secret 00cc24a7fe810fe06a7cb38bc168ae104d703c7abb296f9944dc68e69ddb578b `
-Url https://tenant.api.identitynow.com/beta/workflows/execute/external/c17bea3a-574d-453c-9e04-4365fbf5af0b
```
- Convert the resource to JSON
```powershell
$WorkflowOAuthClient | ConvertTo-JSON
```
[[Back to top]](#)