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-external-attributes
title: ExternalAttributes
pagination_label: ExternalAttributes
sidebar_label: ExternalAttributes
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ExternalAttributes', 'V2025ExternalAttributes']
slug: /tools/sdk/powershell/v2025/models/external-attributes
tags: ['SDK', 'Software Development Kit', 'ExternalAttributes', 'V2025ExternalAttributes']
---
# ExternalAttributes
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | A unique name for the external trigger | [optional]
**Description** | **String** | Additional context about the external trigger | [optional]
**ClientId** | **String** | OAuth Client ID to authenticate with this trigger | [optional]
**Url** | **String** | URL to invoke this workflow | [optional]
## Examples
- Prepare the resource
```powershell
$ExternalAttributes = Initialize-PSSailpoint.V2025ExternalAttributes -Name search-and-notify `
-Description Run a search and notify the results `
-ClientId 87e239b2-b85b-4bde-b9a7-55bf304ddcdc `
-Url https://tenant.api.identitynow.com/beta/workflows/execute/external/c79e0079-562c-4df5-aa73-60a9e25c916d
```
- Convert the resource to JSON
```powershell
$ExternalAttributes | ConvertTo-JSON
```
[[Back to top]](#)