Skip to main content

Multihostintegrationscreatesources

This represents sources to be created of same type.

Properties

NameTypeDescriptionNotes
namestrSource's human-readable name.[required]
descriptionstrSource's human-readable description.[optional]
connector_attributesmap[string]objectConnector specific configuration. This configuration will differ from type to type.[optional]
}

Example

from sailpoint.multi_host_integration.models.multihostintegrationscreatesources import Multihostintegrationscreatesources

multihostintegrationscreatesources = Multihostintegrationscreatesources(
name='My Source',
description='This is the corporate directory.',
connector_attributes={"authType":"SQLAuthentication","url":"jdbc:sqlserver://178.18.41.118:1433","user":"username","driverClass":"com.microsoft.sqlserver.jdbc.SQLServerDriver","maxSourcesPerAggGroup":10,"maxAllowedSources":300}
)

[Back to top]