Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/FieldDetailsDto.md
2025-02-28 14:46:13 +00:00

1.8 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-dto FieldDetailsDto FieldDetailsDto FieldDetailsDto powershellsdk
powershell
PowerShell
sdk
FieldDetailsDto
BetaFieldDetailsDto
/tools/sdk/powershell/beta/models/field-details-dto
SDK
Software Development Kit
FieldDetailsDto
BetaFieldDetailsDto

FieldDetailsDto

Properties

Name Type Description Notes
Name String The name of the attribute. [optional]
Transform [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 The transform to apply to the field [optional]
Attributes [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 Attributes required for the transform [optional]
IsRequired Boolean Flag indicating whether or not the attribute is required. [optional] [readonly] [default to $false]
Type String The type of the attribute. [optional]
IsMultiValued Boolean Flag indicating whether or not the attribute is multi-valued. [optional] [default to $false]

Examples

  • Prepare the resource
$FieldDetailsDto = Initialize-PSSailpoint.BetaFieldDetailsDto  -Name userName `
 -Transform {type=rule, attributes={name=Create Unique LDAP Attribute}} `
 -Attributes {template=${firstname}.${lastname}${uniqueCounter}, cloudMaxUniqueChecks=50, cloudMaxSize=20, cloudRequired=true} `
 -IsRequired false `
 -Type string `
 -IsMultiValued false
  • Convert the resource to JSON
$FieldDetailsDto | ConvertTo-JSON

[Back to top]