Update to powershell SDK docs: 13685764589

This commit is contained in:
developer-relations-sp
2025-03-05 21:21:24 +00:00
parent 821e766805
commit d502498f7f
32 changed files with 715 additions and 134 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', 'EntitlementOwner']
slug: /tools/sdk/powershell/v3/models/entitlement-owner
tags: ['SDK', 'Software Development Kit', 'EntitlementOwner', 'EntitlementOwner']
---
# EntitlementOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | The identity ID | [optional]
**Type** | **Enum** [ "IDENTITY" ] | The type of object | [optional]
**Name** | **String** | The display name of the identity | [optional]
## Examples
- Prepare the resource
```powershell
$EntitlementOwner = Initialize-PSSailpoint.V3EntitlementOwner -Id 2c9180827ca885d7017ca8ce28a000eb `
-Type IDENTITY `
-Name john.doe
```
- Convert the resource to JSON
```powershell
$EntitlementOwner | ConvertTo-JSON
```
[[Back to top]](#)