adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: source-cluster
title: SourceCluster
pagination_label: SourceCluster
sidebar_label: SourceCluster
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceCluster']
slug: /tools/sdk/powershell/v2024/models/source-cluster
tags: ['SDK', 'Software Development Kit', 'SourceCluster']
---
# SourceCluster
## 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
$SourceCluster = Initialize-PSSailpoint.V2024SourceCluster -Type CLUSTER `
-Id 2c9180866166b5b0016167c32ef31a66 `
-Name Corporate Cluster
```
- Convert the resource to JSON
```powershell
$SourceCluster | ConvertTo-JSON
```
[[Back to top]](#)