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,42 @@
---
id: beta-account-attributes-changed-account
title: AccountAttributesChangedAccount
pagination_label: AccountAttributesChangedAccount
sidebar_label: AccountAttributesChangedAccount
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccountAttributesChangedAccount', 'BetaAccountAttributesChangedAccount']
slug: /tools/sdk/python/beta/models/account-attributes-changed-account
tags: ['SDK', 'Software Development Kit', 'AccountAttributesChangedAccount', 'BetaAccountAttributesChangedAccount']
---
# AccountAttributesChangedAccount
Details of the account where the attributes changed.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | SailPoint generated unique identifier. | [required]
**uuid** | **str** | The source's unique identifier for the account. UUID is generated by the source system. | [required]
**name** | **str** | Name of the account. | [required]
**native_identity** | **str** | Unique ID of the account on the source. | [required]
**type** | **Enum** [ 'ACCOUNT' ] | The type of the account | [required]
}
## Example
```python
from sailpoint.beta.models.account_attributes_changed_account import AccountAttributesChangedAccount
account_attributes_changed_account = AccountAttributesChangedAccount(
id='52170a74-ca89-11ea-87d0-0242ac130003',
uuid='1cb1f07d-3e5a-4431-becd-234fa4306108',
name='john.doe',
native_identity='cn=john.doe,ou=users,dc=acme,dc=com',
type=ACCOUNT
)
```
[[Back to top]](#)