Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/GetHistoricalIdentityEvents200ResponseInner.md
2025-04-01 09:23:12 -04:00

4.9 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-get-historical-identity-events200-response-inner GetHistoricalIdentityEvents200ResponseInner GetHistoricalIdentityEvents200ResponseInner GetHistoricalIdentityEvents200ResponseInner pythonsdk
python
Python
sdk
GetHistoricalIdentityEvents200ResponseInner
V2025GetHistoricalIdentityEvents200ResponseInner
/tools/sdk/python/v2025/models/get-historical-identity-events200-response-inner
SDK
Software Development Kit
GetHistoricalIdentityEvents200ResponseInner
V2025GetHistoricalIdentityEvents200ResponseInner

GetHistoricalIdentityEvents200ResponseInner

Properties

Name Type Description Notes
access_item AccessItemAssociatedAccessItem [optional]
identity_id str the identity id [optional]
event_type str the event type [optional]
dt str the date of event [optional]
governance_event CorrelatedGovernanceEvent [optional]
changes []AttributeChange [optional]
access_request AccessRequestResponse1 [optional]
certification_id str the id of the certification item [optional]
certification_name str the certification item name [optional]
signed_date str the date ceritification was signed [optional]
certifiers []CertifierResponse this field is deprecated and may go away [optional]
reviewers []CertifierResponse The list of identities who review this certification [optional]
signer CertifierResponse [optional]
account AccountStatusChangedAccount [optional]
status_change AccountStatusChangedStatusChange [optional]
}

Example

from sailpoint.v2025.models.get_historical_identity_events200_response_inner import GetHistoricalIdentityEvents200ResponseInner

get_historical_identity_events200_response_inner = GetHistoricalIdentityEvents200ResponseInner(
access_item={id=8c190e6787aa4ed9a90bd9d5344523fb, accessType=account, nativeIdentity=127999, sourceName=JDBC Entitlements Source, entitlementCount=0, displayName=Sample Name},
identity_id='',
event_type='',
dt='',
governance_event=sailpoint.v2025.models.correlated_governance_event.CorrelatedGovernanceEvent(
                    name = 'Manager Certification for Jon Snow', 
                    dt = '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.CertifierResponse(
                        id = '8a80828f643d484f01643e14202e206f', 
                        display_name = 'John Snow', ), ),
changes=[
                    {name=firstname, previousValue=adam, newValue=zampa}
                    ],
access_request=sailpoint.v2025.models.access_request_response_1.AccessRequestResponse_1(
                    requester_id = '2c91808a77ff216301782327a50f09bf', 
                    requester_name = 'Bing C', 
                    items = [{operation=Add, accessItemType=role, name=Role-1, decision=APPROVED, description=The role descrition, sourceId=8a80828f643d484f01643e14202e206f, sourceName=Source1, approvalInfos=[{name=John Snow, id=8a80828f643d484f01643e14202e2000, status=Approved}]}], ),
certification_id='2c91808a77ff216301782327a50f09bf',
certification_name='Cert name',
signed_date='2019-03-08T22:37:33.901Z',
certifiers=[{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
reviewers=[{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
signer=sailpoint.v2025.models.certifier_response.CertifierResponse(
                    id = '8a80828f643d484f01643e14202e206f', 
                    display_name = 'John Snow', ),
account=sailpoint.v2025.models.account_status_changed_account.AccountStatusChanged_account(
                    id = '', 
                    native_identity = '', 
                    display_name = '', 
                    source_id = '', 
                    source_name = '', 
                    entitlement_count = 56, 
                    access_type = '', ),
status_change=sailpoint.v2025.models.account_status_changed_status_change.AccountStatusChanged_statusChange(
                    previous_status = 'enabled', 
                    new_status = 'enabled', )
)

[Back to top]