add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
---
id: v2025-non-employee-source-request-body
title: NonEmployeeSourceRequestBody
pagination_label: NonEmployeeSourceRequestBody
sidebar_label: NonEmployeeSourceRequestBody
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'NonEmployeeSourceRequestBody', 'V2025NonEmployeeSourceRequestBody']
slug: /tools/sdk/powershell/v2025/models/non-employee-source-request-body
tags: ['SDK', 'Software Development Kit', 'NonEmployeeSourceRequestBody', 'V2025NonEmployeeSourceRequestBody']
---
# NonEmployeeSourceRequestBody
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | Name of non-employee source. | [required]
**Description** | **String** | Description of non-employee source. | [required]
**Owner** | [**NonEmployeeIdnUserRequest**](non-employee-idn-user-request) | | [required]
**ManagementWorkgroup** | **String** | The ID for the management workgroup that contains source sub-admins | [optional]
**Approvers** | [**[]NonEmployeeIdnUserRequest**](non-employee-idn-user-request) | List of approvers. | [optional]
**AccountManagers** | [**[]NonEmployeeIdnUserRequest**](non-employee-idn-user-request) | List of account managers. | [optional]
## Examples
- Prepare the resource
```powershell
$NonEmployeeSourceRequestBody = Initialize-PSSailpoint.V2025NonEmployeeSourceRequestBody -Name Retail `
-Description Source description `
-Owner null `
-ManagementWorkgroup 123299 `
-Approvers null `
-AccountManagers null
```
- Convert the resource to JSON
```powershell
$NonEmployeeSourceRequestBody | ConvertTo-JSON
```
[[Back to top]](#)