mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: section-details
|
||||
title: SectionDetails
|
||||
pagination_label: SectionDetails
|
||||
sidebar_label: SectionDetails
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SectionDetails', 'SectionDetails']
|
||||
slug: /tools/sdk/powershell/v3/models/section-details
|
||||
tags: ['SDK', 'Software Development Kit', 'SectionDetails', 'SectionDetails']
|
||||
---
|
||||
|
||||
|
||||
# SectionDetails
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | Pointer to **String** | Name of the FormItem | [optional]
|
||||
**Label** | Pointer to **String** | Label of the section | [optional]
|
||||
**FormItems** | Pointer to [**[]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
|
||||
```powershell
|
||||
$SectionDetails = Initialize-PSSailpoint.V3SectionDetails -Name Field1 `
|
||||
-Label Section 1 `
|
||||
-FormItems []
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$SectionDetails | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user