Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/MultiHostIntegrationsCreateSources.md
2025-03-28 15:47:40 +00:00

1.5 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-multi-host-integrations-create-sources MultiHostIntegrationsCreateSources MultiHostIntegrationsCreateSources MultiHostIntegrationsCreateSources pythonsdk
python
Python
sdk
MultiHostIntegrationsCreateSources
V2024MultiHostIntegrationsCreateSources
/tools/sdk/python/v2024/models/multi-host-integrations-create-sources
SDK
Software Development Kit
MultiHostIntegrationsCreateSources
V2024MultiHostIntegrationsCreateSources

MultiHostIntegrationsCreateSources

This represents sources to be created of same type.

Properties

Name Type Description Notes
name str Source's human-readable name. [required]
description str Source's human-readable description. [optional]
connector_attributes map[string]object Connector specific configuration. This configuration will differ from type to type. [optional]
}

Example

from sailpoint.v2024.models.multi_host_integrations_create_sources import MultiHostIntegrationsCreateSources

multi_host_integrations_create_sources = 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]