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: account-all-of-source-owner
title: AccountAllOfSourceOwner
pagination_label: AccountAllOfSourceOwner
sidebar_label: AccountAllOfSourceOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountAllOfSourceOwner', 'AccountAllOfSourceOwner']
slug: /tools/sdk/powershell/v3/models/account-all-of-source-owner
tags: ['SDK', 'Software Development Kit', 'AccountAllOfSourceOwner', 'AccountAllOfSourceOwner']
---
# AccountAllOfSourceOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | The ID of the identity | [optional]
**Type** | **Enum** [ "IDENTITY" ] | The type of object being referenced | [optional]
**Name** | **String** | display name of identity | [optional]
## Examples
- Prepare the resource
```powershell
$AccountAllOfSourceOwner = Initialize-PSSailpoint.V3AccountAllOfSourceOwner -Id 2c918084660f45d6016617daa9210584 `
-Type IDENTITY `
-Name Adam Kennedy
```
- Convert the resource to JSON
```powershell
$AccountAllOfSourceOwner | ConvertTo-JSON
```
[[Back to top]](#)