Skip to main content

MultiHostIntegrationsCreate

Properties

NameTypeDescriptionNotes
namestrMulti-Host Integration's human-readable name.[required]
descriptionstrMulti-Host Integration's human-readable description.[required]
ownerSourceOwner[required]
clusterSourceCluster[optional]
connectorstrConnector script name.[required]
connector_attributesmap[string]objectMulti-Host Integration specific configuration. User can add any number of additional attributes. e.g. maxSourcesPerAggGroup, maxAllowedSources etc.[optional]
management_workgroupSourceManagementWorkgroup[optional]
createddatetimeDate-time when the source was created[optional]
modifieddatetimeDate-time when the source was last modified.[optional]
}

Example

from sailpoint.v2024.models.multi_host_integrations_create import MultiHostIntegrationsCreate

multi_host_integrations_create = MultiHostIntegrationsCreate(
name='My Multi-Host Integration',
description='This is the Multi-Host Integration.',
owner=sailpoint.v2024.models.source_owner.Source_owner(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'MyName', ),
cluster=sailpoint.v2024.models.source_cluster.Source_cluster(
type = 'CLUSTER',
id = '2c9180866166b5b0016167c32ef31a66',
name = 'Corporate Cluster', ),
connector='multihost-microsoft-sql-server',
connector_attributes={maxSourcesPerAggGroup=10, maxAllowedSources=300},
management_workgroup=sailpoint.v2024.models.source_management_workgroup.Source_managementWorkgroup(
type = 'GOVERNANCE_GROUP',
id = '2c91808568c529c60168cca6f90c2222',
name = 'My Management Workgroup', ),
created='2022-02-08T14:50:03.827Z',
modified='2024-01-23T18:08:50.897Z'
)

[Back to top]