adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: beta-multi-host-integrations-cluster
title: MultiHostIntegrationsCluster
pagination_label: MultiHostIntegrationsCluster
sidebar_label: MultiHostIntegrationsCluster
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MultiHostIntegrationsCluster', 'BetaMultiHostIntegrationsCluster']
slug: /tools/sdk/powershell/beta/models/multi-host-integrations-cluster
tags: ['SDK', 'Software Development Kit', 'MultiHostIntegrationsCluster', 'BetaMultiHostIntegrationsCluster']
---
# MultiHostIntegrationsCluster
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "CLUSTER" ] | Type of object being referenced. | [required]
**Id** | **String** | Cluster ID. | [required]
**Name** | **String** | Cluster's human-readable display name. | [required]
## Examples
- Prepare the resource
```powershell
$MultiHostIntegrationsCluster = Initialize-PSSailpoint.BetaMultiHostIntegrationsCluster -Type CLUSTER `
-Id 2c9180866166b5b0016167c32ef31a66 `
-Name Corporate Cluster
```
- Convert the resource to JSON
```powershell
$MultiHostIntegrationsCluster | ConvertTo-JSON
```
[[Back to top]](#)