mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
3.0 KiB
3.0 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-sim-integration-details | SimIntegrationDetails | SimIntegrationDetails | SimIntegrationDetails | pythonsdk |
|
/tools/sdk/python/v2024/models/sim-integration-details |
|
SimIntegrationDetails
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | System-generated unique ID of the Object | [optional] [readonly] |
| name | str | Name of the Object | [required] |
| created | datetime | Creation date of the Object | [optional] [readonly] |
| modified | datetime | Last modification date of the Object | [optional] [readonly] |
| description | str | The description of the integration | [optional] |
| type | str | The integration type | [optional] |
| attributes | object | The attributes map containing the credentials used to configure the integration. | [optional] |
| sources | []str | The list of sources (managed resources) | [optional] |
| cluster | str | The cluster/proxy | [optional] |
| status_map | object | Custom mapping between the integration result and the provisioning result | [optional] |
| request | object | Request data to customize desc and body of the created ticket | [optional] |
| before_provisioning_rule | SimIntegrationDetailsAllOfBeforeProvisioningRule | [optional] | |
| } |
Example
from sailpoint.v2024.models.sim_integration_details import SimIntegrationDetails
sim_integration_details = SimIntegrationDetails(
id='id12345',
name='aName',
created='2023-01-03T21:16:22.432Z',
modified='2023-01-03T21:16:22.432Z',
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.v2024.models.sim_integration_details_all_of_before_provisioning_rule.SimIntegrationDetails_allOf_beforeProvisioningRule(
type = 'IDENTITY',
id = '2c918085708c274401708c2a8a760001',
name = 'Example Rule', )
)