mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
1.7 KiB
1.7 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-form-element | FormElement | FormElement | FormElement | powershellsdk |
|
/tools/sdk/powershell/beta/models/form-element |
|
FormElement
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Id | String | Form element identifier. | [optional] |
| ElementType | Enum [ "TEXT", "TOGGLE", "TEXTAREA", "HIDDEN", "PHONE", "EMAIL", "SELECT", "DATE", "SECTION", "COLUMN_SET", "IMAGE", "DESCRIPTION" ] | FormElementType value. TEXT FormElementTypeText TOGGLE FormElementTypeToggle TEXTAREA FormElementTypeTextArea HIDDEN FormElementTypeHidden PHONE FormElementTypePhone EMAIL FormElementTypeEmail SELECT FormElementTypeSelect DATE FormElementTypeDate SECTION FormElementTypeSection COLUMN_SET FormElementTypeColumns IMAGE FormElementTypeImage DESCRIPTION FormElementTypeDescription | [optional] |
| Config | [map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | Config object. | [optional] |
| Key | String | Technical key. | [optional] |
| Validations | []FormElementValidationsSet | [optional] |
Examples
- Prepare the resource
$FormElement = Initialize-BetaFormElement -Id 00000000-0000-0000-0000-000000000000 `
-ElementType TEXT `
-Config {label=Department} `
-Key department `
-Validations null
- Convert the resource to JSON
$FormElement | ConvertTo-JSON