removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,41 +0,0 @@
---
id: identity-reference-with-name-and-email
title: IdentityReferenceWithNameAndEmail
pagination_label: IdentityReferenceWithNameAndEmail
sidebar_label: IdentityReferenceWithNameAndEmail
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityReferenceWithNameAndEmail']
slug: /tools/sdk/powershell/beta/models/identity-reference-with-name-and-email
tags: ['SDK', 'Software Development Kit', 'IdentityReferenceWithNameAndEmail']
---
# IdentityReferenceWithNameAndEmail
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **String** | The type can only be IDENTITY. This is read-only. | [optional]
**Id** | Pointer to **String** | Identity ID. | [optional]
**Name** | Pointer to **String** | Identity's human-readable display name. This is read-only. | [optional]
**Email** | Pointer to **String** | Identity's email address. This is read-only. | [optional]
## Examples
- Prepare the resource
```powershell
$IdentityReferenceWithNameAndEmail = Initialize-PSSailpoint.BetaIdentityReferenceWithNameAndEmail -Type IDENTITY `
-Id 5168015d32f890ca15812c9180835d2e `
-Name Alison Ferguso `
-Email alison.ferguso@identitysoon.com
```
- Convert the resource to JSON
```powershell
$IdentityReferenceWithNameAndEmail | ConvertTo-JSON
```
[[Back to top]](#)