Update to powershell SDK docs: 13709983574

This commit is contained in:
developer-relations-sp
2025-03-06 23:07:50 +00:00
parent 014f2c914c
commit 0ab1259038
44 changed files with 4439 additions and 4272 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-workgroup-connection-dto-object
title: WorkgroupConnectionDtoObject
pagination_label: WorkgroupConnectionDtoObject
sidebar_label: WorkgroupConnectionDtoObject
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkgroupConnectionDtoObject', 'V2024WorkgroupConnectionDtoObject']
slug: /tools/sdk/powershell/v2024/models/workgroup-connection-dto-object
tags: ['SDK', 'Software Development Kit', 'WorkgroupConnectionDtoObject', 'V2024WorkgroupConnectionDtoObject']
---
# WorkgroupConnectionDtoObject
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | [**ConnectedObjectType**](connected-object-type) | | [optional]
**Id** | **String** | ID of the object to which this reference applies | [optional]
**Name** | **String** | Human-readable name of Connected object | [optional]
**Description** | **String** | Description of the Connected object. | [optional]
## Examples
- Prepare the resource
```powershell
$WorkgroupConnectionDtoObject = Initialize-PSSailpoint.V2024WorkgroupConnectionDtoObject -Type null `
-Id 2c91808568c529c60168cca6f90c1313 `
-Name Employee-database-read-write `
-Description Collection of entitlements to read/write the employee database.
```
- Convert the resource to JSON
```powershell
$WorkgroupConnectionDtoObject | ConvertTo-JSON
```
[[Back to top]](#)