Skip to main content

Simintegrationdetails

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the Object[optional] [readonly]
namestrName of the Object[required]
createddatetimeCreation date of the Object[optional] [readonly]
modifieddatetimeLast modification date of the Object[optional] [readonly]
descriptionstrThe description of the integration[optional]
typestrThe integration type[optional]
attributesobjectThe attributes map containing the credentials used to configure the integration.[optional]
sources[]strThe list of sources (managed resources)[optional]
clusterstrThe cluster/proxy[optional]
status_mapobjectCustom mapping between the integration result and the provisioning result[optional]
requestobjectRequest data to customize desc and body of the created ticket[optional]
before_provisioning_ruleSimintegrationdetailsAllOfBeforeProvisioningRule[optional]
}

Example

from sailpoint.sim_integrations.models.simintegrationdetails import Simintegrationdetails

simintegrationdetails = Simintegrationdetails(
id='id12345',
name='aName',
created='2015-05-28T14:07:17Z',
modified='2015-05-28T14:07:17Z',
description='Integration description',
type='ServiceNow Service Desk',
attributes={"uid":"Walter White","firstname":"walter","cloudStatus":"UNREGISTERED","displayName":"Walter White","identificationNumber":"942","lastSyncDate":1470348809380,"email":"walter@gmail.com","lastname":"white"},
sources=["2c9180835d191a86015d28455b4a2329","2c5680835d191a85765d28455b4a9823"],
cluster='xyzzy999',
status_map={"closed_cancelled":"Failed","closed_complete":"Committed","closed_incomplete":"Failed","closed_rejected":"Failed","in_process":"Queued","requested":"Queued"},
request={"description":"SailPoint Access Request,","req_description":"The Service Request created by SailPoint ServiceNow Service Integration Module (SIM).,","req_short_description":"SailPoint New Access Request Created from IdentityNow,","short_description":"SailPoint Access Request $!plan.arguments.identityRequestId"},
before_provisioning_rule=sailpoint.sim_integrations.models.simintegrationdetails_all_of_before_provisioning_rule.simintegrationdetails_allOf_beforeProvisioningRule(
type = 'IDENTITY',
id = '2c918085708c274401708c2a8a760001',
name = 'Example Rule', )
)

[Back to top]