only beta

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:57:33 -05:00
parent fb685431b3
commit ca4e98517f
444 changed files with 0 additions and 18963 deletions

View File

@@ -1,39 +0,0 @@
---
id: v2024-source-cluster-dto
title: SourceClusterDto
pagination_label: SourceClusterDto
sidebar_label: SourceClusterDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceClusterDto']
slug: /tools/sdk/powershell/v2024/models/source-cluster-dto
tags: ['SDK', 'Software Development Kit', 'SourceClusterDto']
---
# SourceClusterDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "CLUSTER" ] | Source cluster DTO type. | [optional]
**Id** | Pointer to **String** | Source cluster ID. | [optional]
**Name** | Pointer to **String** | Source cluster display name. | [optional]
## Examples
- Prepare the resource
```powershell
$SourceClusterDto = Initialize-PSSailpoint.V2024SourceClusterDto -Type CLUSTER `
-Id 2c9180847a7fccdd017aa5896f9f4f6f `
-Name Training VA
```
- Convert the resource to JSON
```powershell
$SourceClusterDto | ConvertTo-JSON
```
[[Back to top]](#)