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-modified-by
title: WorkflowModifiedBy
pagination_label: WorkflowModifiedBy
sidebar_label: WorkflowModifiedBy
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowModifiedBy', 'BetaWorkflowModifiedBy']
slug: /tools/sdk/powershell/beta/models/workflow-modified-by
tags: ['SDK', 'Software Development Kit', 'WorkflowModifiedBy', 'BetaWorkflowModifiedBy']
---
# WorkflowModifiedBy
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "IDENTITY" ] | | [optional]
**Id** | Pointer to **String** | Identity ID | [optional]
**Name** | Pointer to **String** | Human-readable display name of identity. | [optional]
## Examples
- Prepare the resource
```powershell
$WorkflowModifiedBy = Initialize-PSSailpoint.BetaWorkflowModifiedBy -Type IDENTITY `
-Id 2c9180a46faadee4016fb4e018c20639 `
-Name Thomas Edison
```
- Convert the resource to JSON
```powershell
$WorkflowModifiedBy | ConvertTo-JSON
```
[[Back to top]](#)