Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/MultiHostIntegrationsCreateSources.md
2025-05-07 14:37:48 +00:00

1.6 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
v2025-multi-host-integrations-create-sources MultiHostIntegrationsCreateSources MultiHostIntegrationsCreateSources MultiHostIntegrationsCreateSources powershellsdk
powershell
PowerShell
sdk
MultiHostIntegrationsCreateSources
V2025MultiHostIntegrationsCreateSources
/tools/sdk/powershell/v2025/models/multi-host-integrations-create-sources
SDK
Software Development Kit
MultiHostIntegrationsCreateSources
V2025MultiHostIntegrationsCreateSources

MultiHostIntegrationsCreateSources

Properties

Name Type Description Notes
Name String Source's human-readable name. [required]
Description String Source's human-readable description. [optional]
ConnectorAttributes [map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 Connector specific configuration. This configuration will differ from type to type. [optional]

Examples

  • Prepare the resource
$MultiHostIntegrationsCreateSources = Initialize-V2025MultiHostIntegrationsCreateSources  -Name My Source `
 -Description This is the corporate directory. `
 -ConnectorAttributes {authType=SQLAuthentication, url=jdbc:sqlserver://178.18.41.118:1433, user=username, driverClass=com.microsoft.sqlserver.jdbc.SQLServerDriver, maxSourcesPerAggGroup=10, maxAllowedSources=300}
  • Convert the resource to JSON
$MultiHostIntegrationsCreateSources | ConvertTo-JSON

[Back to top]