mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
1.5 KiB
1.5 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-field-details | FieldDetails | FieldDetails | FieldDetails | powershellsdk |
|
/tools/sdk/powershell/beta/models/field-details |
|
FieldDetails
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Name | String | Name of the FormItem | [optional] |
| DisplayName | String | Display name of the field | [optional] |
| DisplayType | String | Type of the field to display | [optional] |
| Required | Boolean | True if the field is required | [optional] |
| AllowedValuesList | [[]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | List of allowed values for the field | [optional] |
| Value | [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Value of the field | [optional] |
Examples
- Prepare the resource
$FieldDetails = Initialize-BetaFieldDetails -Name Field1 `
-DisplayName Field 1 `
-DisplayType checkbox `
-Required null `
-AllowedValuesList [{Val1Display=null, Val1Value=null}, {Val2Display=null, Val2Value=null}] `
-Value null
- Convert the resource to JSON
$FieldDetails | ConvertTo-JSON