adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -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]](#)