update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: identity-reference-with-id
title: IdentityReferenceWithId
pagination_label: IdentityReferenceWithId
sidebar_label: IdentityReferenceWithId
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityReferenceWithId']
slug: /tools/sdk/powershell/beta/models/identity-reference-with-id
tags: ['SDK', 'Software Development Kit', 'IdentityReferenceWithId']
---
# IdentityReferenceWithId
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to [**DtoType**](dto-type) | | [optional]
**Id** | Pointer to **String** | Identity id | [optional]
## Examples
- Prepare the resource
```powershell
$IdentityReferenceWithId = Initialize-PSSailpoint.BetaIdentityReferenceWithId -Type null `
-Id 5168015d32f890ca15812c9180835d2e
```
- Convert the resource to JSON
```powershell
$IdentityReferenceWithId | ConvertTo-JSON
```
[[Back to top]](#)