adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: v2024-workgroup-dto-owner
title: WorkgroupDtoOwner
pagination_label: WorkgroupDtoOwner
sidebar_label: WorkgroupDtoOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkgroupDtoOwner']
slug: /tools/sdk/powershell/v2024/models/workgroup-dto-owner
tags: ['SDK', 'Software Development Kit', 'WorkgroupDtoOwner']
---
# WorkgroupDtoOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "IDENTITY" ] | Owner's DTO type. | [optional]
**Id** | Pointer to **String** | Owner's identity ID. | [optional]
**Name** | Pointer to **String** | Owner's name. | [optional]
**DisplayName** | Pointer to **String** | The display name of the identity | [optional] [readonly]
**EmailAddress** | Pointer to **String** | The primary email address of the identity | [optional] [readonly]
## Examples
- Prepare the resource
```powershell
$WorkgroupDtoOwner = Initialize-PSSailpoint.V2024WorkgroupDtoOwner -Type IDENTITY `
-Id 2c9180a46faadee4016fb4e018c20639 `
-Name Support `
-DisplayName Support `
-EmailAddress support@sailpoint.com
```
- Convert the resource to JSON
```powershell
$WorkgroupDtoOwner | ConvertTo-JSON
```
[[Back to top]](#)