Update to powershell SDK docs: 13400083192

This commit is contained in:
developer-relations-sp
2025-02-18 21:09:13 +00:00
parent 63e80b2c1b
commit d8aeab4d75
78 changed files with 1364 additions and 340 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2024-event-target
title: EventTarget
pagination_label: EventTarget
sidebar_label: EventTarget
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EventTarget', 'V2024EventTarget']
slug: /tools/sdk/powershell/v2024/models/event-target
tags: ['SDK', 'Software Development Kit', 'EventTarget', 'V2024EventTarget']
---
# EventTarget
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | Name of the target, or recipient, of the event. | [optional]
## Examples
- Prepare the resource
```powershell
$EventTarget = Initialize-PSSailpoint.V2024EventTarget -Name Carol.Adams
```
- Convert the resource to JSON
```powershell
$EventTarget | ConvertTo-JSON
```
[[Back to top]](#)