adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-connected-object
title: ConnectedObject
pagination_label: ConnectedObject
sidebar_label: ConnectedObject
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ConnectedObject', 'V2024ConnectedObject']
slug: /tools/sdk/powershell/v2024/models/connected-object
tags: ['SDK', 'Software Development Kit', 'ConnectedObject', 'V2024ConnectedObject']
---
# ConnectedObject
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to [**ConnectedObjectType**](connected-object-type) | | [optional]
**Id** | Pointer to **String** | ID of the object to which this reference applies | [optional]
**Name** | Pointer to **String** | Human-readable name of Connected object | [optional]
**Description** | Pointer to **String** | Description of the Connected object. | [optional]
## Examples
- Prepare the resource
```powershell
$ConnectedObject = Initialize-PSSailpoint.V2024ConnectedObject -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
$ConnectedObject | ConvertTo-JSON
```
[[Back to top]](#)