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,61 @@
---
id: beta-sed
title: Sed
pagination_label: Sed
sidebar_label: Sed
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Sed', 'BetaSed']
slug: /tools/sdk/powershell/beta/models/sed
tags: ['SDK', 'Software Development Kit', 'Sed', 'BetaSed']
---
# Sed
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **String** | name of the entitlement | [optional]
**ApprovedBy** | Pointer to **String** | entitlement approved by | [optional]
**ApprovedType** | Pointer to **String** | entitlement approved type | [optional]
**ApprovedWhen** | Pointer to **System.DateTime** | entitlement approved then | [optional]
**Attribute** | Pointer to **String** | entitlement attribute | [optional]
**Description** | Pointer to **String** | description of entitlement | [optional]
**DisplayName** | Pointer to **String** | entitlement display name | [optional]
**Id** | Pointer to **String** | sed id | [optional]
**SourceId** | Pointer to **String** | entitlement source id | [optional]
**SourceName** | Pointer to **String** | entitlement source name | [optional]
**Status** | Pointer to **String** | entitlement status | [optional]
**SuggestedDescription** | Pointer to **String** | llm suggested entitlement description | [optional]
**Type** | Pointer to **String** | entitlement type | [optional]
**Value** | Pointer to **String** | entitlement value | [optional]
## Examples
- Prepare the resource
```powershell
$Sed = Initialize-PSSailpoint.BetaSed -Name BatchInvoiceProcessing `
-ApprovedBy 2c918086-76de-afbf-0176-f6d28f65565a `
-ApprovedType admin `
-ApprovedWhen null `
-Attribute Role `
-Description This entitlement allows automated processing of invoices in batches on a scheduled basis to streamline accounts payable procedures. `
-DisplayName AWS-Cloud-Billing `
-Id ead281ee-12a9-40ac-9534-36b5d7d65d53 `
-SourceId 103f567b93ee49b991c40f9412f87643 `
-SourceName IDN Salesforce `
-Status suggested `
-SuggestedDescription This entitlement allows automated processing of invoices in batches on a scheduled basis to streamline accounts payable `
-Type group `
-Value group
```
- Convert the resource to JSON
```powershell
$Sed | ConvertTo-JSON
```
[[Back to top]](#)