Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/Section.md
2025-05-07 14:37:48 +00:00

1017 B

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-section Section Section Section powershellsdk
powershell
PowerShell
sdk
Section
BetaSection
/tools/sdk/powershell/beta/models/section
SDK
Software Development Kit
Section
BetaSection

Section

Properties

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

Examples

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

[Back to top]