add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

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