Skip to main content

FormElement

Properties

NameTypeDescriptionNotes
IdStringForm element identifier.[optional]
ElementTypeEnum [ "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.4Config object.[optional]
KeyStringTechnical key.[optional]
Validations[]FormElementValidationsSet[optional]

Examples

  • Prepare the resource
$FormElement = Initialize-PSSailpoint.BetaFormElement  -Id 00000000-0000-0000-0000-000000000000 `
-ElementType TEXT `
-Config {label=Department} `
-Key department `
-Validations null
  • Convert the resource to JSON
$FormElement | ConvertTo-JSON

[Back to top]