mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.8 KiB
1.8 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-access-requested | AccessRequested | AccessRequested | AccessRequested | pythonsdk |
|
/tools/sdk/python/v2024/models/access-requested |
|
AccessRequested
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| event_type | str | the event type | [optional] |
| identity_id | str | the identity id | [optional] |
| date_time | str | the date of event | [optional] |
| account | AccessRequestedAccount | [required] | |
| status_change | AccessRequestedStatusChange | [required] | |
| } |
Example
from sailpoint.v2024.models.access_requested import AccessRequested
access_requested = AccessRequested(
event_type='AccountStatusChanged',
identity_id='8a80828f643d484f01643e14202e206f',
date_time='2019-03-08T22:37:33.901Z',
account=sailpoint.v2024.models.access_requested_account.AccessRequested_account(
id = '2c91808a77ff216301782327a50f09bf',
native_identity = 'dr.arden.ogahn.d',
display_name = 'Adam Archer',
source_id = '8a80828f643d484f01643e14202e206f',
source_name = 'JDBC Entitlements Source',
entitlement_count = 2,
access_type = 'account', ),
status_change=sailpoint.v2024.models.access_requested_status_change.AccessRequested_statusChange(
previous_status = 'enabled',
new_status = 'disabled', )
)