mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
Update python SDK docs: 16525292132
This commit is contained in:
@@ -16,21 +16,21 @@ tags: ['SDK', 'Software Development Kit', 'GetHistoricalIdentityEvents200Respons
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**access_item** | [**AccessItemAssociatedAccessItem**](access-item-associated-access-item) | | [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**](correlated-governance-event) | | [optional]
|
||||
**changes** | [**[]AttributeChange**](attribute-change) | | [optional]
|
||||
**access_request** | [**AccessRequestResponse1**](access-request-response1) | | [optional]
|
||||
**certification_id** | **str** | the id of the certification item | [optional]
|
||||
**certification_name** | **str** | the certification item name | [optional]
|
||||
**certification_id** | **str** | the id of the certification item | [required]
|
||||
**certification_name** | **str** | the certification item name | [required]
|
||||
**signed_date** | **str** | the date ceritification was signed | [optional]
|
||||
**certifiers** | [**[]CertifierResponse**](certifier-response) | this field is deprecated and may go away | [optional]
|
||||
**reviewers** | [**[]CertifierResponse**](certifier-response) | The list of identities who review this certification | [optional]
|
||||
**signer** | [**CertifierResponse**](certifier-response) | | [optional]
|
||||
**account** | [**AccountStatusChangedAccount**](account-status-changed-account) | | [optional]
|
||||
**status_change** | [**AccountStatusChangedStatusChange**](account-status-changed-status-change) | | [optional]
|
||||
**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**](access-item-associated-access-item) | | [required]
|
||||
**governance_event** | [**CorrelatedGovernanceEvent**](correlated-governance-event) | | [required]
|
||||
**access_item_type** | **Enum** [ 'account', 'app', 'entitlement', 'role', 'accessProfile' ] | the access item type | [optional]
|
||||
**attribute_changes** | [**[]AttributeChange**](attribute-change) | | [required]
|
||||
**account** | [**AccessRequestedAccount**](access-requested-account) | | [required]
|
||||
**status_change** | [**AccessRequestedStatusChange**](access-requested-status-change) | | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -39,27 +39,6 @@ Name | Type | Description | Notes
|
||||
from sailpoint.v2024.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.v2024.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.v2024.models.certifier_response.CertifierResponse(
|
||||
id = '8a80828f643d484f01643e14202e206f',
|
||||
display_name = 'John Snow', ), ),
|
||||
changes=[
|
||||
{name=firstname, previousValue=adam, newValue=zampa}
|
||||
],
|
||||
access_request=sailpoint.v2024.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',
|
||||
@@ -68,17 +47,38 @@ reviewers=[{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
|
||||
signer=sailpoint.v2024.models.certifier_response.CertifierResponse(
|
||||
id = '8a80828f643d484f01643e14202e206f',
|
||||
display_name = 'John Snow', ),
|
||||
account=sailpoint.v2024.models.account_status_changed_account.AccountStatusChanged_account(
|
||||
id = '',
|
||||
native_identity = '',
|
||||
display_name = '',
|
||||
source_id = '',
|
||||
source_name = '',
|
||||
entitlement_count = 56,
|
||||
access_type = '', ),
|
||||
status_change=sailpoint.v2024.models.account_status_changed_status_change.AccountStatusChanged_statusChange(
|
||||
event_type='AccountStatusChanged',
|
||||
date_time='2019-03-08T22:37:33.901Z',
|
||||
identity_id='8a80828f643d484f01643e14202e206f',
|
||||
access_item={id=8c190e6787aa4ed9a90bd9d5344523fb, accessType=account, nativeIdentity=127999, sourceName=JDBC Entitlements Source, entitlementCount=0, displayName=Sample Name},
|
||||
governance_event=sailpoint.v2024.models.correlated_governance_event.CorrelatedGovernanceEvent(
|
||||
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.v2024.models.certifier_response.CertifierResponse(
|
||||
id = '8a80828f643d484f01643e14202e206f',
|
||||
display_name = 'John Snow', ), ),
|
||||
access_item_type='account',
|
||||
attribute_changes=[
|
||||
sailpoint.v2024.models.attribute_change.AttributeChange(
|
||||
name = 'firstname',
|
||||
previous_value = 'adam',
|
||||
new_value = 'zampa', )
|
||||
],
|
||||
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 = 'enabled', )
|
||||
new_status = 'disabled', )
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user