Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/SourceClusterDto.md
2025-01-28 13:29:29 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
source-cluster-dto SourceClusterDto SourceClusterDto SourceClusterDto powershellsdk
powershell
PowerShell
sdk
SourceClusterDto
SourceClusterDto
/tools/sdk/powershell/v3/models/source-cluster-dto
SDK
Software Development Kit
SourceClusterDto
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
$SourceClusterDto = Initialize-PSSailpoint.V3SourceClusterDto  -Type CLUSTER `
 -Id 2c9180847a7fccdd017aa5896f9f4f6f `
 -Name Training VA
  • Convert the resource to JSON
$SourceClusterDto | ConvertTo-JSON

[Back to top]