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: beta-workflow-body-owner
title: WorkflowBodyOwner
pagination_label: WorkflowBodyOwner
sidebar_label: WorkflowBodyOwner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowBodyOwner', 'BetaWorkflowBodyOwner']
slug: /tools/sdk/powershell/beta/models/workflow-body-owner
tags: ['SDK', 'Software Development Kit', 'WorkflowBodyOwner', 'BetaWorkflowBodyOwner']
---
# WorkflowBodyOwner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "IDENTITY" ] | The type of object that is referenced | [optional]
**Id** | Pointer to **String** | The unique ID of the object | [optional]
**Name** | Pointer to **String** | The name of the object | [optional]
## Examples
- Prepare the resource
```powershell
$WorkflowBodyOwner = Initialize-PSSailpoint.BetaWorkflowBodyOwner -Type IDENTITY `
-Id 2c91808568c529c60168cca6f90c1313 `
-Name William Wilson
```
- Convert the resource to JSON
```powershell
$WorkflowBodyOwner | ConvertTo-JSON
```
[[Back to top]](#)