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,47 @@
---
id: v2024-source-account-updated
title: SourceAccountUpdated
pagination_label: SourceAccountUpdated
sidebar_label: SourceAccountUpdated
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SourceAccountUpdated', 'V2024SourceAccountUpdated']
slug: /tools/sdk/python/v2024/models/source-account-updated
tags: ['SDK', 'Software Development Kit', 'SourceAccountUpdated', 'V2024SourceAccountUpdated']
---
# SourceAccountUpdated
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**uuid** | **str** | Source unique identifier for the identity. UUID is generated by the source system. | [optional]
**id** | **str** | SailPoint generated unique identifier. | [required]
**native_identifier** | **str** | Unique ID of the account on the source. | [required]
**source_id** | **str** | The ID of the source. | [required]
**source_name** | **str** | The name of the source. | [required]
**identity_id** | **str** | The ID of the identity that is correlated with this account. | [required]
**identity_name** | **str** | The name of the identity that is correlated with this account. | [required]
**attributes** | **map[string]object** | The attributes of the account. The contents of attributes depends on the account schema for the source. | [required]
}
## Example
```python
from sailpoint.v2024.models.source_account_updated import SourceAccountUpdated
source_account_updated = SourceAccountUpdated(
uuid='b7264868-7201-415f-9118-b581d431c688',
id='ee769173319b41d19ccec35ba52f237b',
native_identifier='E009',
source_id='2c918082814e693601816e09471b29b6',
source_name='Active Directory',
identity_id='ee769173319b41d19ccec6c235423237b',
identity_name='john.doe',
attributes={firstname=John, lastname=Doe, email=john.doe@gmail.com, department=Sales, displayName=John Doe, created=2020-04-27T16:48:33.597Z, employeeNumber=E009, uid=E009, inactive=true, phone=null, identificationNumber=E009}
)
```
[[Back to top]](#)