adding v3 docs back in

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:41:57 -05:00
parent f36c734ca4
commit 7194b934e8
658 changed files with 47533 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: entitlement-ref
title: EntitlementRef
pagination_label: EntitlementRef
sidebar_label: EntitlementRef
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementRef']
slug: /tools/sdk/powershell/v3/models/entitlement-ref
tags: ['SDK', 'Software Development Kit', 'EntitlementRef']
---
# EntitlementRef
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "ENTITLEMENT" ] | Entitlement's DTO type. | [optional]
**Id** | Pointer to **String** | Entitlement's ID. | [optional]
**Name** | Pointer to **String** | Entitlement's display name. | [optional]
## Examples
- Prepare the resource
```powershell
$EntitlementRef = Initialize-PSSailpoint.V3EntitlementRef -Type ENTITLEMENT `
-Id 2c91809773dee32014e13e122092014e `
-Name CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local
```
- Convert the resource to JSON
```powershell
$EntitlementRef | ConvertTo-JSON
```
[[Back to top]](#)