Update to powershell SDK docs: 13183223237

This commit is contained in:
developer-relations-sp
2025-02-06 16:21:30 +00:00
parent 28a78af800
commit bce7a2a2be
13 changed files with 810 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-ref
title: Ref
pagination_label: Ref
sidebar_label: Ref
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Ref', 'V2024Ref']
slug: /tools/sdk/powershell/v2024/models/ref
tags: ['SDK', 'Software Development Kit', 'Ref', 'V2024Ref']
---
# Ref
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | [**DtoType**](dto-type) | | [optional]
**Id** | **String** | ID of the object to which this reference applies | [optional]
## Examples
- Prepare the resource
```powershell
$Ref = Initialize-PSSailpoint.V2024Ref -Type null `
-Id 2c91808568c529c60168cca6f90c1313
```
- Convert the resource to JSON
```powershell
$Ref | ConvertTo-JSON
```
[[Back to top]](#)