adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: entitlement-owner
title: EntitlementOwner
pagination_label: EntitlementOwner
sidebar_label: EntitlementOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementOwner']
slug: /tools/sdk/powershell/beta/models/entitlement-owner
tags: ['SDK', 'Software Development Kit', 'EntitlementOwner']
---
# EntitlementOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The owner id for the entitlement | [optional]
**Name** | Pointer to **String** | The owner name for the entitlement | [optional]
**Type** | Pointer to **Enum** [ "IDENTITY" ] | The type of the owner. Initially only type IDENTITY is supported | [optional]
## Examples
- Prepare the resource
```powershell
$EntitlementOwner = Initialize-PSSailpoint.BetaEntitlementOwner -Id 2a2fdacca5e345f18bf7970cfbb8fec2 `
-Name identity 1 `
-Type IDENTITY
```
- Convert the resource to JSON
```powershell
$EntitlementOwner | ConvertTo-JSON
```
[[Back to top]](#)