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,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]](#)