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,41 @@
---
id: beta-user-app-owner
title: UserAppOwner
pagination_label: UserAppOwner
sidebar_label: UserAppOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'UserAppOwner', 'BetaUserAppOwner']
slug: /tools/sdk/powershell/beta/models/user-app-owner
tags: ['SDK', 'Software Development Kit', 'UserAppOwner', 'BetaUserAppOwner']
---
# 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.BetaUserAppOwner -Id 2c9180827ca885d7017ca8ce28a000eb `
-Type IDENTITY `
-Name John `
-Alias John.Doe
```
- Convert the resource to JSON
```powershell
$UserAppOwner | ConvertTo-JSON
```
[[Back to top]](#)