mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.9 KiB
1.9 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-create-form-definition-request | CreateFormDefinitionRequest | CreateFormDefinitionRequest | CreateFormDefinitionRequest | powershellsdk |
|
/tools/sdk/powershell/beta/models/create-form-definition-request |
|
CreateFormDefinitionRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Description | String | Description is the form definition description | [optional] |
| FormConditions | []FormCondition | FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form | [optional] |
| FormElements | []FormElement | FormElements is a list of nested form elements | [optional] |
| FormInput | []FormDefinitionInput | FormInput is a list of form inputs that are required when creating a form-instance object | [optional] |
| Name | String | Name is the form definition name | [required] |
| Owner | FormOwner | [required] | |
| UsedBy | []FormUsedBy | UsedBy is a list of objects where when any system uses a particular form it reaches out to the form service to record it is currently being used | [optional] |
Examples
- Prepare the resource
$CreateFormDefinitionRequest = Initialize-BetaCreateFormDefinitionRequest -Description My form description `
-FormConditions null `
-FormElements null `
-FormInput null `
-Name My form `
-Owner null `
-UsedBy null
- Convert the resource to JSON
$CreateFormDefinitionRequest | ConvertTo-JSON