adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: reviewable-entitlement-account-owner
title: ReviewableEntitlementAccountOwner
pagination_label: ReviewableEntitlementAccountOwner
sidebar_label: ReviewableEntitlementAccountOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ReviewableEntitlementAccountOwner', 'ReviewableEntitlementAccountOwner']
slug: /tools/sdk/powershell/v3/models/reviewable-entitlement-account-owner
tags: ['SDK', 'Software Development Kit', 'ReviewableEntitlementAccountOwner', 'ReviewableEntitlementAccountOwner']
---
# ReviewableEntitlementAccountOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The id associated with the machine account owner | [optional]
**Type** | Pointer to **Enum** [ "IDENTITY" ] | An enumeration of the types of Owner supported within the IdentityNow infrastructure. | [optional]
**DisplayName** | Pointer to **String** | The machine account owner's display name | [optional]
## Examples
- Prepare the resource
```powershell
$ReviewableEntitlementAccountOwner = Initialize-PSSailpoint.V3ReviewableEntitlementAccountOwner -Id 2c9180857182305e0171993737eb29e8 `
-Type IDENTITY `
-DisplayName Alison Ferguson
```
- Convert the resource to JSON
```powershell
$ReviewableEntitlementAccountOwner | ConvertTo-JSON
```
[[Back to top]](#)