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,37 @@
---
id: v2024-sed-assignee
title: SedAssignee
pagination_label: SedAssignee
sidebar_label: SedAssignee
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SedAssignee', 'V2024SedAssignee']
slug: /tools/sdk/powershell/v2024/models/sed-assignee
tags: ['SDK', 'Software Development Kit', 'SedAssignee', 'V2024SedAssignee']
---
# SedAssignee
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "IDENTITY", "GROUP", "SOURCE_OWNER", "ENTITLEMENT_OWNER" ] | Type of assignment When value is PERSONA, the value MUST be SOURCE_OWNER or ENTITLEMENT_OWNER IDENTITY SED_ASSIGNEE_IDENTITY_TYPE GROUP SED_ASSIGNEE_GROUP_TYPE SOURCE_OWNER SED_ASSIGNEE_SOURCE_OWNER_TYPE ENTITLEMENT_OWNER SED_ASSIGNEE_ENTITLEMENT_OWNER_TYPE | [required]
**Value** | Pointer to **String** | Identity or Group identifier Empty when using source/entitlement owner personas | [optional]
## Examples
- Prepare the resource
```powershell
$SedAssignee = Initialize-PSSailpoint.V2024SedAssignee -Type SOURCE_OWNER `
-Value 016629d1-1d25-463f-97f3-c6686846650
```
- Convert the resource to JSON
```powershell
$SedAssignee | ConvertTo-JSON
```
[[Back to top]](#)