adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: form-used-by
title: FormUsedBy
pagination_label: FormUsedBy
sidebar_label: FormUsedBy
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FormUsedBy']
slug: /tools/sdk/powershell/v2024/models/form-used-by
tags: ['SDK', 'Software Development Kit', 'FormUsedBy']
---
# FormUsedBy
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "WORKFLOW", "SOURCE", "MySailPoint" ] | FormUsedByType value. WORKFLOW FormUsedByTypeWorkflow SOURCE FormUsedByTypeSource MySailPoint FormUsedByType | [optional]
**Id** | Pointer to **String** | Unique identifier of the system using the form. | [optional]
**Name** | Pointer to **String** | Name of the system using the form. | [optional]
## Examples
- Prepare the resource
```powershell
$FormUsedBy = Initialize-PSSailpoint.V2024FormUsedBy -Type WORKFLOW `
-Id 61940a92-5484-42bc-bc10-b9982b218cdf `
-Name Access Request Form
```
- Convert the resource to JSON
```powershell
$FormUsedBy | ConvertTo-JSON
```
[[Back to top]](#)