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,47 @@
---
id: v2024-create-form-definition-request
title: CreateFormDefinitionRequest
pagination_label: CreateFormDefinitionRequest
sidebar_label: CreateFormDefinitionRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CreateFormDefinitionRequest', 'V2024CreateFormDefinitionRequest']
slug: /tools/sdk/powershell/v2024/models/create-form-definition-request
tags: ['SDK', 'Software Development Kit', 'CreateFormDefinitionRequest', 'V2024CreateFormDefinitionRequest']
---
# CreateFormDefinitionRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Description** | Pointer to **String** | Description is the form definition description | [optional]
**FormConditions** | Pointer to [**[]FormCondition**](form-condition) | FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form | [optional]
**FormElements** | Pointer to [**[]FormElement**](form-element) | FormElements is a list of nested form elements | [optional]
**FormInput** | Pointer to [**[]FormDefinitionInput**](form-definition-input) | 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**](form-owner) | | [required]
**UsedBy** | Pointer to [**[]FormUsedBy**](form-used-by) | 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
```powershell
$CreateFormDefinitionRequest = Initialize-PSSailpoint.V2024CreateFormDefinitionRequest -Description My form description `
-FormConditions null `
-FormElements null `
-FormInput null `
-Name My form `
-Owner null `
-UsedBy null
```
- Convert the resource to JSON
```powershell
$CreateFormDefinitionRequest | ConvertTo-JSON
```
[[Back to top]](#)