Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/MultiHostIntegrationsCreate.md
2025-03-28 15:47:21 +00:00

2.2 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 MultiHostIntegrationsCreate MultiHostIntegrationsCreate MultiHostIntegrationsCreate powershellsdk
powershell
PowerShell
sdk
MultiHostIntegrationsCreate
V2024MultiHostIntegrationsCreate
/tools/sdk/powershell/v2024/models/multi-host-integrations-create
SDK
Software Development Kit
MultiHostIntegrationsCreate
V2024MultiHostIntegrationsCreate

MultiHostIntegrationsCreate

Properties

Name Type Description Notes
Name String Multi-Host Integration's human-readable name. [required]
Description String Multi-Host Integration's human-readable description. [required]
Owner SourceOwner [required]
Cluster SourceCluster [optional]
Connector String Connector script name. [required]
ConnectorAttributes [map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 Multi-Host Integration specific configuration. User can add any number of additional attributes. e.g. maxSourcesPerAggGroup, maxAllowedSources etc. [optional]
ManagementWorkgroup SourceManagementWorkgroup [optional]
Created System.DateTime Date-time when the source was created [optional]
Modified System.DateTime Date-time when the source was last modified. [optional]

Examples

  • Prepare the resource
$MultiHostIntegrationsCreate = Initialize-PSSailpoint.V2024MultiHostIntegrationsCreate  -Name My Multi-Host Integration `
 -Description This is the Multi-Host Integration. `
 -Owner null `
 -Cluster null `
 -Connector multihost-microsoft-sql-server `
 -ConnectorAttributes {maxSourcesPerAggGroup=10, maxAllowedSources=300} `
 -ManagementWorkgroup null `
 -Created 2022-02-08T14:50:03.827Z `
 -Modified 2024-01-23T18:08:50.897Z
  • Convert the resource to JSON
$MultiHostIntegrationsCreate | ConvertTo-JSON

[Back to top]