add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
---
id: v2025-sim-integration-details
title: SimIntegrationDetails
pagination_label: SimIntegrationDetails
sidebar_label: SimIntegrationDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SimIntegrationDetails', 'V2025SimIntegrationDetails']
slug: /tools/sdk/python/v2025/models/sim-integration-details
tags: ['SDK', 'Software Development Kit', 'SimIntegrationDetails', 'V2025SimIntegrationDetails']
---
# 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**](sim-integration-details-all-of-before-provisioning-rule) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.sim_integration_details import SimIntegrationDetails
sim_integration_details = 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.v2025.models.sim_integration_details_all_of_before_provisioning_rule.SimIntegrationDetails_allOf_beforeProvisioningRule(
type = 'IDENTITY',
id = '2c918085708c274401708c2a8a760001',
name = 'Example Rule', )
)
```
[[Back to top]](#)