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,41 @@
---
id: user-app-owner
title: UserAppOwner
pagination_label: UserAppOwner
sidebar_label: UserAppOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'UserAppOwner']
slug: /tools/sdk/powershell/v2024/models/user-app-owner
tags: ['SDK', 'Software Development Kit', 'UserAppOwner']
---
# UserAppOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The identity ID | [optional]
**Type** | Pointer to **String** | It will always be ""IDENTITY"" | [optional]
**Name** | Pointer to **String** | The identity name | [optional]
**Alias** | Pointer to **String** | The identity alias | [optional]
## Examples
- Prepare the resource
```powershell
$UserAppOwner = Initialize-PSSailpoint.V2024UserAppOwner -Id 2c9180827ca885d7017ca8ce28a000eb `
-Type IDENTITY `
-Name John `
-Alias John.Doe
```
- Convert the resource to JSON
```powershell
$UserAppOwner | ConvertTo-JSON
```
[[Back to top]](#)