Skip to main content

Simintegrationdetails

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional] [readonly]
NameStringName of the Object[required]
CreatedSystem.DateTimeCreation date of the Object[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the Object[optional] [readonly]
DescriptionStringThe description of the integration[optional]
TypeStringThe integration type[optional]
Attributes[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0The attributes map containing the credentials used to configure the integration.[optional]
Sources[]StringThe list of sources (managed resources)[optional]
ClusterStringThe cluster/proxy[optional]
StatusMap[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0Custom mapping between the integration result and the provisioning result[optional]
Request[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0Request data to customize desc and body of the created ticket[optional]
BeforeProvisioningRuleSimintegrationdetailsAllOfBeforeProvisioningRule[optional]

Examples

  • Prepare the resource
$Simintegrationdetails = Initialize-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 `
-StatusMap {"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"} `
-BeforeProvisioningRule null
  • Convert the resource to JSON
$Simintegrationdetails | ConvertTo-JSON

[Back to top]