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,41 @@
---
id: v2024-form-definition-input
title: FormDefinitionInput
pagination_label: FormDefinitionInput
sidebar_label: FormDefinitionInput
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FormDefinitionInput', 'V2024FormDefinitionInput']
slug: /tools/sdk/powershell/v2024/models/form-definition-input
tags: ['SDK', 'Software Development Kit', 'FormDefinitionInput', 'V2024FormDefinitionInput']
---
# FormDefinitionInput
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Unique identifier for the form input. | [optional]
**Type** | Pointer to **Enum** [ "STRING" ] | FormDefinitionInputType value. STRING FormDefinitionInputTypeString | [optional]
**Label** | Pointer to **String** | Name for the form input. | [optional]
**Description** | Pointer to **String** | Form input's description. | [optional]
## Examples
- Prepare the resource
```powershell
$FormDefinitionInput = Initialize-PSSailpoint.V2024FormDefinitionInput -Id 00000000-0000-0000-0000-000000000000 `
-Type STRING `
-Label input1 `
-Description A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic
```
- Convert the resource to JSON
```powershell
$FormDefinitionInput | ConvertTo-JSON
```
[[Back to top]](#)