mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
2.3 KiB
2.3 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-access-item-associated | AccessItemAssociated | AccessItemAssociated | AccessItemAssociated | pythonsdk |
|
/tools/sdk/python/v2025/models/access-item-associated |
|
AccessItemAssociated
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| event_type | str | the event type | [optional] |
| date_time | str | the date of event | [optional] |
| identity_id | str | the identity id | [optional] |
| access_item | AccessItemAssociatedAccessItem | [required] | |
| governance_event | CorrelatedGovernanceEvent | [required] | |
| access_item_type | Enum [ 'account', 'app', 'entitlement', 'role', 'accessProfile' ] | the access item type | [optional] |
| } |
Example
from sailpoint.v2025.models.access_item_associated import AccessItemAssociated
access_item_associated = AccessItemAssociated(
event_type='AccessItemAssociated',
date_time='2019-03-08T22:37:33.901Z',
identity_id='8c190e6787aa4ed9a90bd9d5344523fb',
access_item={id=8c190e6787aa4ed9a90bd9d5344523fb, accessType=account, nativeIdentity=127999, sourceName=JDBC Entitlements Source, entitlementCount=0, displayName=Sample Name},
governance_event=sailpoint.v2025.models.correlated_governance_event.Correlated Governance Event(
name = 'Manager Certification for Jon Snow',
date_time = '2019-03-08T22:37:33.901Z',
type = 'certification',
governance_id = '2c91808a77ff216301782327a50f09bf',
owners = [{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
reviewers = [{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
decision_maker = sailpoint.v2025.models.certifier_response.Certifier Response(
id = '8a80828f643d484f01643e14202e206f',
display_name = 'John Snow', ), ),
access_item_type='account'
)