mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: beta-external-attributes
|
||||
title: ExternalAttributes
|
||||
pagination_label: ExternalAttributes
|
||||
sidebar_label: ExternalAttributes
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ExternalAttributes', 'BetaExternalAttributes']
|
||||
slug: /tools/sdk/powershell/beta/models/external-attributes
|
||||
tags: ['SDK', 'Software Development Kit', 'ExternalAttributes', 'BetaExternalAttributes']
|
||||
---
|
||||
|
||||
|
||||
# ExternalAttributes
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | Pointer to **String** | A unique name for the external trigger | [optional]
|
||||
**Description** | Pointer to **String** | Additional context about the external trigger | [optional]
|
||||
**ClientId** | Pointer to **String** | OAuth Client ID to authenticate with this trigger | [optional]
|
||||
**Url** | Pointer to **String** | URL to invoke this workflow | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ExternalAttributes = Initialize-PSSailpoint.BetaExternalAttributes -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user