Update to powershell SDK docs: 13400083192

This commit is contained in:
developer-relations-sp
2025-02-18 21:09:13 +00:00
parent 63e80b2c1b
commit d8aeab4d75
78 changed files with 1364 additions and 340 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-access-apps-owner
title: AccessAppsOwner
pagination_label: AccessAppsOwner
sidebar_label: AccessAppsOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessAppsOwner', 'V2024AccessAppsOwner']
slug: /tools/sdk/powershell/v2024/models/access-apps-owner
tags: ['SDK', 'Software Development Kit', 'AccessAppsOwner', 'V2024AccessAppsOwner']
---
# AccessAppsOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "IDENTITY" ] | Owner's DTO type. | [optional]
**Id** | **String** | Owner's identity ID. | [optional]
**Name** | **String** | Owner's display name. | [optional]
**Email** | **String** | Owner's email. | [optional]
## Examples
- Prepare the resource
```powershell
$AccessAppsOwner = Initialize-PSSailpoint.V2024AccessAppsOwner -Type IDENTITY `
-Id 2c9180a46faadee4016fb4e018c20639 `
-Name John Doe `
-Email john.doe@sailpoint.com
```
- Convert the resource to JSON
```powershell
$AccessAppsOwner | ConvertTo-JSON
```
[[Back to top]](#)