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