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,39 @@
---
id: display-reference
title: DisplayReference
pagination_label: DisplayReference
sidebar_label: DisplayReference
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'DisplayReference', 'DisplayReference']
slug: /tools/sdk/powershell/v3/models/display-reference
tags: ['SDK', 'Software Development Kit', 'DisplayReference', 'DisplayReference']
---
# DisplayReference
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The unique ID of the referenced object. | [optional]
**Name** | Pointer to **String** | The human readable name of the referenced object. | [optional]
**DisplayName** | Pointer to **String** | | [optional]
## Examples
- Prepare the resource
```powershell
$DisplayReference = Initialize-PSSailpoint.V3DisplayReference -Id 2c91808568c529c60168cca6f90c1313 `
-Name John Doe `
-DisplayName John Q. Doe
```
- Convert the resource to JSON
```powershell
$DisplayReference | ConvertTo-JSON
```
[[Back to top]](#)