update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
---
id: multi-host-integrations-create
title: MultiHostIntegrationsCreate
pagination_label: MultiHostIntegrationsCreate
sidebar_label: MultiHostIntegrationsCreate
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MultiHostIntegrationsCreate']
slug: /tools/sdk/powershell/beta/models/multi-host-integrations-create
tags: ['SDK', 'Software Development Kit', 'MultiHostIntegrationsCreate']
---
# 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** | [**MultiHostIntegrationsOwner**](multi-host-integrations-owner) | | [required]
**Cluster** | Pointer to [**MultiHostIntegrationsCluster**](multi-host-integrations-cluster) | | [optional]
**Connector** | **String** | Connector script name. | [required]
**ConnectorAttributes** | Pointer to [**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** | Pointer to [**MultiHostIntegrationsManagementWorkgroup**](multi-host-integrations-management-workgroup) | | [optional]
**Created** | Pointer to **System.DateTime** | Date-time when the source was created | [optional]
**Modified** | Pointer to **System.DateTime** | Date-time when the source was last modified. | [optional]
## Examples
- Prepare the resource
```powershell
$MultiHostIntegrationsCreate = Initialize-PSSailpoint.BetaMultiHostIntegrationsCreate -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
```powershell
$MultiHostIntegrationsCreate | ConvertTo-JSON
```
[[Back to top]](#)