Accountv2
Details about the account.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The unique identifier of the account. | [required] |
| name | str | The name of the account. | [required] |
| native_identity | str | The unique ID of the account generated by the source system. | [required] |
| uuid | str | The unique ID associated with this account. | [required] |
| correlated | bool | Indicates if the account is correlated to an identity. | [required] |
| is_machine | bool | Indicates if the account is a machine account. | [required] |
| origin | str | The origin of the 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
from sailpoint.triggers.models.accountv2 import Accountv2
accountv2 = Accountv2(
id='2c9180835d2e5168015d32f890ca1581',
name='john.doe',
native_identity='CN=John Doe,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
uuid='b7264868-7201-415f-9118-b581d431c688',
correlated=True,
is_machine=False,
origin='Active Directory',
attributes={"firstname":"John","lastname":"Doe"}
)