Skip to main content

SectionDetails

Properties

NameTypeDescriptionNotes
NameStringName of the FormItem[optional]
LabelStringLabel of the section[optional]
FormItems[[]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0List of FormItems. FormItems can be SectionDetails and/or FieldDetails[optional]

Examples

  • Prepare the resource
$SectionDetails = Initialize-PSSailpoint.V2024SectionDetails  -Name Field1 `
-Label Section 1 `
-FormItems []
  • Convert the resource to JSON
$SectionDetails | ConvertTo-JSON

[Back to top]