starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,60 @@
---
id: beta-sed
title: Sed
pagination_label: Sed
sidebar_label: Sed
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Sed', 'BetaSed']
slug: /tools/sdk/python/beta/models/sed
tags: ['SDK', 'Software Development Kit', 'Sed', 'BetaSed']
---
# Sed
Suggested Entitlement Description
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | name of the entitlement | [optional]
**approved_by** | **str** | entitlement approved by | [optional]
**approved_type** | **str** | entitlement approved type | [optional]
**approved_when** | **datetime** | entitlement approved then | [optional]
**attribute** | **str** | entitlement attribute | [optional]
**description** | **str** | description of entitlement | [optional]
**display_name** | **str** | entitlement display name | [optional]
**id** | **str** | sed id | [optional]
**source_id** | **str** | entitlement source id | [optional]
**source_name** | **str** | entitlement source name | [optional]
**status** | **str** | entitlement status | [optional]
**suggested_description** | **str** | llm suggested entitlement description | [optional]
**type** | **str** | entitlement type | [optional]
**value** | **str** | entitlement value | [optional]
}
## Example
```python
from sailpoint.beta.models.sed import Sed
sed = Sed(
name='BatchInvoiceProcessing',
approved_by='2c918086-76de-afbf-0176-f6d28f65565a',
approved_type='admin',
approved_when=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
attribute='Role',
description='This entitlement allows automated processing of invoices in batches on a scheduled basis to streamline accounts payable procedures.',
display_name='AWS-Cloud-Billing',
id='ead281ee-12a9-40ac-9534-36b5d7d65d53',
source_id='103f567b93ee49b991c40f9412f87643',
source_name='IDN Salesforce',
status='suggested',
suggested_description='This entitlement allows automated processing of invoices in batches on a scheduled basis to streamline accounts payable',
type='group',
value='group'
)
```
[[Back to top]](#)