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,49 @@
---
id: beta-remediation-item-details
title: RemediationItemDetails
pagination_label: RemediationItemDetails
sidebar_label: RemediationItemDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RemediationItemDetails', 'BetaRemediationItemDetails']
slug: /tools/sdk/python/beta/models/remediation-item-details
tags: ['SDK', 'Software Development Kit', 'RemediationItemDetails', 'BetaRemediationItemDetails']
---
# RemediationItemDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The ID of the certification | [optional]
**target_id** | **str** | The ID of the certification target | [optional]
**target_name** | **str** | The name of the certification target | [optional]
**target_display_name** | **str** | The display name of the certification target | [optional]
**application_name** | **str** | The name of the application/source | [optional]
**attribute_name** | **str** | The name of the attribute being certified | [optional]
**attribute_operation** | **str** | The operation of the certification on the attribute | [optional]
**attribute_value** | **str** | The value of the attribute being certified | [optional]
**native_identity** | **str** | The native identity of the target | [optional]
}
## Example
```python
from sailpoint.beta.models.remediation_item_details import RemediationItemDetails
remediation_item_details = RemediationItemDetails(
id='2c9180835d2e5168015d32f890ca1581',
target_id='2c9180835d2e5168015d32f890ca1581',
target_name='john.smith',
target_display_name='emailAddress',
application_name='Active Directory',
attribute_name='phoneNumber',
attribute_operation='update',
attribute_value='512-555-1212',
native_identity='jason.smith2'
)
```
[[Back to top]](#)